Skip to content
Snippets Groups Projects
  1. Sep 01, 2011
  2. Aug 25, 2011
  3. Jul 12, 2011
  4. Jun 24, 2011
  5. May 12, 2011
    • Thorbjørn Lindeijer's avatar
      Disable observer and jsdebugger services when they're already part of Qt · 2b0266d0
      Thorbjørn Lindeijer authored
      As of Qt 4.8 the observer and jsdebugger services are part of Qt. This
      means the following changes are necessary in Qt Creator:
      
      * Do not link to the QmlJSDebugger library.
      * Do not create JSDebuggerAgent and QDeclarativeViewObserver instances
        in the QmlApplicationViewer and use the new declarative_debug CONFIG
        option to enable those services in Qt. This is done automatically
        for debug builds.
      * Point out the QML Debugging Library and the QML Observer are "Not
        needed" in the Qt options page.
      * Change the label in qmake options from "Link QML debugging library" to
        "Enable QML debugging". It still remains as a way to enable this
        functionality in release builds or for QtQuick applications not based
        on Qt Creator's template.
      * Rely on qmlviewer for debugging QML UI projects rather than the
        observer, which is no longer necessary.
      
      Reviewed-by: Kai Koehne
      2b0266d0
  6. Feb 22, 2011
  7. Feb 08, 2011
  8. Feb 07, 2011
  9. Feb 03, 2011
    • Alessandro Portale's avatar
      Removing the usage of Avkon to lock the screen orientation · d4e58902
      Alessandro Portale authored
      Locking the screen orientation was not a Qt feature of the Symbian
      port till Qt 4.7.2. Therefore, client applications had to do the
      locking themselves. That locking is right now only achievable by
      using Avkon Api. The template code of the Qt Quick App wizard did
      exactly that.
      Now, Qt 4.7.2 has the screen orientation lock built in. That
      implementation was done for QTBUG-11785. No need to do that in the
      application code, anymore.
      
      This patch removes Avkon usage from the templates, using new enum keys
      and setting QWidget flags, just like Maemo5 does.
      
      Two Qt version checks/fixes:
      1) If the application tries to lock the orientation on Qt < 4.7.2,
         a warning is given that this won't work
      2) If Qt < 4.7.2 is used to build the application, the enum keys are
         not used directly but casted from constants
      
      Task-Number: QTCREATORBUG-3598
      Reviewed-by: ck
      d4e58902
  10. Jan 14, 2011
  11. Nov 10, 2010
  12. Nov 08, 2010
    • Kai Koehne's avatar
      QmlApp template: Use new 4.7.1 API to enable qml debugging · 424fcf8c
      Kai Koehne authored
      Qml debugging is now disabled by default, and has to be enabled
      explicitly (b2016bbfc9). This has to be done before the
      QDView/QDEngine is instantiated ...
      
      The patch introduces a static create method to QmlApplicationViewer,
      so that the setup can be hidden from the users main file.
      424fcf8c
  13. Nov 03, 2010
    • Kai Koehne's avatar
      QmlApp template: Use new 4.7.1 API to enable qml debugging · 2ac91abd
      Kai Koehne authored
      Qml debugging is now disabled by default, and has to be enabled
      explicitly (b2016bbfc9). This has to be done before the
      QDView/QDEngine is instantiated ...
      
      The patch introduces a static create method to QmlApplicationViewer,
      so that the setup can be hidden from the users main file.
      
      Reviewed-by: Alessandro Portale
      2ac91abd
  14. Nov 01, 2010
    • Alessandro Portale's avatar
      Remove compile warning on Symbian. · 48d726b3
      Alessandro Portale authored
      Reviewed-By: TrustMe
      48d726b3
    • Alessandro Portale's avatar
      Move hide implementation of conditional show() · 2a7336b4
      Alessandro Portale authored
      ...and do not call it show(), because that is the signature of
      a non-virtual base class function. showExpanded() sucks as name,
      and hjk, who reviewed this is not convinced.
      But showExpanded() is still better than show().
      
      Task-Number: QTCREATORBUG-2979
      Reviewed-By: hjk
      2a7336b4
    • Alessandro Portale's avatar
      Changing template/qmljsdbg-lib as suggested in QTCREATORBUG-2885 · 7d622f11
      Alessandro Portale authored
      - Renaming the screen orientation enum and keys
      - Explicit constructors
      - Virtual destructors
      - Renamed some occurences of 'Qml' in comments to 'QML'
      - Adding descriptive comments to all generated files which should
        not be touched by the user.
      - Adding missing license headers to the qmljsdebugger sources
      
      Task-Number: QTCREATORBUG-2885
      Reviewed-by: Friedemann Kleint
      Reviewed-by: dt
      7d622f11
  15. Oct 13, 2010
    • Kai Koehne's avatar
      QmlApp: Only use QMLJSDEBUGGER define to activate qml debugging · 0a8c34d3
      Kai Koehne authored
      Don't confuse users by two defines they have to comment in when
      they just want to 'debug': Instead QMLJSDEBUGGER now activates
      both the Js Debugger & and the QmlObserver services. Finetuning
      can still be done by using the (undocumented) NO_JSDEBUGGER,
      NO_QMLOBSERVER defines.
      0a8c34d3
  16. Sep 22, 2010
  17. Sep 21, 2010
  18. Sep 20, 2010
  19. Sep 16, 2010
  20. Sep 15, 2010
  21. Sep 10, 2010
  22. Sep 08, 2010
  23. Aug 25, 2010
    • Alessandro Portale's avatar
      Improved (and simplified) the stub directory structure · 071400d6
      Alessandro Portale authored
      - Removed the "cpp/" dir
      - Moved main.cpp and symbianicon.svg next to the main .pro.
        This also reduces the dir depth in the project view.
      - Introduced "qmlapplicationviewer/" dir, which will contain the files
        which the user should not modify. All the files there have the base
        name "qmlapplicationviewer"
      - Moved/renamed "qmlapplication.pri" to
        "qmlapplicationviewer/qmlapplicationviewer.pri"
      071400d6
  24. Aug 16, 2010
  25. Aug 15, 2010
  26. Aug 09, 2010
  27. Aug 06, 2010
  28. Aug 03, 2010
  29. Aug 02, 2010
  30. Jul 30, 2010
  31. Jul 16, 2010
    • Alessandro Portale's avatar
      Wizard for standalone qml applications · 59386b20
      Alessandro Portale authored
      Short: Create a new self running qml .sis/.deb package.
      
      Long:
      A typical Qml application usually consists of a couple of .qml,
      .js and image files. Deploying such an application is challenging,
      especially to mobile devices.
      
      This wizard will generate a C++ project with a customized, light
      weight Declarative Viewer, a helloworld Qml file and a .pro file
      that takes care of the deployment of the Qml file(s).
      
      This is just the first step. There will be an import wizard,
      and further more there will be the possibility to add additional
      Qml modules and probably also Qml directories to the package.
      
      Task-number: QTCREATORBUG-1813
      59386b20
Loading