summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativetextinput.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove pointless \internal docs (that contain no information)Aaron Kennedy2010-08-271-2/+0
|
* Repaint TextInput when password character changes in password modeJoona Petrell2010-08-171-5/+13
| | | | | Task-number: QTBUG-12838 Reviewed-by: Martin Jones
* qdoc: Reorganized the QML elements table to be a dictionary...Martin Smith2010-08-161-0/+4
| | | | ...and a set of functional group pages.
* Fix compilation - disable TextInput when QT_NO_LINEEDIT is definedTasuku Suzuki2010-07-291-0/+4
| | | | | Merge-request: 739 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
* QML focus API updates.Michael Brasser2010-07-211-22/+22
| | | | | | | | | The wantsFocus property has been renamed to activeFocus, to better reflect its value. Reading and writing the focus property is also now consistent -- this property represents focus within a scope. Other small changes were made to keep things consistent with the new naming. Reviewed-by: Aaron Kennedy
* font.letterSpacing used percentage rather than absolute values.Martin Jones2010-07-211-2/+1
| | | | | | | ... and percentage is useless. Task-number: QTBUG-12282 Reviewed-by: Warwick Allison
* Fix TextInput selectionColor or selectedTextColor -based animationsJoona Petrell2010-07-131-0/+4
| | | | | Task-number: QTBUG-12115 Reviewed-by: Martin Jones
* Add copy(), cut() and paste() support to TextInputJoona Petrell2010-07-121-0/+36
| | | | | Task-number: QTBUG-12086 Reviewed-by: Michael Brasser
* Make Text, TextInput, and TextEdit all have the same size for the same text.Warwick Allison2010-07-071-15/+16
| | | | | | | | | | | | This may mean that the cursor is to the right of the width, so components should cater for that with a margin if they are boxed / clipped. TextInput used to try to account for right bearing (and left bearing incorrectly since it added it on the right). This is removed. Potentially this means that for some fonts the text repaints incorrectly on the left or right, but if that is the case Text and TextEdit already had such a problem (undetected), and all will need fixing. Task-number: QTBUG-11983
* Fix input methods for TextInput elements with key handlersJoona Petrell2010-07-061-0/+1
| | | | | Task-number: QTBUG-10297 Reviewed-by: Martin Jones
* Fix TextInput text getting improperly clippedJoona Petrell2010-07-021-19/+27
| | | | | Task-number: QTBUG-11790 Reviewed-by: Martin Jones
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-06-301-1/+1
|\
| * Docs - add more links to relevant examplesBea Lam2010-06-301-1/+1
| | | | | | | | Task-number: QTBUG-11754
* | Remove the old font.outline documentationMartin Jones2010-06-301-6/+0
|/ | | | | | | Text.style is the correct property, and this has never been available in TextInput or TextEdit. Task-number: QTBUG-11828
* Remove an unnecessary connect() in TextInputMartin Jones2010-06-291-3/+1
|
* Ensure micro focus is updated in TextEdit and TextInputMartin Jones2010-06-291-4/+4
| | | | Task-number: QTBUG-11552
* Handle TextInput inputMethodEvent() properlyMartin Jones2010-06-221-2/+17
| | | | | Follow the pattern of other text input classes and QML key handling classes.
* Write TextInput.positionToRectangle docs.Alan Alpert2010-06-161-3/+9
| | | | | | Also renamed the argument to be more accurate. Task-number: QTBUG-11168
* Fix autoScroll implementationAlan Alpert2010-06-161-35/+53
| | | | | | | | | | | 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
* Remove duplicated code.Michael Brasser2010-06-151-7/+1
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-06-121-30/+31
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '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. ...
| * Doc improvements, including snippet fixes, linking to examples, makingBea Lam2010-06-111-9/+16
| | | | | | | | docs more consistent
| * 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 unnecessary CloseSoftwareInputPanel events after TextEdit or ↵Joona Petrell2010-06-071-19/+8
| | | | | | | | | | | | | | TextInput has lost focus Task-number: Reviewed-by: Warwick Allison
| * Improve input panel handling in declarative demos and examplesJoona Petrell2010-06-031-1/+1
| | | | | | | | | | Task-number: QTBUG-11157 Reviewed-by: Warwick Allison
* | 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
* Take into account platform differences in input panel supportJoona Petrell2010-06-021-50/+67
| | | | | Task-number: Reviewed-by: Warwick Allison
* More autoScroll fixesWarwick Allison2010-06-021-2/+17
| | | | Task-number: QTBUG-11143
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-06-011-0/+2
|\
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-06-011-17/+37
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: Fix example code and image Fix doc Fix some bugs in the QML Web Browser buttons Fix zoom bug in QML Web Browser demo Fix Typo Various doc fixes and improvements Document issues with rectangle border width of 1 where clipping is used Simplify selection setting. Make TextInput more like TextEdit.
| * \ Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into ↵Qt Continuous Integration System2010-05-311-0/+2
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2: (21 commits) Doc: Fixed an off-by-one error in an example. Fix QT_NO_TEXTHTMLPARSER Fix QT_NO_DOM Fix QT_NO_TEXTSTREAM compilation errors. Fix QT_NO_VALIDATOR compilation. Doc: Removed a misleading sentence about a class constructor. Doc: correcting docs in QDrag::exec Doc: Adding note about QDrag::exec() Revert behavior of QTextLayout::boundingRect() when line width is set Fix unreasonably large width of QTextLayout::boundingRect() Doc: replacing old image Fix compilation with stricts compilers. Fix QT_NO_DIRMODEL build error in QtDeclarative. Revert "Added native key support to QSharedMemory API." Revert "Improved documentation for QSharedMemory's key/setKey functions." Fix a simple mistake in QXmlStreamReader::atEnd() docs. Improved documentation for QSharedMemory's key/setKey functions. Added native key support to QSharedMemory API. Make test work with shadow builds again. Doc: Corrected the documentation about the compression threshold. ...
| | * | Fix QT_NO_VALIDATOR compilation.Tasuku Suzuki2010-05-311-0/+2
| | | | | | | | | | | | | | | | | | | | Merge-request: 648 Reviewed-by: Andreas Aardal Hanssen <andreas.aardal.hanssen@nokia.com>
* | | | Fix positionAt when autoScroll is use.Warwick Allison2010-06-011-1/+1
| |_|/ |/| | | | | | | | Task-number: QTBUG-11054
* | | Simplify selection setting. Make TextInput more like TextEdit.Warwick Allison2010-05-311-17/+37
|/ / | | | | | | | | | | By making selectionStart/End read-only, and adding adding select(). Task-number: QTBUG-11056
* | Add selection methods to TextEditWarwick Allison2010-05-301-2/+2
|/ | | | | | | | Sufficient to allow different selection look and feel (see whacky example) Task-number: QTBUG-10968 Reviewed-by: Michael Brasser Reviewed-by: Alan Alpert
* Active window focus gain should not open virtual keypadJoona Petrell2010-05-281-1/+1
| | | | | Task-number: Reviewed-by: Martin Jones
* Open input panel on press if TextInput or TextEdit are already focused but ↵Joona Petrell2010-05-261-0/+5
| | | | | | | panel has been closed Task-number: Reviewed-by: Martin Jones
* Add a way to control when software input panels are shown in TextInput and ↵Joona Petrell2010-05-261-7/+124
| | | | | | | TextEdit elements Task-number: QTBUG-10841 Reviewed-by: Warwick Allison
* Mention TextInput/Edit::selectByMouse property in QmlChanges.Martin Jones2010-05-251-1/+1
|
* Add inherits Item to TextEdit and TextInput docs.Martin Jones2010-05-251-1/+2
| | | | Task-number: QTBUG-10969
* Disable mouse-based selection in TextInput/TextEditWarwick Allison2010-05-191-2/+34
| | | | | | | | Can still be turned back on, if people only want to target platforms where the behaviour is acceptable. Task-number: QTBUG-10684 Reviewed-by: Michael Brasser
* Focus should be applied to focus scopes all the way up the chain, notBea Lam2010-05-171-3/+1
| | | | just to the closest focus scope parent.
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-05-171-1/+1
|\
| * Add \brief to TextInputBea Lam2010-05-171-1/+1
| |
* | Add a "priority" property to Keys and KeyNavigationMartin Jones2010-05-141-0/+3
|/ | | | | | Allows intercepting keys before or after normal item key processing. Task-number: QTBUG-10467
* Fix TextEdit and TextInput input panel support for mode ↵Joona Petrell2010-05-131-4/+12
| | | | | | | RSIP_OnMouseClickAndAlreadyFocused Task-number: Reviewed-by: Warwick Allison
* Correctly position any input method popups for TextInput.Michael Brasser2010-05-121-0/+2
| | | | Reviewed-by: alexis
* Correctly resize TextInput in the presence of preedit text.Michael Brasser2010-05-121-3/+1
| | | | | Task-number: QTBUG-10466 Reviewed-by: alexis
* Prevent handling of Up/Down on Mac OS X, for consistency with other platforms.Warwick Allison2010-05-101-2/+7
| | | | Task-number: QTBUG-10438