summaryrefslogtreecommitdiffstats
path: root/src/declarative/util
Commit message (Collapse)AuthorAgeFilesLines
* Move Q_PROPERTY()'s to top of objectAaron Kennedy2009-10-081-1/+1
| | | | | Q_PROPERTY() macros without a semicolon inside a class access block (public:) confuses moc into ignoring Q_INVOKABLES
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-085-3/+14
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui-scriptopt
| * Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-10-082-0/+11
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Add url() for setUrl().Warwick Allison2009-10-082-0/+11
| | |
| * | Remove a bunch of unneeded semicolons.Martin Jones2009-10-083-3/+3
| |/
* | Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-082-39/+57
|\ \ | |/ | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui-scriptopt
| * Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-10-081-36/+44
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Compile on Symbian.Martin Jones2009-10-071-36/+44
| | |
| * | Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-10-061-2/+5
| |\ \ | | |/ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | Auto tests for QmlTimerMartin Jones2009-10-061-3/+13
| | |
* | | Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-072-4/+5
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into test Conflicts: demos/declarative/samegame/content/samegame.js tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp
| * | Merge branch 'kinetic-declarativeui' of ↵Bea Lam2009-10-061-2/+0
| |\ \ | | |/ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Some docs on data models.Martin Jones2009-10-061-2/+0
| | |
| * | Fix to not crash if item has no parent for some reason.Bea Lam2009-10-061-2/+5
| |/
* | Make Script an instrinsic typeAaron Kennedy2009-10-073-295/+0
| | | | | | | | | | This allows us to delay the QML load until external script files have been loaded from the network, and to correctly scope these scripts.
* | Improve scope handlingAaron Kennedy2009-10-061-4/+2
| |
* | Reenable types/enums and move scripts into an isolated scopeAaron Kennedy2009-10-051-2/+8
|/
* Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-10-021-1/+5
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Only set QmlViewer's scene to the root element size if there is one.Christian Kamm2009-10-011-1/+5
| | | | | | | | | | Reviewed-by: erikv Reviewed-by: kkoehne
| * Set sceneRect to size of root item instead of size of view.Christian Kamm2009-09-301-1/+1
| | | | | | | | | | | | | | | | This changes nothing when contentResizable is set and allows scroll bars to be used when it's false and the view size is smaller than the root item's size. Reviewed-by: owolff
* | Try to restore stacking order when restoring from a ParentChange.Michael Brasser2009-10-022-7/+52
|/
* Fix bug with signal overrides.Michael Brasser2009-09-255-7/+8
|
* compileYann Bodson2009-09-251-1/+1
|
* Make replacing a signal handler in a state change use the right context.Michael Brasser2009-09-251-6/+60
|
* Prevent qmlviewer from confusing people when root items are small.Alan Alpert2009-09-241-0/+2
| | | | Task-number: QT-711
* Add plumbing for more advanced signal property controlAaron Kennedy2009-09-221-5/+2
|
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-09-223-56/+56
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-09-223-55/+55
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Renaming: QFxView -> QmlViewYann Bodson2009-09-223-55/+55
| | |
| * | Fixes for framerate monitor.Michael Brasser2009-09-221-1/+1
| |/
* | Preliminary support for object and list synthesized property typesAaron Kennedy2009-09-222-4/+12
|/
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-09-211-1/+62
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Get the framerate monitor working again.Michael Brasser2009-09-211-1/+62
| |
* | Basic implementation of visual "test scripts"Aaron Kennedy2009-09-211-4/+4
|/ | | | Test scripts allow the qmlviewer to record a set of input actions, and the resulting visual frames.
* Switch Repeater over to use VisualModel.Martin Jones2009-09-172-18/+35
| | | | Also extend VisualModels to support the usage Repeater used to add.
* Some documentation link updatesThorbjørn Lindeijer2009-09-162-0/+4
|
* Focus changes to QFxItem and QFxView.Andreas Aardal Hanssen2009-09-151-2/+4
| | | | | | | | | | | | | | | Remove QFxItem::activeFocus, make QFxItem::focus behave like QGraphicsItem::focus (same as activeFocus essentially). Introduce QFxItem::wantsFocus to provide the same behavior as QFxItem::focus used to. Also updated the focusScope manual tests to reflect this new behavior. This change is going to break every example that relies on activeFocus. The fix is to replace all references with "focus" instead. All places that bind to "focus" should now bind to "wantsFocus" instead. Reviewed-by: akennedy
* Ensure item moves are passed on literally so views can animate literally.Warwick Allison2009-09-111-1/+4
|
* Implement itemsMoved() in ListView.Martin Jones2009-09-101-1/+1
| | | | No animation possible currently.
* Follow renamed to SpringFollow.Martin Jones2009-09-105-77/+105
|
* Report custom parse errors verbosely.Warwick Allison2009-09-102-11/+12
|
* Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-09-096-5/+492
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-09-093-4/+1
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-09-091-2/+1
| | |\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * | Move ComponentInstance functionality into LoaderMartin Jones2009-09-092-2/+0
| | | |
| * | | Add EaseFollow elementAaron Kennedy2009-09-094-3/+492
| |/ /
* | | Don't allow sparse-setting, since not efficient anyway.Warwick Allison2009-09-091-22/+16
| | |
* | | Fix destruction of ModelNodes (fix crash-on-exit).Warwick Allison2009-09-091-7/+6
| | |
* | | Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-09-092-3/+2
|\ \ \ | | |/ | |/| | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | Make sure animations convert between float and double when needed.Michael Brasser2009-09-091-2/+1
| |/