summaryrefslogtreecommitdiff
path: root/utils/themeeditor/graphics/rbtext.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/graphics/rbtext.h')
-rw-r--r--utils/themeeditor/graphics/rbtext.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/themeeditor/graphics/rbtext.h b/utils/themeeditor/graphics/rbtext.h
index 936a809f6c..b4d9ae3c54 100644
--- a/utils/themeeditor/graphics/rbtext.h
+++ b/utils/themeeditor/graphics/rbtext.h
@@ -34,9 +34,13 @@ public:
34 void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, 34 void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
35 QWidget *widget); 35 QWidget *widget);
36 36
37 int realWidth(){ return image->width(); }
38 void setOffset(int offset){ this->offset = offset; }
39
37private: 40private:
38 QImage* image; 41 QImage* image;
39 int maxWidth; 42 int maxWidth;
43 int offset;
40 44
41}; 45};
42 46