diff options
Diffstat (limited to 'utils/themeeditor/graphics/rbscreen.h')
| -rw-r--r-- | utils/themeeditor/graphics/rbscreen.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/themeeditor/graphics/rbscreen.h b/utils/themeeditor/graphics/rbscreen.h index f244089..78bbcfd 100644 --- a/utils/themeeditor/graphics/rbscreen.h +++ b/utils/themeeditor/graphics/rbscreen.h @@ -38,6 +38,9 @@ public: void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget); + int getWidth() const{ return width; } + int getHeight() const{ return height; } + static QString safeSetting(ProjectModel* project, QString key, QString fallback) { @@ -49,6 +52,7 @@ public: static QColor stringToColor(QString str, QColor fallback); + private: int width; int height; |