summaryrefslogtreecommitdiffstats
path: root/src/declarative
Commit message (Collapse)AuthorAgeFilesLines
* Stopping a flick resulted in the next click being consumed.Martin Jones2010-06-181-0/+1
| | | | | Task-number: QTBUG-11390 (cherry picked from commit cfbca0bd925b76fff533dc093c67ad72dbd73de5)
* Fix autoScroll implementationAlan Alpert2010-06-182-35/+54
| | | | | | | | | | | | The scrolling should not be calculated inside the paint event, this leads to some incorrect behaviour. It is now calculated separately when needed. Patch actually written by Alexis, and I reviewed it. Task-number: QTBUG-11127 Reviewed-by: Alexis Ménard (cherry picked from commit bc4c5a2d9c5d3841948bc4443f2229d8d6ec0e95)
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-06-1254-579/+939
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (53 commits) ListView.onRemove animation is not played when the list has only one item. Move listview/itemlist.qml to a separate visualitemmodel example Make snapping work properly for highlight ranges > item size Fix test - sizeHint should not change after initial load. Also use Minor doc fixes Doc improvements, including snippet fixes, linking to examples, making Fix qmlviewer test failure on windows Do not keep flush timer running once no pixmaps are detached. Avoid recursive refill() in List/GridView Make snippet compile and pass license test, and add missing snippet file Remove accidentaly added characters. Update on color change. Update on color change. Add go button to webbrowser example. Remove 'XXX Experimental' from VisualItemModel/VisualDataModel and Document attached properties Add 'on' prefix to documentation of signals Stablize qmlviewer test Improve test stability. qmlviewer: ensure that only clicks on the current file list are handled. ...
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-06-111-0/+2
| |\
| | * Move listview/itemlist.qml to a separate visualitemmodel exampleBea Lam2010-06-111-0/+2
| | |
| * | ListView.onRemove animation is not played when the list has only one item.Martin Jones2010-06-112-2/+2
| |/ | | | | | | Task-number: QTBUG-11285
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-06-1117-122/+211
| |\
| | * Minor doc fixesBea Lam2010-06-117-8/+11
| | |
| | * Doc improvements, including snippet fixes, linking to examples, makingBea Lam2010-06-1113-114/+200
| | | | | | | | | | | | docs more consistent
| * | Make snapping work properly for highlight ranges > item sizeMartin Jones2010-06-112-28/+84
| |/ | | | | | | | | | | | | Snapping was only being applied to the current item when it was at a highlight range boundary. Task-number: QTBUG-11304
| * Avoid recursive refill() in List/GridViewMartin Jones2010-06-112-20/+12
| | | | | | | | Task-number: QTBUG-11362
| * Update on color change.Warwick Allison2010-06-101-0/+1
| | | | | | | | Task-number: QTBUG-11330
| * Update on color change.Warwick Allison2010-06-101-1/+5
| | | | | | | | Task-number: QTBUG-11330
| * Remove 'XXX Experimental' from VisualItemModel/VisualDataModel andBea Lam2010-06-102-11/+0
| | | | | | | | Package
| * Document attached propertiesBea Lam2010-06-104-3/+22
| |
| * Add 'on' prefix to documentation of signalsBea Lam2010-06-101-1/+1
| |
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-06-0914-253/+156
| |\
| | * Doc improvements: move some example code to snippets, add screenshots,Bea Lam2010-06-0911-218/+106
| | | | | | | | | | | | other minor doc fixes
| | * Move some example code into snippets/ and add other doc fixesBea Lam2010-06-096-37/+52
| | |
| * | Fix crash when changing ListView model with highlightRangeMode: ↵Martin Jones2010-06-092-4/+12
| |/ | | | | | | | | | | ListView.StrictlyEnforceRange Task-number: QTBUG-11328
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-06-097-8/+46
| |\
| | * Small optimization when checking if MouseArea's onPressAndHold isMichael Brasser2010-06-092-3/+3
| | | | | | | | | | | | being used.
| | * Fix drawing flicker on Qml Viewer startupJoona Petrell2010-06-093-4/+19
| | | | | | | | | | | | | | | Task-number: QTBUG-10251 and QTBUG-11156 Reviewed-by: Martin Jones
| | * Add qmlmethod Item::childAt() to delarative itemmae2010-06-082-1/+24
| | | | | | | | | | | | | | | | | | The method allows for more flexbile mouse and touch handling. It offers a fast way to identify a child item for a given pixel position.
| * | Fix GridView bounds behavior with snapping enabled.Martin Jones2010-06-091-5/+11
| |/ | | | | | | Task-number: QTBUG-11299
| * Don't layout multiple times when an ancestor becomes (in)visible.Martin Jones2010-06-082-13/+21
| | | | | | | | | | | | | | It is also only necessary to omit positioning an item if it is explicitly not visible. Task-number: QTBUG-11236
| * Keep reported point/pixel size in sync.Michael Brasser2010-06-072-0/+14
| | | | | | | | | | | | | | This allows you to, for example, bind to a Text's font.pixelSize, even if one was never explicitly set. Task-number: QTBUG-11111
| * Remove unnecessary CloseSoftwareInputPanel events after TextEdit or ↵Joona Petrell2010-06-074-40/+16
| | | | | | | | | | | | | | TextInput has lost focus Task-number: Reviewed-by: Warwick Allison
| * Ensure state operations assigned to the default state are triggeredMichael Brasser2010-06-074-3/+12
| | | | | | | | | | | | when returning to that state. Task-number: QTBUG-11228
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-06-0414-71/+317
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: Move QListModelInterface into util. Ensure ParticleMotionGravity always pulls in the right direction. Remove version ifdefs from Particles; only 4.7 is supported. Update docs for the runtime.orientation values Revert to Portrait/Landscape terminology for Orientation enum, with Add more Q_AUTOTEST_EXPORTs Improve input panel handling in declarative demos and examples Always integer align anchor center points Add header and footer to GridView
| | * Move QListModelInterface into util.Michael Brasser2010-06-045-10/+4
| | | | | | | | | | | | Get rid of src/declarative/3rdparty.
| | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-06-039-61/+313
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: Add more Q_AUTOTEST_EXPORTs Improve input panel handling in declarative demos and examples Always integer align anchor center points Add header and footer to GridView
| | | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Aaron Kennedy2010-06-032-2/+2
| | | |\
| | | | * Improve input panel handling in declarative demos and examplesJoona Petrell2010-06-032-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Task-number: QTBUG-11157 Reviewed-by: Warwick Allison
| | | * | Add more Q_AUTOTEST_EXPORTsAaron Kennedy2010-06-033-46/+49
| | | |/
| | | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Aaron Kennedy2010-06-033-1/+226
| | | |\
| | | | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-06-031-1/+1
| | | | |\
| | | | * | Add header and footer to GridViewMartin Jones2010-06-033-1/+226
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also document them for both ListView and GridView Task-number: QTBUG-11191
| | | * | | Always integer align anchor center pointsAaron Kennedy2010-06-031-12/+36
| | | | |/ | | | |/| | | | | | | | | | | | | | | | This dramatically reduces the number of items that are half pixel aligned and thus render poorly.
* | | | | For an empty line edit the cursor position is depending on input languageLars Knoll2010-06-091-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ensure the cursor is on the right if the keyboard layout is for a right to left language. Task-number: Part of Qt-3292 Reviewed-by: Simon Hausmann
* | | | | small optimisationLars Knoll2010-06-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Don't use fromLocal8Bit() when comparing an ascii string to a QString, use QLatin1String.
* | | | | Allow to build Qt in static with mingwThierry Bastian2010-06-071-1/+1
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some functions were marked with Q_DECL_IMPORT where they should just be Q_CORE_EXPORT. The reason is that this macro is expanded to nothing in case of static builds whereas Q_DECL_IMPORT isn't (it is a dllimport). That leads the linker to try to import it and it shouldn't. Task-number: QTBUG-10791 Reviewed-by: gabi
* | | | Fix QT_NO_CLIPBOARDTasuku Suzuki2010-06-042-1/+4
|/ / / | | | | | | | | | | | | Merge-request: 658 Reviewed-by: Andreas Aardal Hanssen <andreas.aardal.hanssen@nokia.com>
* | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-06-033-3/+3
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (30 commits) Revert "Split Symbian bearer plugin into three platform specfic plugins" Don't poll non-polling engines when configurations are in use. Doc: updating images Fix a corner case where a gesture sometimes doesn't start. write PO files without duplicated message ids my changes Fix failing bypassShaping autotest on the Mac OS X More Pixmap cache key optimizations QNAM: Improve child deletion order QSslCertificate: support large serial numbers Split Symbian bearer plugin into three platform specfic plugins Doc: adding offline docs to assistant and Qt Creator. Improving small docs and adding highlighting Some optimizations for QImage::load() fix setRawData() Fix QML crashes on the N900 doc: Added DITA XML generator Fix build failure on Symbian 3.1. Add the Qt::TextBypassShaping flag. QTextEngine: skip an unnecessary call to GetDeviceCaps on Windows. Add my 4.7.0 changes ...
| * | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-06-013-3/+3
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: doc: Added DITA XML generator Fix build failure on Symbian 3.1. Add the Qt::TextBypassShaping flag. QTextEngine: skip an unnecessary call to GetDeviceCaps on Windows. Add my 4.7.0 changes qdoc: Added DITA XML generator doc: Fixed confusing ownership issue. update Russian translations for Qt tools update Russian translation for Qt libraries QXmlSchema documentation correction doc: Changed last breadcrumb to not be a link. doc: Fixed reference to setSize(), which is in QRectF. QNetworkCookie: do not accept cookies with non-alNum domain QtDeclarative: Remove trailing commas in enums Doc: MonotonicClock is obviously monotonic
| | * \ Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-06-013-3/+3
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: Add the Qt::TextBypassShaping flag. QTextEngine: skip an unnecessary call to GetDeviceCaps on Windows. Add my 4.7.0 changes qdoc: Added DITA XML generator doc: Fixed confusing ownership issue. update Russian translations for Qt tools update Russian translation for Qt libraries QXmlSchema documentation correction doc: Changed last breadcrumb to not be a link. doc: Fixed reference to setSize(), which is in QRectF. QNetworkCookie: do not accept cookies with non-alNum domain QtDeclarative: Remove trailing commas in enums Doc: MonotonicClock is obviously monotonic
| | | * | QtDeclarative: Remove trailing commas in enumsThiago Macieira2010-05-313-3/+3
| | | | |
* | | | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Aaron Kennedy2010-06-031-0/+1
|\ \ \ \ \ | | |_|_|/ | |/| | |
| * | | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-06-037-10/+10
| |\ \ \ \
| * | | | | Ensure PathView mappedRange is updated when pathItemCount changes.Martin Jones2010-06-031-0/+1
| | | | | |