Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix test failures | Aaron Kennedy | 2009-10-05 | 8 | -25/+30 |
| | |||||
* | Fix attached properties/enums from ecmascript | Aaron Kennedy | 2009-10-05 | 5 | -25/+61 |
| | |||||
* | Crash | Aaron Kennedy | 2009-10-05 | 1 | -1/+3 |
| | |||||
* | Implement QmlValueTypeScriptClass::newObject() | Aaron Kennedy | 2009-10-05 | 1 | -1/+2 |
| | |||||
* | Update to new QScriptDeclarativeClass API | Aaron Kennedy | 2009-10-05 | 8 | -75/+31 |
| | |||||
* | Tweak api to improve ownership issues | Aaron Kennedy | 2009-10-05 | 4 | -33/+25 |
| | |||||
* | Reenable types/enums and move scripts into an isolated scope | Aaron Kennedy | 2009-10-05 | 24 | -381/+915 |
| | |||||
* | API changes | Aaron Kennedy | 2009-10-05 | 2 | -53/+87 |
| | |||||
* | Only start timer if it isn't already active | Aaron Kennedy | 2009-10-05 | 1 | -2/+4 |
| | |||||
* | Prevent writes to the global object | Aaron Kennedy | 2009-10-05 | 7 | -44/+246 |
| | | | | Also add toString() method to qobjects | ||||
* | Read/write property directly from QmlObjectScriptClass | Aaron Kennedy | 2009-10-05 | 5 | -83/+83 |
| | |||||
* | QmlMetaProperty cleanup | Aaron Kennedy | 2009-10-05 | 4 | -332/+348 |
| | |||||
* | Minor QmlMetaProperty cleanup | Aaron Kennedy | 2009-10-05 | 2 | -20/+35 |
| | |||||
* | Improve script lookup caching | Aaron Kennedy | 2009-10-05 | 21 | -355/+1018 |
| | |||||
* | Create a property cache for synthesized metaobjects | Aaron Kennedy | 2009-10-05 | 14 | -93/+303 |
| | |||||
* | Use placement new correctly | Aaron Kennedy | 2009-10-05 | 1 | -3/+3 |
| | |||||
* | Use QScriptProgram to speed up binding creation | Aaron Kennedy | 2009-10-05 | 4 | -4/+28 |
| | |||||
* | Add two step compile/evaluate support to QScript | Aaron Kennedy | 2009-10-05 | 2 | -0/+199 |
| | |||||
* | Prototype a QScriptDeclarativeClass that fits better with qml | Aaron Kennedy | 2009-10-05 | 6 | -3/+652 |
| | |||||
* | Update Rectangle to use qDrawBorderPixmap. | Michael Brasser | 2009-10-05 | 1 | -35/+3 |
| | |||||
* | Use qDrawPixmaps for particles. | Michael Brasser | 2009-10-05 | 1 | -2/+16 |
| | |||||
* | No longer need to disable JITing. | Michael Brasser | 2009-10-04 | 1 | -2/+0 |
| | |||||
* | Make compile. | Michael Brasser | 2009-10-04 | 1 | -1/+1 |
| | |||||
* | Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt into ↵ | Michael Brasser | 2009-10-04 | 97 | -548/+1371 |
|\ | | | | | | | | | | | | | kinetic-declarativeui Conflicts: configure | ||||
| * | Adding comments. | Alessandro Portale | 2009-10-03 | 1 | -0/+9 |
| | | |||||
| * | Doc: Document HTML and status as properties. | Volker Hilsheimer | 2009-10-03 | 1 | -5/+7 |
| | | |||||
| * | Doc: silence qdoc warnings in S60 specific documentation. | Volker Hilsheimer | 2009-10-03 | 2 | -3/+4 |
| | | | | | | | | Not sure why the migration classes should be are \obsolete. | ||||
| * | Doc: silence more qdoc warnings. | Volker Hilsheimer | 2009-10-03 | 5 | -17/+10 |
| | | | | | | | | | | Mark QGraphicsAnchor::unsetSpacing as reset function of the spacing property. | ||||
| * | Doc: add \since 4.6 to new QGraphicsItem::PanelModality enum. | Volker Hilsheimer | 2009-10-03 | 1 | -0/+1 |
| | | |||||
| * | Merge commit 'origin/4.6' into mmfphonon | Frans Englich | 2009-10-02 | 23 | -293/+925 |
| |\ | | | | | | | | | | | | | Conflicts: demos/mediaplayer/mediaplayer.pro | ||||
| | * | Changed implementation of qDrawBorderPixmap() to use qDrawPixmaps(). | Kim Motoyoshi Kalland | 2009-10-02 | 6 | -240/+262 |
| | | | | | | | | | | | | Reviewed-by: Trond | ||||
| | * | Added support for drawing a pixmap multiple times in one call. | Kim Motoyoshi Kalland | 2009-10-02 | 9 | -48/+292 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is internal API. It's possible to specify a horizontal and vertical scale, rotation, opacity and source rectangle for each pixmap item. Useful for particle effects. Reviewed-by: Trond | ||||
| | * | Added qFastSin() and qFastCos() functions. | Kim Motoyoshi Kalland | 2009-10-02 | 3 | -2/+333 |
| | | | | | | | | | | | | | | | | | | The new functions use a lookup table. Reviewed-by: Trond | ||||
| | * | Add prefix to statemachine-specific event types | Kent Hansen | 2009-10-02 | 5 | -9/+9 |
| | | | | | | | | | | | | | | | | | | "Signal" and "Wrapped" is too generic; prefix with StateMachine. Reviewed-by: Eskil Abrahamsen Blomfeldt | ||||
| | * | Doc: mark API of Gesture framework as preliminary. | Volker Hilsheimer | 2009-10-02 | 2 | -0/+4 |
| | | | | | | | | | | | | New API will most likely not be in the Beta release. | ||||
| | * | Adds a bool to QAbstractAnimationPrivate to keep track of top-level animations | Leonardo Sobral Cunha | 2009-10-02 | 2 | -9/+16 |
| | | | | | | | | | | | | | | | | | | | | | | | | Also refactored the timer verifications on (un)registerAnimation: we should never register an animation that has a registeredTimer, but we can unregister an animation several times. Reviewed-by: thierry | ||||
| | * | Mac: bugfix 45f095b8970dc3c1b6f6e97fa2323654ba848288 | Richard Moe Gustavsen | 2009-10-02 | 1 | -9/+16 |
| | | | | | | | | | | | | | | | | | | Seems like I forgot to handle page scrolls. Also did a small optimization (see also 45f095b8970dc3c1b6f6e97fa2323654ba848288) | ||||
| | * | Demos and applications have a nice Qt logo when installed on Symbian | Espen Riskedal | 2009-10-02 | 1 | -0/+17 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added a line to the symbianpkgrules.pri files which includes an ICON if the TARGET.UID3 is defined. We should fix the application_icon.prf to handle ICON without UID3 situations more gracefully, but for now I reordered existing UID3s to be specified before the symbianpkgrules.pri includes. Reviewed-by: Aleksandar Babic | ||||
| * | | Merge branch '4.6' into mmfphonon | Frans Englich | 2009-10-02 | 59 | -166/+315 |
| |\ \ | | |/ | |||||
| | * | Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt into 4.6 | Sami Merilä | 2009-10-02 | 70 | -387/+615 |
| | |\ | |||||
| | | * | Use multimedia timers on Windows for timers less than 16ms | Bradley T. Hughes | 2009-10-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to http://msdn.microsoft.com/en-us/library/ms725496(VS.85).aspx, the system time resolution is 10-16ms, so we should use multimedia timers for anything less than 16ms (the worst case). | ||||
| | | * | doc: Fixed numerous qdoc errors. | Martin Smith | 2009-10-02 | 5 | -10/+7 |
| | | | | |||||
| | | * | Mac: update/small fix to 45f095b8970dc3c1b6f6e97fa2323654ba848288 | Richard Moe Gustavsen | 2009-10-02 | 2 | -12/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It turns out that we need to let singleStep keep its value in qtextedit so that pushing the up/down buttons on the slider works as they should. Moreover, overriding the behaviour in abstract slider also makes QGraphicsView work out of the box. Also added in the test fix suggested by Olivier. | ||||
| | | * | Renamed the values in the Qt::TileRule enum. | Trond Kjernåsen | 2009-10-02 | 5 | -42/+42 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Stretch, Repeat and Round are too generic. Renamed to StretchTile, RepeatTile and RoundTile. Reviewed-by: Gunnar | ||||
| | | * | Fix compiler warnings on VS2008 | Prasanth Ullattil | 2009-10-02 | 32 | -67/+69 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Disabled C4396 for both webit and javascript core projects. Fixed some C4100 (unreferenced formal parameter) warnings in Qt code. Reviewed-by: Simon Hausmann | ||||
| | | * | make private qws/qvfb data directory non-default, default to non-user specific | Jeremy Katz | 2009-10-02 | 2 | -2/+18 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This turns the changes in 072e748adbdab1d51b240b9983ce82b213b66f18 off by default. Define QT_PRIVATE_QWS to turn them on. This must be done for both qvfb (X11 build) and libQtGui (QWS build). Failure to do so will result in an inability for applications to communicate with the server. Task-number: QTBUG-1711 Reviewed-by: Paul | ||||
| | | * | Clear text selection in QLabel when it is losing focus | mae | 2009-10-02 | 1 | -1/+12 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The change implements the same logic for QLabel which QLineEdit (and implicitely QSpinBox and QComboBox) already had. Reviewed-by: Simon Hausmann | ||||
| | | * | Dealing with socket that was signalized on exception fds set | Aleksandar Sasha Babic | 2009-10-02 | 1 | -3/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It turns out that if socket was signalized via exception fds set, we should signalize only write notifier in the case where both read and write notifiers exist. If in this case we send signal to read notification socket will prematurely be closed. x#Reviewed-by: Janne Antilla | ||||
| | | * | Workaround for Open C bug | Aleksandar Sasha Babic | 2009-10-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Workaorund for SO_REUSEPORT / SO_REUSEADDR regression bug. | ||||
| | | * | Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt into 4.6 | Gunnar Sletta | 2009-10-02 | 3 | -5/+36 |
| | | |\ |