diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-05-08 03:09:56 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-05-08 03:09:56 (GMT) |
commit | beab75abef7dfb221418ca3b3e04e918f175d32f (patch) | |
tree | ba879816151b44791822aa8840f0451b3e5fad67 /src/declarative/fx/qfxtextedit.h | |
parent | 6597cb980c484c11554314d8db63c6dd4edcd887 (diff) | |
download | Qt-beab75abef7dfb221418ca3b3e04e918f175d32f.zip Qt-beab75abef7dfb221418ca3b3e04e918f175d32f.tar.gz Qt-beab75abef7dfb221418ca3b3e04e918f175d32f.tar.bz2 |
highlight color property
Diffstat (limited to 'src/declarative/fx/qfxtextedit.h')
-rw-r--r-- | src/declarative/fx/qfxtextedit.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/declarative/fx/qfxtextedit.h b/src/declarative/fx/qfxtextedit.h index 068a25a..5d95cd1 100644 --- a/src/declarative/fx/qfxtextedit.h +++ b/src/declarative/fx/qfxtextedit.h @@ -69,6 +69,7 @@ class Q_DECLARATIVE_EXPORT QFxTextEdit : public QFxPaintedItem Q_PROPERTY(QString text READ text WRITE setText NOTIFY textChanged) Q_PROPERTY(QColor color READ color WRITE setColor) + Q_PROPERTY(QColor highlightColor READ highlightColor WRITE setHighlightColor) Q_PROPERTY(QmlFont * font READ font) Q_PROPERTY(HAlignment hAlign READ hAlign WRITE setHAlign) Q_PROPERTY(VAlignment vAlign READ vAlign WRITE setVAlign) @@ -111,6 +112,9 @@ public: QColor color() const; void setColor(const QColor &c); + QColor highlightColor() const; + void setHighlightColor(const QColor &c); + HAlignment hAlign() const; void setHAlign(HAlignment align); |