summaryrefslogtreecommitdiffstats
path: root/tools/qml
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-s60-public into ↵Qt Continuous Integration System2010-04-131-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/qt-s60-public: Fix qmake.pro after Symbian alternate build system integration Fix compile error Don't try to use so much permissions, use something a lot more sane A bit saner suggestion Remove not needed permissions Make compile on Symbian
| * Make compile on SymbianThomas Zander2010-04-121-1/+1
| |
* | WarningAaron Kennedy2010-04-121-1/+1
| |
* | Read Maemo orientation at startupAaron Kennedy2010-04-121-8/+5
| | | | | | | | QT-2695
* | Add Mac OS X bundle description for qml runtimeKai Koehne2010-04-092-0/+20
| | | | | | | | | | | | Also, it's now Qml.app instead of qml.app. An icon is still missing. Reviewed-by: con
* | Replace "property var " with "property variant " in QML codeAaron Kennedy2010-04-091-2/+2
| |
* | Tune plugin import mechanismmae2010-04-083-5/+36
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Minor cleanup for visual test framework.Michael Brasser2010-03-315-11/+11
|
* Fix viewer resizing on reload and File->openMartin Jones2010-03-301-17/+16
| | | | Task-number: QTBUG-9325
* Simplify import path.Warwick Allison2010-03-291-2/+9
| | | | Reviewed-by: mae
* Deprecate inline Script {} blocksAaron Kennedy2010-03-221-30/+28
| | | | | | | | Inline blocks/includes have been replaced with an import syntax: import "foo.js" as Foo this gives better separation between QML and code. Imported script blocks also have a mandatory qualifier, which leads to better optimization potential.
* Remove dead performance measurement code from QMLAaron Kennedy2010-03-221-5/+0
|
* Don't destroy cookie jar until while someone may be using it.Martin Jones2010-03-181-24/+34
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt into 4.7Alan Alpert2010-03-171-1/+1
|\ | | | | | | | | | | | | Conflicts: configure.exe src/declarative/util/qdeclarativelistmodel.cpp tools/qml/qml.pro
| * Fix SetDialogPreference build error on Symbian.Morten Johan Sørvig2010-03-121-1/+1
| | | | | | | | | | Similar to 032d4ac63687d209ffef594bf6ef60e3db20bfa3.
| * Fixed the QML browser built into the QML viewerThorbjørn Lindeijer2010-03-101-5/+5
| | | | | | | | Was still using 'matchProperties' instead of just 'properties'.
* | Enable GL samplebuffers by default on Mac OS XAaron Kennedy2010-03-121-0/+5
| |
* | Document - and use - the qmlRegisterXXX template functionsmae2010-03-103-6/+6
| | | | | | | | This commit removes the obsolete QML_REGISTER_TYPE macros.
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-03-101-5/+5
|\ \
| * | update Browser.qml to run againAlan Alpert2010-03-091-5/+5
| |/
* | Link with the correct library for TCommDbConnPrefMartin Jones2010-03-101-1/+1
|/
* Let the 'qml' runtime use its applicationDirPath as importsPathmae2010-03-021-0/+3
| | | | | | The is analog to the plugin system in Qt. It makes it possible to ship an executable with extra plugins resp. qml import modules without creating a qt.conf.
* Merge branch 'master' into 4.7Aaron Kennedy2010-03-021-2/+2
|\
| * Make "on" syntax mandatory for value sources and interceptorsAaron Kennedy2010-03-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Where you would have written x: NumberAnimation {} y: Behavior {} you now must write NumberAnimation on x {} Behavior on y {} This change also makes the parser more strict with respect to multiple assignments to a single property - they're no longer allowed. For example this x: 10 x: 11 is now an error.
* | build fix for WinCEMaurice Kalinowski2010-03-011-1/+3
|/ | | | | | only use xmlpatterns if Qt is configured to build it Reviewed-by: Paul Olav Tvete
* Fix compile warningAaron Kennedy2010-03-011-1/+1
|
* Simplify QML element registration headersAaron Kennedy2010-02-242-0/+4
|
* Compile warning-- for qmlviewerLeonardo Sobral Cunha2010-02-241-1/+0
|
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-2421-0/+4641
QDeclarativeXXX.