summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'kinetic-declarativeui' of ↵Alan Alpert2009-07-1650-669/+654
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Add a QmlError::toString() methodAaron Kennedy2009-07-162-12/+19
| |
| * Mark properties as FINALAaron Kennedy2009-07-161-19/+19
| |
| * Protect against overriding FINAL propertiesAaron Kennedy2009-07-169-9/+22
| |
| * Move the QML rewriting stuff into a central locationAaron Kennedy2009-07-165-140/+266
| |
| * Remove unnecessary global context management stuffAaron Kennedy2009-07-168-210/+16
| |
| * Types should not modify the active contextAaron Kennedy2009-07-162-32/+2
| |
| * Small cleanupsAaron Kennedy2009-07-1612-157/+179
| |
| * Indenting fixAaron Kennedy2009-07-161-1/+1
| |
| * Remove some unreliable binary expression supportAaron Kennedy2009-07-161-63/+1
| |
| * Add FINAL attribute to Q_PROPERTY()Aaron Kennedy2009-07-168-4/+50
| | | | | | | | This will be used by the declarative module to optimize property bindings.
| * Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-07-168-18/+65
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Merge branch 'kinetic-declarativeui' of ↵Yann Bodson2009-07-1618-1832/+3842
| | |\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * | Improve loader exampleYann Bodson2009-07-165-17/+49
| | | | | | | | | | | | | | | | Use system palette and icons.
| | * | Add QmlPalette::darker() and QmlPalette::lighter().Yann Bodson2009-07-162-0/+13
| | | |
| | * | Do not segfault when index == -1.Yann Bodson2009-07-161-1/+3
| | | |
| * | | Fix crash on object destructionAaron Kennedy2009-07-162-5/+15
| | |/ | |/|
* | | SameGame notifies player of game overAlan Alpert2009-07-163-7/+29
| | | | | | | | | | | | As requested by Aaron.
* | | Updates to the SameGame demoAlan Alpert2009-07-164-10/+9
| | | | | | | | | | | | | | | Tiles now fall down from the top, instead of the corner, and a bit of clean up.
* | | Fix a bug in QmlFollowAlan Alpert2009-07-161-0/+1
|/ / | | | | | | Using a follow by turning it on and off at times was not working right.
* | Update SameGame particlesAlan Alpert2009-07-164-3/+20
| | | | | | | | Remove count:1 hack, make particles the right color.
* | Fixes bugs with particlesAlan Alpert2009-07-161-4/+7
| | | | | | | | | | Fixed: Particle count changes had a noticable delay Fixed: Changing from zero to non-zero didn't work
* | Initial commit of QFxLineEditAlan Alpert2009-07-164-0/+845
| | | | | | | | QLineControl is integrated here, so no more need for qfxlineedit branch
* | Merge branch 'master' of /home/alpert/depot/personal/aalperts-qlinecontrol ↵Alan Alpert2009-07-169-1825/+2970
|\ \ | |/ |/| | | into kinetic-declarativeui
| * Remove emitingEditingFinished from QLineControlAlan Alpert2009-07-163-20/+5
| | | | | | | | Doesn't seem to hurt anything, and it was ugly API.
| * Rename the p_foo() functions in QLineControl to internalFoo().Marius Bugge Monsen2009-07-142-31/+31
| |
| * Make the member variable names in QLineControl consistent.Marius Bugge Monsen2009-07-144-245/+253
| |
| * Some minor style and whitespace fixes.Marius Bugge Monsen2009-07-142-38/+44
| |
| * Add '\internal' to the QLineControl documentation.Marius Bugge Monsen2009-07-141-40/+102
| |
| * Cleanup some incorrect changes to QLineEditAlan Alpert2009-07-141-9/+8
| |
| * qlinecontrol_p_p.h isn't actually used at all, remove file.Alan Alpert2009-07-141-105/+0
| |
| * Replace Q_ASSERT with qWarningAlan Alpert2009-07-141-2/+4
| | | | | | | | This is probably more correct, but is also the way it used to behave.
| * Actually, some of that can't be moved back into QLineEditAlan Alpert2009-07-142-38/+43
| | | | | | | | | | Also it should be executed a little later to avoid accidental behaviour changes.
| * Move some keypad navigation code back out of QLineControlAlan Alpert2009-07-142-50/+48
| |
| * Fix some minor mistakesAlan Alpert2009-07-102-4/+4
| |
| * Accidental Behavioural changes have been identified and rectified.Alan Alpert2009-07-081-4/+11
| | | | | | | | | | | | createStandardContextMenu should still only cut/copy in normal echo mode and the Qt3Support function validateAndSet will again only set if it is validated.
| * Fixed one of the QT3_SUPPORT constructors.Alan Alpert2009-07-081-8/+3
| | | | | | | | | | It was accidentally left commented out instead of working with QLineControl.
| * Forgot to bring in the change to QAbstractSpinBoxAlan Alpert2009-07-072-3/+3
| | | | | | | | | | | | QAbstractSpinBox had some code using QLineEdit internals, this had to be move to use QLineControl as well. This commit also includes fixing some typos in my last commit.
| * Finish remaining TODOs for QLineControlAlan Alpert2009-07-073-11/+23
| | | | | | | | | | Didn't notice there were still some TODO markers left. They have now all been done.
| * Manually integrate 099a32d121 to QLineControlAlan Alpert2009-07-071-1/+2
| | | | | | | | | | This change to QLineEdit didn't merge, as it needs to be applied to QLineControl in this case.
| * Manual cherrypick of QLineControl from kinetic-declarativeui-qfxlineeditAlan Alpert2009-07-079-1840/+3010
| | | | | | | | | | | | | | | | | | | | Splits out the control logic of QLineEdit into QLineControl, which is somewhat similar to QTextEdit. This was originally worked on in the ianws-qt-lineedit-textedit-research repository, and then further developed in kinetic in the kinetic-declarativeui-qfxlineedit branch. Note that this also includes a tiny change to qvalidator.h which allows validators to be used in qml.
* | Rewrite QML expressions as closuresRoberto Raggi2009-07-152-34/+143
| |
* | Added support for parsing toplevel expressions and statements.Roberto Raggi2009-07-155-1903/+1098
| |
* | Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-07-154-53/+80
|\ \ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * \ Merge branch 'kinetic-declarativeui' of ↵Alan Alpert2009-07-1553-1050/+1467
| |\ \ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | | Restyle SameGame demo based on feedbackAlan Alpert2009-07-154-53/+80
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -Uses a more familar rule set -Default theme swapped -Sizing altered. Now the tiles are 40x40 so as to be able to be pretty and have shiny animations, board size is set by what can fit in the game canvas.
* | | | Remove pointless QmlCompiledComponent classAaron Kennedy2009-07-1519-245/+66
| |/ / |/| |
* | | Missing fileAaron Kennedy2009-07-151-0/+211
| | |
* | | Revert "Use a function object when evaluating bindings"Aaron Kennedy2009-07-152-17/+5
| | | | | | | | | | | | | | | | | | Turns out this simple approach doesn't work. Fortunately we have a volunteer to do it properly. This reverts commit 958dc50e2b0fe2e875a704554438be75907ed3c5.
* | | Fix memory leakAaron Kennedy2009-07-151-0/+4
| | |