summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativetextedit
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote branch 'qt/master' into file-engine-refactorJoão Abecasis2010-11-232-1/+26
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: demos/declarative/minehunt/minehunt.pro src/corelib/io/io.pri src/corelib/io/qfsfileengine.cpp src/corelib/io/qfsfileengine_unix.cpp src/corelib/io/qfsfileengine_win.cpp src/s60installs/bwins/QtCoreu.def src/s60installs/bwins/QtDeclarativeu.def src/s60installs/bwins/QtGuiu.def src/s60installs/eabi/QtCoreu.def src/s60installs/eabi/QtDeclarativeu.def src/s60installs/eabi/QtGuiu.def tests/auto/qapplication/test/test.pro tests/auto/qaudioinput/qaudioinput.pro tests/auto/qaudiooutput/qaudiooutput.pro tests/auto/qchar/qchar.pro tests/auto/qdiriterator/qdiriterator.pro tests/auto/qsound/qsound.pro
| * Merge remote branch 'origin/4.7' into qt-master-from-4.7Olivier Goffart2010-10-151-0/+25
| |\ | | | | | | | | | | | | | | | | | | | | | Conflicts: src/gui/painting/qpaintengine_raster.cpp tests/auto/declarative/qdeclarativetext/data/alignments_cb.png tests/auto/declarative/qdeclarativetext/data/alignments_cc.png tests/auto/declarative/qdeclarativetext/data/alignments_ct.png
| | * Bug: TextEdit ignores plain text format when pasting textYann Bodson2010-10-121-0/+25
| | | | | | | | | | | | | | | Task-number: QTBUG-14003 Reviewed-by: Michael Brasser
| * | Align .pro with qmake: s/\.sources/.files/.Miikka Heikkinen2010-10-081-1/+1
| |/ | | | | | | | | | | | | | | | | | | Complement previous commit by aligning Qt itself to use .files consistently for DEPLOYMENT as well as INSTALLS. This excludes changes to webkit. Task-number: QTBUG-3216 Reviewed-by: axis
* | Fix deployment for examples and testsShane Kearns2010-10-121-1/+1
|/ | | | | | | | | | | Due to the change from default deployment in symbian from being hardcoded in qmake to being in default_deployment.prf the .pro files needed to be changed. Specifically, "DEPLOYMENT = foo" needs to be "DEPLOYMENT += foo" otherwise the default deployment lines are not added and the test won't install. Reviewed-By: Miikka Heikkinen
* Replace all occurances of "Qt 4.7" with "QtQuick 1.0"Aaron Kennedy2010-09-2918-49/+49
| | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones
* Simplify type management codeAaron Kennedy2010-08-271-1/+1
|
* Make QML tests compile on OpenSolarisMartin Jones2010-08-191-1/+1
| | | | Task-number: QTBUG-13003
* Fix TextEdit text attribute and text stored in the internal QTextDocument ↵Joona Petrell2010-07-221-0/+34
| | | | | | | having different contents Task-number: QTBUG-12339 Reviewed-by: Martin Jones
* QML focus API updates.Michael Brasser2010-07-211-14/+14
| | | | | | | | | 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
* Fix Mac CIJoona Petrell2010-07-121-0/+12
|
* Add copy(), cut() and paste() support to TextInputJoona Petrell2010-07-121-0/+35
| | | | | 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-3/+3
| | | | | | | | | | | | 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
* More generated images in anticipation of QT-3574Warwick Allison2010-07-071-10/+18
|
* Fix TextEdit with no color property defined is drawn with wrong colorJoona Petrell2010-07-061-0/+18
| | | | | Task-number: QTBUG-11932 Reviewed-by: Martin Jones
* Prepare for QTest persistent store for visual tests.Warwick Allison2010-07-051-22/+22
|
* Fix TextEdit bitmap tests testing the wrong elementJoona Petrell2010-07-021-1/+1
| | | | | Task-number: Reviewed-by: Martin Jones
* Fix TextInput text getting improperly clippedJoona Petrell2010-07-021-1/+4
| | | | | Task-number: QTBUG-11790 Reviewed-by: Martin Jones
* Test only on X11, not only on Linux (which includes embedded).Warwick Allison2010-06-251-2/+2
|
* Force font selection (and so ensure visual test passes).Warwick Allison2010-06-2511-2/+7
|
* Use ugly but reliable bitmaps fonts in test.Warwick Allison2010-06-2410-0/+1
|
* Fix and better test Text / TextEdit alignments.Warwick Allison2010-06-2311-0/+96
| | | | | | Various clipping and refresh bugs. Task-number: QTBUG-11492
* Make declarative autotests compile on Symbian abld build systemJoona Petrell2010-06-082-3/+6
| | | | | Task-number: Reviewed-by: Martin Jones
* Remove unnecessary CloseSoftwareInputPanel events after TextEdit or ↵Joona Petrell2010-06-071-26/+47
| | | | | | | TextInput has lost focus Task-number: Reviewed-by: Warwick Allison
* Fix regression in input panel autotestsJoona Petrell2010-06-071-1/+6
|
* Improve input panel handling in declarative demos and examplesJoona Petrell2010-06-031-6/+0
| | | | | Task-number: QTBUG-11157 Reviewed-by: Warwick Allison
* Take into account platform differences in input panel supportJoona Petrell2010-06-021-15/+68
| | | | | Task-number: Reviewed-by: Warwick Allison
* Simplify selection setting. Make TextInput more like TextEdit.Warwick Allison2010-05-311-28/+11
| | | | | | By making selectionStart/End read-only, and adding adding select(). Task-number: QTBUG-11056
* Active window focus gain should not open virtual keypadJoona Petrell2010-05-281-2/+11
| | | | | Task-number: Reviewed-by: Martin Jones
* Open input panel on press if TextInput or TextEdit are already focused but ↵Joona Petrell2010-05-261-0/+9
| | | | | | | 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-15/+70
| | | | | | | TextEdit elements Task-number: QTBUG-10841 Reviewed-by: Warwick Allison
* FixWarwick Allison2010-05-251-4/+4
|
* Fix test. Missed files.Warwick Allison2010-05-203-0/+21
|
* Disable mouse-based selection in TextInput/TextEditWarwick Allison2010-05-191-0/+45
| | | | | | | | 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
* Symbian build fix to declarative auto and benchmark testsJoona Petrell2010-05-141-1/+8
| | | | | Task-number: QTBUG-9491 Reviewed-by: Martin Jones
* Fix TextEdit and TextInput input panel support for mode ↵Joona Petrell2010-05-131-3/+8
| | | | | | | RSIP_OnMouseClickAndAlreadyFocused Task-number: Reviewed-by: Warwick Allison
* Round ideal width up to prevent incorrect word wrapping on Mac OS XAaron Kennedy2010-05-111-2/+2
| | | | QTBUG-10539
* Call QDeclarativeItem::geometryChanged() base implementationAaron Kennedy2010-05-062-1/+24
|
* Fix versioning of Qt Declarative's in-built typesAlan Alpert2010-04-2112-12/+12
| | | | | | Since we aren't releasing for 4.6, all types are new in 4.7. Task-number: QTBUG-10081
* Emit runtime warnings through QDeclarativeEngineAaron Kennedy2010-04-191-1/+1
| | | | QTBUG-9726
* Rename remaining import Qt 4.6 lines to import Qt 4.7Joona Petrell2010-04-141-30/+30
| | | | | Task-number: Reviewed-by: Martin Jones
* Fix and test remote root component with qmldir-specified content.Warwick Allison2010-04-132-22/+41
| | | | 6ed43975f6733265b8b91b00a9a212076d896ef9 was not correct fix (just invalidated the test)
* TextEdit::wrap changed to TextEdit::wrapMode enumerationMartin Jones2010-04-091-3/+3
|
* Replace "property var " with "property variant " in QML codeAaron Kennedy2010-04-092-2/+2
|
* Fix qdeclarativetextedit::delegateLoading autotestLeonardo Sobral Cunha2010-03-222-0/+5
| | | | After d039e2e8307, this test broke because of restricted remote imports.
* Clairify a comment in one of the auto tests.Alan Alpert2010-03-031-2/+2
|
* Ensure error is received - the root object is INITIALLY zero.Warwick Allison2010-03-031-0/+2
|
* Change autotest class prefix from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX ↵Leonardo Sobral Cunha2010-02-241-24/+24
| | | | to QDeclarativeXXX.
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-2414-0/+948
QDeclarativeXXX.