summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets/qlineedit_p.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Cursor would remain in a non-focused QLineEdit after clearing its selectionGabriel de Dietrich2010-03-091-1/+1
| | | | | | | | QLineEditPrivate::_q_selectionChanged() did not take into account whether the widget had focus. Reviewed-by: Olivier Task-number: QTBUG-8634
* QLineEdit shows leftovers of edit cursor after clear()Prasanth Ullattil2010-02-231-1/+1
| | | | | | | | | The commit 0568fb9f428a84a344baaa5c53395db4b99f082c introduced this regression. Make sure that we have text in the lineedit before showing the cursor. Task-number: QTBUG-7826 Reviewed-by: Olivier Goffart
* Update copyright year to 2010Jason McDonald2010-01-061-1/+1
| | | | Reviewed-by: Trust Me
* Merge remote branch 'staging/4.6' into 4.6Simon Hausmann2009-12-171-1/+16
|\
| * Text cursor is not shown properly in line edits on Mac OS X.Prasanth Ullattil2009-12-161-1/+16
| | | | | | | | | | | | | | | | | | | | | | The mac stlye disables the blinking cursor when there is a selection in the line edit. The cursor is not shown back when this selection is removed (either by mouse or key press events). This patch watches the selection changed signal from the line control and updates the cursor status accordingly. Task-number: QTBUG-6378 Reviewed-by: Olivier Goffart
* | Enabled input method update code for all platforms.axis2009-12-151-2/+0
| | | | | | | | | | These don't have to be platform specific. RevBy: Trust me
* | Can't delete selected characters from FEP using backspace touch button.Tero Saarni2009-12-101-0/+5
|/ | | | | | | | | | | When selection was deleted, the changes where not updated on virtual keyboard. Added new connection to notify when text has changed. Task-number: QTBUG-4847 Reviewed-by: Markku Luukkainen Merge-request: 2149 Signed-off-by: axis <qt-info@nokia.com>
* QCompleter wouldn't emit highlighted() and activated() signalsGabriel de Dietrich2009-12-031-3/+3
| | | | | | | | Completion was checked before sending the textEdited() signal from QLineEdit. The behaviour has been reverted as in 4.5. Reviewed-by: aalpert Task-number: QTBUG-6386
* Ran the script utils/normalizeOlivier Goffart2009-11-181-9/+9
| | | | Over src/ tools/ examples/ and demos/
* Fixed QLineEdit to pass the tst_QLineEdit::displayText() autotest.Kim Motoyoshi Kalland2009-09-151-1/+4
| | | | | | Fetch the correct password character from the style. Reviewed-by: Olivier
* Update license headers again.Jason McDonald2009-09-091-4/+4
| | | | Reviewed-by: Trust Me
* Update tech preview license header for files that are new in 4.6.Jason McDonald2009-08-311-13/+13
| | | | Reviewed-by: Trust Me
* QLineEdit: reenable the delete action from the context menuThierry Bastian2009-08-261-8/+0
| | | | | | | We now need to connect to the slot in the QLineControl and not to the slot of the QLineEdit (the QLineEdit slot is now also removed). Reviewed-by: Alan Alpert
* Merge commit 'qt/master'Jason Barron2009-08-181-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/src/examples.qdoc doc/src/plugins-howto.qdoc doc/src/topics.qdoc examples/phonon/musicplayer/mainwindow.cpp src/3rdparty/freetype/src/base/ftobjs.c src/corelib/global/qglobal.h src/corelib/tools/qalgorithms.h src/corelib/tools/qshareddata.cpp src/corelib/tools/qsharedpointer.cpp src/corelib/tools/tools.pri src/corelib/xml/qxmlstream.h src/gui/painting/painting.pri src/gui/widgets/qdatetimeedit.cpp tests/auto/qdesktopservices/qdesktopservices.pro tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp tests/auto/qtextcodec/test/test.pro
| * Use the correct font for QLineEditPaul Olav Tvete2009-08-131-0/+1
| | | | | | | | | | | | | | We don't get a FontChange event initially, so the control ended up with the default font instead. Reviewed-by: Andreas
* | Merge branch 'fixCursorLagInVK'axis2009-08-171-0/+2
|\ \ | |/ |/|
| * Fix the cursor lagging one step behind in the Virtual Keyboard UI.axis2009-08-171-0/+2
| | | | | | | | | | | | | | | | | | | | | | This was caused by the widget not calling update on the input context after changes to the cursor position. This is a reimplementation of 8d1691e9395, after the QLineControl refactoring. RevBy: Trust me AutoTest: Passed
* | Update contact URL in license headers.Jason McDonald2009-08-121-1/+1
|/ | | | Reviewed-by: Trust Me
* Make QLineEdit cursor blink againAlan Alpert2009-08-061-0/+3
| | | | | | | Somehow forgot to hook up the blinking signal (in the new QLineControl) to QLineEdit. Reviewed-by: Trust Me
* Compile Fix for QT_KEYPAD_NAVIGATIONAlan Alpert2009-08-061-0/+12
|
* Fix obsolete license headersJason McDonald2009-08-041-2/+2
| | | | Reviewed-by: Trust Me
* Move QLineEdit logic into QLineControlAlan Alpert2009-07-291-0/+253
Manually merged from the kinetic repository, where it has been used for a while. Like QTextControl, there is no auto test for the control, just for the widgets built with it. The purpose of this change is so that we can build stuff like QLineEdit in other places (like kinetic). Also included is a trivial change to QValidator, needed to use it with QLineControl in QML. Reviewed-by: mbm