diff options
author | Alexis Menard <alexis.menard@nokia.com> | 2010-02-08 07:45:44 (GMT) |
---|---|---|
committer | Alexis Menard <alexis.menard@nokia.com> | 2010-02-08 07:45:44 (GMT) |
commit | 78fce53374d4aad0e51d7086268579913c19a1ac (patch) | |
tree | cce07d5037fc4f405ce8ca255d31faecfbe9fddd /src/declarative/graphicsitems/qmlgraphicstextinput_p.h | |
parent | e5c58224e1ebbfc6cdac3e2f611d71c6654b3642 (diff) | |
download | Qt-78fce53374d4aad0e51d7086268579913c19a1ac.zip Qt-78fce53374d4aad0e51d7086268579913c19a1ac.tar.gz Qt-78fce53374d4aad0e51d7086268579913c19a1ac.tar.bz2 |
The virtual keyboard is now working for TextEdit and TextInput components.
In order to show the virtual keyboard we need to send
RequestSoftwareInputPanel. I also fixed TextInput regarding the
inputQuery implementation.
Task-number:QTBUG-7602
Reviewed-by:akennedy
Diffstat (limited to 'src/declarative/graphicsitems/qmlgraphicstextinput_p.h')
-rw-r--r-- | src/declarative/graphicsitems/qmlgraphicstextinput_p.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/declarative/graphicsitems/qmlgraphicstextinput_p.h b/src/declarative/graphicsitems/qmlgraphicstextinput_p.h index 24e473d..56f16a5 100644 --- a/src/declarative/graphicsitems/qmlgraphicstextinput_p.h +++ b/src/declarative/graphicsitems/qmlgraphicstextinput_p.h @@ -164,6 +164,8 @@ public: bool hasAcceptableInput() const; void drawContents(QPainter *p,const QRect &r); + QVariant inputMethodQuery(Qt::InputMethodQuery property) const; + Q_SIGNALS: void textChanged(); void cursorPositionChanged(); @@ -191,6 +193,7 @@ protected: const QRectF &oldGeometry); void mousePressEvent(QGraphicsSceneMouseEvent *event); + void mouseReleaseEvent(QGraphicsSceneMouseEvent *event); void keyPressEvent(QKeyEvent* ev); bool event(QEvent *e); |