Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change to release license header. | Jason McDonald | 2011-02-16 | 1 | -13/+13 |
| | | | | Reviewed-by: Trust Me | ||||
* | Update copyright year to 2011. | Jason McDonald | 2011-01-11 | 1 | -1/+1 |
| | | | | | Reviewed-by: Trust Me (cherry picked from commit ac5c099cc3c5b8c7eec7a49fdeb8a21037230350) | ||||
* | Make the animation api compile when QT_NO_THREAD is defined | Leonardo Sobral Cunha | 2010-01-21 | 1 | -0/+4 |
| | | | | | Task-number: QTBUG-6890 Reviewed-by: Thierry | ||||
* | Update copyright year to 2010 | Jason McDonald | 2010-01-06 | 1 | -1/+1 |
| | | | | Reviewed-by: Trust Me | ||||
* | Doc: Try to explain better when and how the easing curve is applied | Jan-Arve Sæther | 2009-12-10 | 1 | -0/+7 |
| | | | | | | | Maybe not perfect, but it should be *better* at least. Task-number: QTBUG-6623 Reviewed-by: Thierry | ||||
* | Complete QVariantAnimation doc to mention qRegisterAnimationInterpolator | Thierry Bastian | 2009-11-19 | 1 | -1/+18 |
| | | | | Task-number: QTBUG-5970 | ||||
* | Result API review with Jasmin | Thierry Bastian | 2009-11-04 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | QAbstractAnimation: currentTime returns the "complete" current time currentLoopTime() returns the time inside the current loop add setPaused(bool) for consistency with QTimeLine stateChanged: newState passed as first paramater (before oldState) for consistency with the reset of Qt QAnimationGroup: rename clearAnimations to clear rename insertAnimationAt to insertAnimation rename takeAnimationAt to takeAnimation QSequentialAnimationGroup: rename insertPauseAt to insertPause | ||||
* | Animations: updateCurrentTime now receives the currentTime as paramater | Thierry Bastian | 2009-09-28 | 1 | -1/+1 |
| | | | | Reviewed-by: Leo | ||||
* | Small change in the API of animations | Thierry Bastian | 2009-09-23 | 1 | -2/+1 |
| | | | | | | | | We're not taking a parameter in updateCurrentTime any more because that parameter was the total currenttime. So it was taking into account the currenttime and the currentloop at once. This was inconsistent Reviewed-by: Leo | ||||
* | Update license headers again. | Jason McDonald | 2009-09-09 | 1 | -4/+4 |
| | | | | Reviewed-by: Trust Me | ||||
* | Update tech preview license header for files that are new in 4.6. | Jason McDonald | 2009-08-31 | 1 | -13/+13 |
| | | | | Reviewed-by: Trust Me | ||||
* | Improve memory usage of the connectionlists inside QObject | Olivier Goffart | 2009-08-19 | 1 | -7/+8 |
| | | | | | | | | | | | | | | | | | | | | ... by not allocating space for slots in the vector. Before, the vector uses the signal index as index. The problem is that the slots and signal are mixed in the same index space. We solve the problem by having a different index space for the signal in the connectionlists vector. All we need to do is to add the information about the number of signals in the moc. Also, we are not connecting to cloned signal but only to the orginial ones. For example, destroyed(QObject * = 0) would generate two signal, we now only connect to the first one. This also improve a little bit the performence while activating signals since it removed one call to indexOfMethod. Reviewed-by: Brad | ||||
* | QPropertyAnimation: refactor of the default-value code | Thierry Bastian | 2009-08-13 | 1 | -39/+26 |
| | |||||
* | oops: fix an issue when going backward and there is only 1 key value set | Thierry Bastian | 2009-08-12 | 1 | -4/+11 |
| | |||||
* | Make QPropertyAnimation symetric wrt direction | Thierry Bastian | 2009-08-12 | 1 | -38/+39 |
| | | | | | | It is now possible to set a start value and no end value and starting the animation will pick the default end value from the current value of the property that's being animated. | ||||
* | Update contact URL in license headers. | Jason McDonald | 2009-08-12 | 1 | -1/+1 |
| | | | | Reviewed-by: Trust Me | ||||
* | extend the QObjectPrivate::connectedSignals bitfield to make space | Aaron Kennedy | 2009-07-31 | 1 | -1/+1 |
| | | | | | | | | | | for all the required NOTIFY signals we need for QML bindings. An additional internal function QMetaObject::isConnected() allows to query the bits, or you use connectedSignals[0] if you know that the signal in question has a QMetaObject::indexOfSignal() < 32. Authored-by: mae Reviewed-by: Aaron Kennedy | ||||
* | Update license headers in files that are new in 4.6. | Jason McDonald | 2009-06-17 | 1 | -2/+2 |
| | | | | Reviewed-by: Trust Me | ||||
* | move the QT_NO_ANIMATION macro to the right place (ie after other | Thierry Bastian | 2009-06-04 | 1 | -2/+2 |
| | | | | includes) | ||||
* | use of QMutexPool to reduce the number of Q_GLOBAL_STATIC in the | Thierry Bastian | 2009-06-03 | 1 | -14/+15 |
| | | | | animation framework | ||||
* | small refactor to change the interpolator at the same time as the | Thierry Bastian | 2009-05-27 | 1 | -14/+29 |
| | | | | current interval in the variant animations | ||||
* | Fixed a bug in animation when you set a start value that doesn't have | Thierry Bastian | 2009-05-26 | 1 | -3/+7 |
| | | | | | | | | | the same type as the property For example, if you set a start value of 0 (integer) for a qreal animation, it would not work. Reviewed-by: janarve | ||||
* | Fixed docs warnings for Animation API | Thierry Bastian | 2009-05-26 | 1 | -3/+12 |
| | |||||
* | update the qdoc tags (\since 4.6, remove \preliminary) | Kent Hansen | 2009-05-20 | 1 | -2/+1 |
| | |||||
* | Removing QT_EXPERIMENTAL_SOLUTION from the animation api | Leonardo Sobral Cunha | 2009-05-19 | 1 | -4/+1 |
| | |||||
* | Removed unused method from QVariantAnimationPrivate | Leonardo Sobral Cunha | 2009-05-19 | 1 | -6/+0 |
| | |||||
* | Avoid resetting the QVariantAnimation::currentValue when changing state | Leonardo Sobral Cunha | 2009-05-15 | 1 | -2/+0 |
| | | | | Reviewed-by: janarve | ||||
* | General refactors in QVariantAnimation | Leonardo Sobral Cunha | 2009-05-15 | 1 | -26/+32 |
| | | | | Reviewed-by: janarve | ||||
* | Update current value on QVariantAnimation::setKeyValues | Leonardo Sobral Cunha | 2009-05-15 | 1 | -0/+1 |
| | | | | | | | The current value was udpated on setKeyValueAt, but not on setKeyValues and this was leading to a semantic inconsistency. Reviewed-by: janarve | ||||
* | Avoid interpolating if we have less than 2 key values in QVariantAnimation | Leonardo Sobral Cunha | 2009-05-15 | 1 | -4/+10 |
| | | | | | | | If we have less than 2 key values, we should neither try to interpolate nor set the current value. Reviewed-by: janarve | ||||
* | Indentation and whitespace fixes in animation api | Leonardo Sobral Cunha | 2009-05-15 | 1 | -8/+6 |
| | |||||
* | Doc: Git merge conflict in QVariantAnimation | Geir Vattekar | 2009-05-05 | 1 | -7/+0 |
| | |||||
* | Doc: Updated QVariantAnimation class description | Geir Vattekar | 2009-05-05 | 1 | -40/+103 |
| | |||||
* | Small refactor of QVariantAnimation::updateCurrentValue | Thierry Bastian | 2009-04-29 | 1 | -17/+7 |
| | | | | | | we only test the inequality of the new value compared to the previous one in case we have something conected to currentValueChanged signal. The comparison is quite heavy in QVariant. So avoiding it a good thing. | ||||
* | Expose QVariantAnimationPrivate::getInterpolator in the private header | Leonardo Sobral Cunha | 2009-04-21 | 1 | -2/+2 |
| | | | | These interpolator functions might be useful for other internal classes. | ||||
* | iterationCount becomes loopCount again | Thierry Bastian | 2009-04-20 | 1 | -1/+1 |
| | |||||
* | Initial import of statemachine branch from the old kinetic repository | Alexis Menard | 2009-04-17 | 1 | -0/+599 |