Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Test for overriding default animations. This test defines the order of | Eskil Abrahamsen Blomfeldt | 2009-04-22 | 1 | -0/+247 |
| | | | | | | | | | precedence: 1. Specific animation for transition 2. Default animation for source state 3. Default animation for target state 4. Default animation | ||||
* | Add tests for the removeDefaultAnimation* API | Eskil Abrahamsen Blomfeldt | 2009-04-22 | 1 | -0/+127 |
| | |||||
* | Add API for adding default animations to the state machine. This is especially | Eskil Abrahamsen Blomfeldt | 2009-04-21 | 4 | -4/+272 |
| | | | | | | | useful when using the RestoreProperties policy, because this is intended to allow you to build a state machine without having each state consider all the possible properties that may be set by some state at some point. Default animations provide the same convenience for animated properties. | ||||
* | QAnimationState is no more, so we remove the test for it. The relevant tests | Eskil Abrahamsen Blomfeldt | 2009-04-21 | 3 | -630/+327 |
| | | | | have been ported to the new API and added to the QStateMachine autotest instead. | ||||
* | doc: Document return value of QState::addTransition(QAbstractTransition*) | Eskil Abrahamsen Blomfeldt | 2009-04-21 | 1 | -1/+2 |
| | |||||
* | Have QState::addTransition(QAbstractTransition*) return the transition object | Eskil Abrahamsen Blomfeldt | 2009-04-21 | 2 | -5/+6 |
| | | | | | | | | | when it is added. Reduces the number of temporary variables you have to declare in your code since you can do things like: state->addTransition(new Transition())->addAnimation(new Animation()); Could also be used for error checking. | ||||
* | compile. | Eskil Abrahamsen Blomfeldt | 2009-04-21 | 1 | -3/+3 |
| | |||||
* | Merge branch 'kinetic-animations' into kinetic-statemachine | Kent Hansen | 2009-04-21 | 2 | -1/+36 |
|\ | |||||
| * | Fixes bug when adding the same child animation twice to the same group | Leonardo Sobral Cunha | 2009-04-21 | 2 | -1/+36 |
| | | | | | | | | | | | | | | | | The child animation was removed twice from the group because in QAnimationGroup::insertAnimationAt the insertion in the list was done before removing the animation. Reviewed-by: Jan-Arve | ||||
* | | include the right header | Kent Hansen | 2009-04-21 | 2 | -2/+2 |
| | | |||||
* | | compile | Eskil B | 2009-04-21 | 1 | -63/+48 |
| | | |||||
* | | Merge branch 'kinetic-animations' into kinetic-statemachine | Kent Hansen | 2009-04-21 | 27 | -782/+233 |
|\ \ | |/ | |||||
| * | don't assert if the signal is not valid | Kent Hansen | 2009-04-21 | 1 | -1/+2 |
| | | |||||
| * | compile fix | Thierry Bastian | 2009-04-20 | 1 | -1/+1 |
| | | |||||
| * | remove QItemAnimation and add the interpolator for QColor | Thierry Bastian | 2009-04-20 | 7 | -511/+29 |
| | | |||||
| * | cleanup in demo | Thierry Bastian | 2009-04-20 | 5 | -96/+30 |
| | | | | | | | | sub-attaq doesn't use anymore animation private headers | ||||
| * | iterationCount becomes loopCount again | Thierry Bastian | 2009-04-20 | 16 | -176/+175 |
| | | |||||
* | | compile | Kent Hansen | 2009-04-21 | 1 | -34/+34 |
| | | |||||
* | | rename QTransition -> QActionTransition | Kent Hansen | 2009-04-21 | 13 | -87/+88 |
| | | |||||
* | | don't assert if the signal is not valid | Kent Hansen | 2009-04-21 | 1 | -1/+2 |
| | | |||||
* | | initialize "for-future-expansion"-pointer | Kent Hansen | 2009-04-20 | 1 | -1/+1 |
|/ | |||||
* | Merge branch 'kinetic-animations' into kinetic-statemachine | Kent Hansen | 2009-04-20 | 1 | -3/+4 |
|\ | |||||
| * | Fix compilation after a merge error | Alexis Menard | 2009-04-17 | 1 | -3/+4 |
| | | |||||
* | | doc | Kent Hansen | 2009-04-20 | 13 | -6/+25 |
| | | |||||
* | | more doc | Kent Hansen | 2009-04-17 | 3 | -8/+12 |
| | | |||||
* | | doc | Kent Hansen | 2009-04-17 | 4 | -4/+5 |
| | | |||||
* | | compile | Kent Hansen | 2009-04-17 | 1 | -0/+2 |
| | | |||||
* | | Merge branch 'kinetic-animations' into kinetic-statemachine | Kent Hansen | 2009-04-17 | 971 | -37275/+18765 |
|\ \ | |/ | |||||
| * | Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qt into kinetic-animations | Alexis Menard | 2009-04-17 | 971 | -37275/+18765 |
| |\ | | | | | | | | | | | | | Conflicts: src/gui/graphicsview/qgraphicsitem.cpp | ||||
| | * | Even more cleanups on the Change Log. | Kavindra Devi Palaraja | 2009-04-17 | 1 | -165/+185 |
| | | | | | | | | | | | | | | | Reviewed-by: TrustMe BT: Yes | ||||
| | * | Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qt into 4.5 | Kavindra Devi Palaraja | 2009-04-17 | 7 | -178/+11 |
| | |\ | |||||
| | | * | Fix obsolete version number in docs. | Jason McDonald | 2009-04-17 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace with %VERSION%, so we don't need to fix this for every release. Task-number: 251417 Reviewed-by: Trust Me | ||||
| | | * | Fix obsolete version number in docs. | Jason McDonald | 2009-04-17 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use %VERSION% so that we don't have to fix this for every release. Task-number: 251418 Reviewed-by: Trust Me | ||||
| | | * | Wrong version number in windows installation doc. | Jason McDonald | 2009-04-17 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Doc still referred to 4.4.0-rc1 - replace with %VERSION% so we don't have to keep updating this. Task-number: 251419 Reviewed-by: Trust Me | ||||
| | | * | Remove out-of-date Cocoa known issues page. | Jason McDonald | 2009-04-17 | 1 | -168/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This page is not linked from anywhere, and its content is horribly out-of-date. Task-number: 251420 Reviewed-by: nrc | ||||
| | | * | Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qt into 4.5 | Jason McDonald | 2009-04-17 | 1 | -1/+4 |
| | | |\ | |||||
| | | | * | Line edit displays garbage when pressing up or down arrow keys (Cocoa). | Prasanth Ullattil | 2009-04-17 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The unicode characters between 0xF700 & 0xF8FF are special function-key code characters used by the NSEvent. These characters have to be ignored when converting to a QString. Task-number:244486 Reviewed-by:nrc | ||||
| | | * | | Fix incorrect year and version number in assistant docs. | Jason McDonald | 2009-04-17 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Task: 251421 Reviewed-by: Trust Me | ||||
| | | * | | Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qt into 4.5 | Jason McDonald | 2009-04-17 | 9 | -21/+42 |
| | | |\ \ | | | | |/ | |||||
| | | * | | BT: Fix version number in FAQ.txt. | Jason McDonald | 2009-04-17 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Don't state a specific version number, or we'll keep forgetting to update it. Task-number: 251338 Reviewed-by: Trust Me | ||||
| | * | | | More cleanups on the change log. | Kavindra Devi Palaraja | 2009-04-17 | 1 | -90/+105 |
| | | |/ | | |/| | | | | | | | | | | | | | Reviewed-by: TrustMe BT: Yes | ||||
| | * | | Updated WebKit from /home/shausman/src/webkit/trunk to origin/qtwebkit-4.5 ( ↵ | Simon Hausmann | 2009-04-17 | 5 | -4/+24 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 450331808bfe11b1472c213a8cb311190355c2de ) Changes in WebKit since the last update: ++ b/WebCore/ChangeLog 2009-02-04 Simon Hausmann <simon.hausmann@nokia.com> Unreviewed Qt build fix. Changed ASSERT(image) to ASSERT(!image.isNull()). * platform/graphics/qt/ImageBufferQt.cpp: (WebCore::ImageBuffer::getImageData): ++ b/WebKit/qt/ChangeLog 2009-03-07 Adam Treat <adam.treat@torchmobile.com> Reviewed by Cameron Zwarich. These methods are clearly returning the wrong values as the two were returning swapped information. * Api/qwebpage.cpp: (QWebPage::totalBytes): (QWebPage::bytesReceived): | ||||
| | * | | Add my bugfix. | Ariya Hidayat | 2009-04-17 | 1 | -0/+1 |
| | | | | |||||
| | * | | Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qt into 4.5 | Jarek Kobus | 2009-04-17 | 210 | -2891/+3388 |
| | |\ \ | | | |/ | |||||
| | | * | Allow -help to be used in a non-eval package. | Lincoln Ramsay | 2009-04-17 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous logic caused a license check when the eval license file was missing. Reviewed-by: Jason McDonald Task-number: 251339 | ||||
| | | * | Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qt into 4.5 | Rhys Weatherley | 2009-04-17 | 1 | -5/+4 |
| | | |\ | |||||
| | | | * | BT: Whats new doc page has a link to changes-4.5.0 file instead of 4.5.1 | Jason McDonald | 2009-04-17 | 1 | -5/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Restore the text that is omitted for a minor release but included in patch releases. Also fixes obsolete link to changes files. Reviewed-by: Trust Me | ||||
| | | * | | Document my QGLFramebufferObject change | Rhys Weatherley | 2009-04-17 | 1 | -0/+3 |
| | | |/ | |||||
| | | * | Fixes long strings getting truncated by the ODBC Driver. | Bill King | 2009-04-16 | 2 | -1/+35 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This test has always been wrong/confusing. Fix it to work, and make sense. Task-number: 250026 Revby: Lincoln Ramsay | ||||
| | | * | Document my changes for 4.5.1 | Rhys Weatherley | 2009-04-16 | 1 | -0/+6 |
| | | | |