summaryrefslogtreecommitdiffstats
path: root/src/declarative
Commit message (Collapse)AuthorAgeFilesLines
* Fix critical spelling mistake.Martin Jones2011-01-251-1/+1
|
* Add location information for tracing.Michael Brasser2011-01-255-12/+63
|
* Add "Complete" message for tracing.Michael Brasser2011-01-252-0/+7
|
* Notify that pressed has changed before calling the onClicked handler.Michael Brasser2011-01-251-1/+2
| | | | | | | This is a more natural ordering, and makes it trivial to control different state groups with pressed and onClicked. Reviewed-by: Martin Jones
* Improve information reported for MouseArea hover events.Michael Brasser2011-01-251-2/+6
| | | | Reviewed-by: Martin Jones
* Fix copy-paste error in QDeclarativeMouseArea::hoverMoveEvent.Michael Brasser2011-01-251-1/+1
| | | | Reviewed-by: Martin Jones
* Expose implicitWidth and implicitHeight properties of Item.Martin Jones2011-01-2426-57/+514
| | | | | | | | Overridden as readonly for elements that have an inherent implicit size such as Text, TextEdit, TextInput, positioners, Loader. Task-number: QTBUG-14957 Reviewed-by: Michael Brasser
* Change Qt.application.layoutDirection from bool to correct type of ↵Joona Petrell2011-01-192-4/+13
| | | | | | | Qt::LayoutDirection Task-number: QTBUG-16424 Reviewed-by: Martin Jones
* Add a layout direction example to positionersJoona Petrell2011-01-191-11/+12
| | | | | Task-number: Reviewed-by: Alan Alpert
* Rename Image::cached to 'cached' (and QDeclarativePixmap::Cached also)Bea Lam2011-01-197-26/+26
| | | | | | | | This is to keep consistent property naming consistent. E.g. Image has 'smooth', 'mirror' properties rather than 'smoothed', 'mirrored'. For consistency QDeclarativePixmap::Cached was renamed as well. Reviewed-by: Martin Jones
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Martin Jones2011-01-19297-352/+407
|\
| * TextEdit implicit size varied depending upon wrapMode.Martin Jones2011-01-191-2/+6
| | | | | | | | | | | | | | | | We failed to reset textWidth before calculating the ideal width of the text. Task-number: QTBUG-16710 Reviewed-by: Michael Brasser
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2011-01-186-20/+54
| |\ | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: Request font sizes with only 0.5pt resolution.
| | * Request font sizes with only 0.5pt resolution.Martin Jones2011-01-186-20/+54
| | | | | | | | | | | | | | | | | | | | | | | | When animating pointSize avoid generating a huge number of fonts with slightly different point sizes. Task-number: QTBUG-13960 Reviewed-by: Aaron Kennedy
| * | fix typo in error messagesOswald Buddenhagen2011-01-171-1/+1
| |/ | | | | | | Task-number: QTBUG-16369
| * Fix memory leakAaron Kennedy2011-01-141-0/+5
| | | | | | | | Task-number: QTBUG-16526
| * Clarify Component.createObject(null) behavior.Martin Jones2011-01-141-0/+4
| | | | | | | | | | | | | | | | Setting the parent of the returned item does not affect its object ownership so care must be taken to ensure it is not garbage collected. Task-number: QTBUG-16630 Reviewed-by: Aaron Kennedy
| * Don't crash Qt Creator when debugging an object aliasAaron Kennedy2011-01-131-1/+1
| | | | | | | | Task-number: QTBUG-16131
| * Doc: Fixed a few misspellings of FlipableThorbjørn Lindeijer2011-01-111-2/+2
| |
| * Update copyright year to 2011.Jason McDonald2011-01-10297-299/+299
| | | | | | | | Reviewed-by: Trust Me
| * Fix loaded() signal to be emitted only onceBea Lam2011-01-102-27/+35
| | | | | | | | | | Task-number: QTBUG-16319 Reviewed-by: Martin Jones
* | Compile on windowsAlan Alpert2011-01-181-6/+8
| |
* | Avoid index out of bounds array accessesAlan Alpert2011-01-181-2/+5
| |
* | Merge branch 'qtquick11' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Alan Alpert2011-01-186-24/+9
|\ \
| * | Fix declarative autotest compilation on SymbianJoona Petrell2011-01-181-1/+1
| | | | | | | | | | | | | | | Task-number: Reviewed-by: Martin Jones
| * | Fix QtDeclarative compilation warningsJoona Petrell2011-01-185-23/+8
| | | | | | | | | | | | | | | Task-number: Reviewed-by: Martin Jones
* | | Implement layoutDirection property on Row, Grid, FlowAlan Alpert2011-01-183-21/+216
| | | | | | | | | | | | | | | Task-number: QTBUG-11042 Reviewed-by: Joona Petrell
* | | Document TextInput::readOnlyAlan Alpert2011-01-181-0/+10
| | |
* | | Proper versioning for canPasteAlan Alpert2011-01-182-2/+2
|/ /
* | Fix memory leakAaron Kennedy2011-01-171-3/+9
| | | | | | | | Introduced by 488e616b50707e5b37162e6d0cfc71a1ffdf9bef
* | Add canPaste property to TextInput and TextEditAlan Alpert2011-01-176-3/+66
| | | | | | | | | | Task-number: QTBUG-16190 Reviewed-by: Martin Jones
* | Remove unnecessary debug traces from declarative classesJoona Petrell2011-01-171-1/+0
| | | | | | | | | | Task-number: Reviewed-by: Martin Jones
* | Add lineCount property to QDeclarativeTextEditChristopher Ham2011-01-144-1/+40
| | | | | | | | | | | | | | | | The lineCount property should return the number of lines contained in textEdit. Also corrected minor documentation in Text Task-number: QTBUG-12305 Reviewed-by: Michael Brasser
* | QDeclarativeText has new multiline propertiesChristopher Ham2011-01-143-15/+185
| | | | | | | | | | | | | | | | | | | | LineCount should return the number of lines currently being displayed. Setting maximumLineCount limits the number of lines that will be shown Truncated will return true if the text has been elided normally, or if the lines have been limited due to maximumLineCount. Task-number: QTBUG-12305 Reviewed-by: Michael Brasser
* | Add NOTIFY signals to Flipable 'front' and 'back' propertiesBea Lam2011-01-132-2/+6
| | | | | | | | | | | | | | | | | | Although the change notifications themselves may not be that useful, as these properties are write-once, adding the NOTIFY signals allows the properties to be used in bindings. Task-number: QTBUG-16580, QTBUG-14551 Reviewed-by: Martin Jones
* | Revert "Don't use implicitSize when calculating implicit size"Alan Alpert2011-01-121-6/+4
| | | | | | | | | | This reverts commit d91eb7728beea99eb347293c89500cfa03814208. Need to consult on the expected behavior before fixing this one.
* | Merge branch 'qtquick11' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Alan Alpert2011-01-121-0/+1
|\ \
| * | QDeclarativeDebug: Hardcode version when serializing Qt typesKai Koehne2011-01-111-0/+1
| | | | | | | | | | | | | | | | | | | | | Make sure that e.g. QtCreator compiled with 4.7 can debug a program compiled with 4.8. Reviewed-by: Christiaan Janssen
* | | Don't use implicitSize when calculating implicit sizeAlan Alpert2011-01-121-4/+6
|/ / | | | | | | | | | | | | | | Width/height ended up getting trapped at <0 in this fillMode if only one of witdh/height was explicit. Task-number: QTBUG-16389 Reviewed-by: Michael Brasser
* | Add methods to position view at beginning or end.Martin Jones2011-01-115-108/+220
| | | | | | | | | | | | | | Takes into account header/footer. Task-number: QTBUG-16213 Reviewed-by: Michael Brasser
* | Fix Qt.formatTime() to accept QTime valuesBea Lam2011-01-111-22/+64
| | | | | | | | | | | | | | QScriptValue::toDateTime() does not work for QTime values. Task-number: QTBUG-16492 Reviewed-by: Michael Brasser
* | set() and setProperty() should not always trigger change signalsBea Lam2011-01-115-42/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix set() and setProperty() to only trigger itemsChanged(), and the the <property>Changed signals for items returned by get(), if the new value is different from the old one. The exception to this are list values, as it is inefficient to check the sublists and also the model classes are due to be revised. This also fixes models used with a WorkerScript to emit itemsChanged() with the correct roles. Task-number: QTBUG-14620 Reviewed-by: Michael Brasser
* | Add versioning for new Flickable methods.Martin Jones2011-01-112-3/+3
| | | | | | | | Task-number: QTBUG-15148
* | Disable dragging text in TextEdit.Andrew den Exter2011-01-111-0/+1
| | | | | | | | | | | | | | | | Add a dragEnabled property to QTextControl so text dragging can optionally be disabled. Task-number: QTBUG-16248 Reviewed-by: Martin Jones
* | Add property versioning checks for QtQuick 1.1 deselect() functionJoona Petrell2011-01-103-3/+6
| | | | | | | | | | Task-number: QTBUG-16059 Reviewed-by: Martin Jones
* | Add selection modes to TextEdit and TextInput.Andrew den Exter2011-01-104-17/+187
| | | | | | | | | | | | | | | | | | Add an overload for moveCursorSelection which takes a parameter specifying whether to update the selection with individual characters or whole words. Task-number: QTBUG-16283 Reviewed-by: Martin Jones
* | Add missing Qt namespaces macros to qdeclarativeapplication.cpp source fileJoona Petrell2011-01-071-0/+4
| | | | | | | | | | Task-number: Reviewed-by: Aaron Kennedy
* | Add layoutDirection property to Qt.application elementJoona Petrell2011-01-072-2/+33
| | | | | | | | | | Task-number: QTBUG-16424 Reviewed-by: Martin Jones
* | Introduce Qt.application.active propertyJoona Petrell2011-01-075-0/+210
| | | | | | | | | | | | | | Replaces qmlviewer's runtime.activeWindow property. Task-number: QTBUG-13351 Reviewed-by: Martin Jones
* | Group all QtQuick 1.1 registrations togetherMartin Jones2011-01-071-8/+7
| | | | | | | | Task-number: QTBUG-15279