1. 11 May, 2016 - 1 commit
  2. 03 May, 2016 - 5 commits
  3. 28 Apr, 2016 - 1 commit
  4. 23 Apr, 2016 - 1 commit
  5. 07 Apr, 2016 - 1 commit
  6. 06 Apr, 2016 - 2 commits
  7. 10 Mar, 2016 - 1 commit
  8. 15 Feb, 2016 - 1 commit
    • Andreas Hartmetz's avatar
      Add option to disable "session management by closing windows". · e7bf0edf
      Andreas Hartmetz authored
      That feature is a poor man's session management for applications
      that do not implement any specific session management features.
      It badly interferes with proper session management support, so
      applications must be able to disable it.
      
      This enables fixing applications with
      QGuiApplication::quitOnLastWindowClosed() true - the default -
      dying too early, before they are enumerated for the list of
      applications to restart on session restore, thus preventing them
      from being restored. See
      https://bugs.kde.org/show_bug.cgi?id=354724
      
      
      
      [ChangeLog][QtGui] Qt asking to close windows on session exit as
      a fallback session management mechanism has been made optional.
      Disabling it fixes session management for applications that
      implement full session management. See
      QGuiApplication::isFallbackSessionManagementEnabled().
      
      Task-number: QTBUG-49667
      Change-Id: Ib22e58c9c64351dea8b7e2a74db91d26dd7ab7aa
      Reviewed-by: default avatarOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
      Reviewed-by: default avatarDavid Faure <david.faure@kdab.com>
      e7bf0edf
  9. 09 Feb, 2016 - 1 commit
  10. 03 Feb, 2016 - 1 commit
  11. 28 Jan, 2016 - 1 commit
    • Shawn Rutledge's avatar
      Polish the Tablet example · e6de387e
      Shawn Rutledge authored
      
      - Introduce Qt 5 signal-slot connection syntax.
      - Merge MainWindow::createMenus()/createActions()
        into MainWindow::createMenus(), removing the need
        to store the actions as member variables.
        Use QMenu::addAction() for brevity.
      - For actions in QActionGroups, carry the Valuator enum
        in QAction::data so that the slot to handle the selection
        does not need to compare the QAction pointer itself.
      - Use a non-modal QColorDialog, so that the user
        can change colors more easily while drawing.
      - Choose saner shortcut keys: control-Q should not
        override the default usage for quitting the application,
        and using shortcuts for About dialogs is anyway dubious.
      - Improve the example documentation.
      
      Change-Id: I57aaf5f5b885c13a953482dbcc41275dd3d6bff4
      Reviewed-by: default avatarFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>
      Reviewed-by: default avatarTopi Reiniö <topi.reinio@theqtcompany.com>
      e6de387e
  12. 26 Jan, 2016 - 3 commits
  13. 11 Dec, 2015 - 1 commit
  14. 09 Dec, 2015 - 2 commits
  15. 03 Dec, 2015 - 1 commit
    • Friedemann Kleint's avatar
      Polish the fortune server/client examples. · de7d2eb2
      Friedemann Kleint authored
      
      - Remove Qt::WindowContextHelpButtonHint.
      - Make the server label interactive (enable copy).
      - Introduce new connection syntax.
      - Remove unneeded member variables.
      - Use constructor initialization where appropriate.
      - Adapt the layout to fullscreen platforms by wrapping it
        into a QGroupBox.
      
      Change-Id: I6e397ad082f22ba1e99fc5a17440b2be1f9584f6
      Reviewed-by: default avatarTopi Reiniö <topi.reinio@theqtcompany.com>
      de7d2eb2
  16. 30 Nov, 2015 - 1 commit
  17. 13 Nov, 2015 - 1 commit
  18. 05 Nov, 2015 - 1 commit
    • Friedemann Kleint's avatar
      Polish the HTTP example. · d482a928
      Friedemann Kleint authored
      
      - Remove unneeded member variables.
      - Use new connection syntax.
      - Streamline code.
      - Add a QCheckBox for launching the file after download
        and make the default file name and download directory configureable.
      - Make status messages more verbose.
      - Set Password echo mode on authentication dialog.
      - Extract the progress dialog to a separate class
        that is directly connected to the QNetworkReply, which
        is created on demand. Set set minimum  and duration on it.
        This fixes a crash that currently occurs when clicking "Abort"
        on the SSL error dialog and "Cancel" on the progress dialog that is
        then re-shown due to its internal force timer/minimum duration handling.
      - Resize according to screen size.
      
      Task-number: QTBUG-48332
      Change-Id: Ia2611e63fe96d6f49e4cdd06049a206ddb2c2864
      Reviewed-by: default avatarDavid Faure <david.faure@kdab.com>
      d482a928
  19. 03 Nov, 2015 - 1 commit
    • Alejandro Exojo's avatar
      Fix the closeEvent of the systray example on OS X · 115f3033
      Alejandro Exojo authored
      
      The implementation of the close event handler requires handling the two
      close events that are received on OS X when the user quits through the
      application menu bar or the Command+Q shortcut. The first is an
      spontaneous event, and the second a non-spontaneous one with the window
      already closed.
      
      Change-Id: I24e3d3f0de4d631bd2d5616c85ce747f085691e0
      Reviewed-by: default avatarTopi Reiniö <topi.reinio@digia.com>
      115f3033
  20. 02 Nov, 2015 - 1 commit
  21. 19 Oct, 2015 - 4 commits
  22. 13 Oct, 2015 - 1 commit
  23. 09 Oct, 2015 - 1 commit
    • Friedemann Kleint's avatar
      Polish DnD Examples. · c8cd9f1b
      Friedemann Kleint authored
      
      - Remove class DragLabel in draggabletext and add a static creation
        function instead since it only has a constructor setting some
        properties.
      - Use QRegularExpression instead of QRegExp
      - Use new connection syntax.
      - Ensure compilation with
        DEFINES += QT_NO_CAST_TO_ASCII QT_NO_CAST_FROM_ASCII
        demonstrating use of QLatin1String vs QStringLiteral.
      - Streamline code.
      
      Change-Id: I2e2ddeb40837dba379990836c77fb72ad7263e2d
      Reviewed-by: default avatarOliver Wolff <oliver.wolff@theqtcompany.com>
      c8cd9f1b
  24. 07 Oct, 2015 - 1 commit
  25. 02 Oct, 2015 - 1 commit
  26. 01 Oct, 2015 - 1 commit
  27. 24 Sep, 2015 - 1 commit
    • Laszlo Agocs's avatar
      Fix up QOpenGLWidget transparency support · b46ffbca
      Laszlo Agocs authored
      
      The glColorMask call was troublesome. In addition, the Qt::WA_TranslucentBackground
      was misinterpreted and recommended misleadingly in the documentation. The hellogl2
      example's --transparent argument was disfunctional in practice.
      
      Replace glColorMask with glBlendFuncSeparate. The hellogl2 example and the docs are
      now corrected wrt enabling semi-transparency in a QOpenGLWidget that is not a top-level
      (which is the most common case).
      
      Task-number: QTBUG-47276
      Change-Id: I6f40e732d455f5efcf158649ac9a52ff9f240e85
      Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>
      Reviewed-by: default avatarGunnar Sletta <gunnar@sletta.org>
      b46ffbca
  28. 23 Sep, 2015 - 1 commit
  29. 21 Sep, 2015 - 1 commit