summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativetextinput.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Alan Alpert2010-04-141-2/+2
|\
* | Add QML documentation for validatorsAlan Alpert2010-04-141-9/+70
|/ | | | | | | Note that regExp doesn't have a type, and so it is 'documented' as string. Task-number: QTBUG-9412
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Alan Alpert2010-04-121-20/+185
|\ | | | | | | | | | | Conflicts: src/declarative/graphicsitems/qdeclarativetextinput.cpp src/declarative/graphicsitems/qdeclarativetextinput_p.h
| * Improve font value type documentation.Yann Bodson2010-04-121-1/+103
| |
| * Make the TextInput element nicer. It has scrolling.Alexis Menard2010-04-091-18/+81
| | | | | | | | | | | | | | | | | | | | | | | | The TextInput has support for scrolling now so it's quite usable. You can deactivate the auto scrolling with a property if you want to do crazy animation while scrolling. This commit also fixed several bugs with the current implementation especially regarding aligments : selection was broken, moving the cursor also -> fixed. I have also added a tiny fix when the TextInput lost the focus -> the selection is cleared. Task-number:QT-2745 Reviewed-by:Michael Brasser
| * Replace "import Qt 4.6" with "import Qt 4.7"Michael Brasser2010-04-081-1/+1
| |
* | Add some TextInput properties and methodsAlan Alpert2010-04-121-1/+82
|/ | | | | | | | | | | | | | | | | | Adds the properties -passwordCharacter -displayText And the method -moveCursorSelection(int pos) These just provide a QML way to access existing QLineControl functionality, and are necessary to create desktop style LineEdits (the existing TextInput QML API was designed with a focus on touch input LineEdits) Includes tests and documentation. Task-number: QT-321 Reviewed-by: Aaron Kennedy
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-2/+2
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Make sure cursor delegate is parented.Michael Brasser2010-03-291-0/+2
| | | | setParentItem no longer sets QObject parent.
* Remove Q prefix from the validators.Michael Brasser2010-03-261-8/+9
|
* Changing the alignment property should trigger a repaint.Alexis Menard2010-03-231-0/+1
| | | | | | | Just clear the cache when the property changes. Task-number:QTBUG-8155 Reviewed-by:Yann Bodson
* Fix default values on TextinputAlan Alpert2010-03-171-0/+3
| | | | Task-number: BAUHAUS-389
* Make QDeclarativeItem NOTIFY signals canonicalJoona Petrell2010-03-091-5/+5
| | | | | Task-number: QTBUG-7193 Reviewed-by: akennedy
* Fix IM repaint.Warwick Allison2010-03-011-0/+2
| | | | Task-number: QT-448
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+913
QDeclarativeXXX.