summaryrefslogtreecommitdiffstats
path: root/tools/qml/qmlruntime.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove skins from qml launcher.Kai Koehne2010-05-141-6/+0
|
* Temporary work-around for QTBUG-9849.Warwick Allison2010-05-111-0/+2
| | | | May allow better experimentation and bug fixing.
* Resize qmlruntime window to new dimensions when orientation changesJoona Petrell2010-05-071-3/+2
| | | | | Task-number: Reviewed-by: Warwick Allison
* Add a switch to the menu to hide/show the runtime warningsKai Koehne2010-05-051-0/+10
| | | | Reviewed-by: mae
* Allow translations without extra command-line args, and document both.Warwick Allison2010-05-051-0/+6
|
* Fix hidden menu on embedded.Warwick Allison2010-04-231-0/+1
| | | | Menu strangely still produces hits on embedded. Don't create it if frameless.
* ResizeMode support for QGraphicsWidgets created with QDeclarativeViewJoona Petrell2010-04-161-1/+3
| | | | | Task-number: QTBUG-8814 Reviewed-by: alexis
* Update examples autotest to use the runtime directlyAaron Kennedy2010-04-151-2/+3
| | | | This improves the test execution time
* Remove dead wgt support from qml runtimeAaron Kennedy2010-04-141-2/+0
|
* Add 'runtime' property to the rootContext of DeclarativeViewerLeonardo Sobral Cunha2010-04-141-0/+1
| | | | | | | | | | The 'runtime' property is a singleton object that contains various info about the execution environment for the qml application. Currently it contains just one property 'isActiveWindow', which tells if the window of the declarative viewer is active or not. Task-number: QTBUG-8902 Reviewed-by: Martin Jones
* Support recording visual snapshot tests.Michael Brasser2010-04-141-1/+2
|
* Tune plugin import mechanismmae2010-04-081-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | In shadow build environments, we cannot enforce that shared library objects for plugins are located in the same directory as the qmldir file. This makes it hard for Creator to support mixed projects (qml/c++). In order to gain more flexibility, the patch introduces a pluginPathList to QDeclarativeEngine, which completes the existing importsPathList. The pluginPathList defaults to ["."], which indicates the directory where the qmldir file is located in. The qml viewer tool gains a command line option -P to add to the pluginPathList. For consistency, the -L option ("Library") has been renamed to -I ("Import"). QDeclarativeEngine::importExtension() has been renamed to QDeclarativeEngine::importPlugin(). The documentation has been adjusted accordingly. Done with erikv. Reviewed-by: erikv
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+195
QDeclarativeXXX.