summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxtextedit.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Doc cleanup.Yann Bodson2009-08-171-83/+7
|
* Get rid of QmlFont and use the QFont value type instead.Michael Brasser2009-08-141-23/+20
|
* Make calling base class focusChanged a protocol.Warwick Allison2009-08-141-1/+1
|
* Fix to QFxWebView to show cursor in focused text input. Correction textedit ↵Tapani Mikola2009-08-141-0/+1
| | | | and lineedit so that they emit focuschanged signals. Clean ups to webbrowser.qml.
* Rename layouts to positionersAlan Alpert2009-08-131-1/+1
|
* Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-08-121-2/+15
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Cleanup QFxLineEdit APIAlan Alpert2009-08-111-1/+1
| | | | | | | | | | | | | | Synchronized properties with a previous discussion and with QFxTextEdit. Note that not all properties are fully implemented yet. This commit also fixes a typo in QFxTextEdit.
| * DocumentationYann Bodson2009-08-101-1/+14
| |
* | Change key handling to use a Keys attached property.Martin Jones2009-08-121-14/+5
|/ | | | | Replaces KeyAction, allowing focus to be set on the actual item that wants focus, rather than a separate handler item.
* Move the 'smooth' property to QFxItemYann Bodson2009-08-031-1/+1
| | | | | Items currently using it are QFxImage, QFxText, QFxLineEdit, QFxTextEdit and QFxPaintedItem.
* More QFxItem cleanup.Michael Brasser2009-07-301-2/+2
|
* remove itemParent() and related.Lars Knoll2009-07-291-1/+1
| | | | | Consistently use parentItem() as it is consistent with the naming in QGraphicsItem.
* Allow span of versions to be defined, not just one.Warwick Allison2009-07-231-1/+1
| | | | Span is from version where introduced (all 4.6) to current QT_VERSION.
* Move all QML types to Qt/4.6 namespace.Warwick Allison2009-07-231-1/+1
| | | | | Adjust examples and demos accordingly. As per QT-558
* Remove an unused method in QFxItemLars Knoll2009-07-221-9/+0
| | | | | propertyInfo was not used by anything, let's just get rid of it.
* CompileEskil Abrahamsen Blomfeldt2009-07-171-8/+8
| | | | | Change 6626a9 broke compilation because several files indirectly depended on a #include that was removed.
* Fix warnings.Michael Brasser2009-07-151-1/+1
|
* Cleanup in preparation for key/focus handling.Michael Brasser2009-07-131-1/+0
|
* Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-07-101-5/+243
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui-gv Conflicts: examples/itemviews/frozencolumn/main.cpp src/declarative/canvas/qsimplecanvas.cpp src/declarative/canvas/qsimplecanvas_p.h src/declarative/canvas/qsimplecanvasitem.h src/declarative/extra/qfxparticles.cpp src/declarative/fx/fx.pri src/declarative/fx/qfxblurfilter.h src/declarative/fx/qfxcontentwrapper.cpp src/declarative/fx/qfxflickable.cpp src/declarative/fx/qfxfocuspanel.h src/declarative/fx/qfxfocusrealm.h src/declarative/fx/qfxhighlightfilter.cpp src/declarative/fx/qfxhighlightfilter.h src/declarative/fx/qfximage.cpp src/declarative/fx/qfxitem.cpp src/declarative/fx/qfxitem.h src/declarative/fx/qfxrect.cpp src/declarative/fx/qfxreflectionfilter.h src/declarative/fx/qfxshadowfilter.cpp src/declarative/fx/qfxshadowfilter.h src/declarative/fx/qfxtext.cpp src/declarative/fx/qfxtext.h src/declarative/fx/qfxtextedit.cpp src/declarative/opengl/glbasicshaders.h src/declarative/test/qfxtestengine.cpp src/declarative/test/qfxtestengine.h src/declarative/test/qfxtestobjects.cpp src/declarative/test/qfxtestobjects.h src/declarative/test/qfxtestview.h src/declarative/util/qfxglobal.h src/declarative/util/qfxview.cpp src/gui/graphicsview/qgraphicsitem_p.h tools/qmlviewer/qmlviewer.cpp
| * Fix QFxTextEdit cursorDelegate auto test properlyAlan Alpert2009-07-091-2/+3
| | | | | | | | Also fixes the minor bug that it found.
| * Fix QFxTextEdit cursor delegate for multi-line and font changesAlan Alpert2009-07-091-0/+5
| | | | | | | | They weren't handled before, and now they are.
| * Tests for QFxTextEdit selection propertiesAlan Alpert2009-07-091-0/+4
| | | | | | | | | | | | Also fixes some bugs that the tests uncovered. Also fixes the test, which was using a now invalid QmlComponent Constructor.
| * selectionStart/End now work properlyAlan Alpert2009-07-091-19/+13
| | | | | | | | Autotests still in progress
| * Implement selectedText, selectionStart and selectionEnd properties.Alan Alpert2009-07-081-0/+117
| | | | | | | | | | Still to go: Setting the selectionStart/End properties doesn't work and there are no autotests.
| * Add highlightedTextColor property to the QFxTextEdit sophisticateAlan Alpert2009-07-081-0/+30
| |
| * Add Cursor Delegate to QFxTextEditAlan Alpert2009-07-081-0/+70
| | | | | | | | | | Adds the cursorDelegate property, including docs and autotest. No example is included because we don't really have a text example yet.
| * Add textFormat property to the Text element.Michael Brasser2009-07-061-1/+1
| |
| * Make TextEdit's cursor position usable from Qml.Michael Brasser2009-07-061-1/+20
| |
| * Make performance logging classes private.Michael Brasser2009-07-021-1/+1
| |
* | Merge branch 'kinetic-declarativeui' into kinetic-declarativeui-gvAaron Kennedy2009-06-241-1/+0
|\ \ | |/ | | | | | | | | | | Conflicts: src/declarative/canvas/qsimplecanvasitem.cpp src/declarative/canvas/qsimplecanvasitem_p.h src/declarative/fx/qfxwebview.cpp
| * Only objects or lists of objects can be default properties.Michael Brasser2009-06-221-1/+0
| |
* | Remove simple canvasAaron Kennedy2009-06-231-10/+0
| |
* | Remove OpenGL support from Fluid UI primitivesAaron Kennedy2009-06-191-4/+0
|/
* Use standard cursor control for TextEdit.Michael Brasser2009-06-121-2/+4
|
* Resize TextEdit as text changes if no explicit width has been set.Michael Brasser2009-06-031-0/+4
|
* Handle double clicks in TextEdit.Michael Brasser2009-06-021-0/+12
|
* Add textMargin property and more flexible key handling to TextEditMichael Brasser2009-06-011-2/+32
|
* Check if the text has really changed before emitting theMichael Brasser2009-05-311-0/+2
| | | | textChanged signal.
* Remove extraneous semicolons.Martin Jones2009-05-261-1/+1
| | | | Caused massive number of warnings with winscw
* Add a preserveSelection property to TextEdit.Michael Brasser2009-05-211-0/+22
| | | | | This property will allow us to get line edit-like behavior, where the selection is removed when the item loses focus.
* Pass ShortcutOverride event through SimpleCanvas to QFxTextEditKai Koehne2009-05-201-0/+14
| | | | | | In Bauhaus we have a global shortcut associated with the Del key. This prevents the global shortcut from capturing the Del key while editing in a text edit field.
* no need to translate graphics events to regular onesLars Knoll2009-05-191-36/+3
| | | | | QTextControl can handle graphics mouse events directly, no need to translate them to regular mouse events.
* TextEdit fixes and improvements.Michael Brasser2009-05-121-0/+23
| | | | | Get cursor blinking working again. Add focusOnPress to make it easy to gain focus when the mouse is pressed.
* Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-05-111-2/+0
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Remove debug.Michael Brasser2009-05-111-2/+0
| |
* | highlight color propertyWarwick Allison2009-05-081-0/+30
|/
* Allow control of cursor and of selection.Warwick Allison2009-05-081-6/+36
| | | | | This allows components to implement look&feel such as select-all-on-focus, and to blink the cursor even when it is a proxy that actually has focus.
* Use focus property, not active focus for control focusIan Walters2009-05-071-16/+8
| | | | | | | | ActiveFocus is misleading in QML, between KeyProxy and FocusRealm, an item with focus, but not activeFocus could still get keys. focus means 'I want key events'. Hence if focus is true, blink the cursor.
* Rename QFxImageItem to QFxPaintedItem.Ian Walters2009-05-051-10/+10
| | | | Done to avoid confusion with QFxImage and QFxAnimatedImage(Item)
* docWarwick Allison2009-05-011-29/+40
|