From 48ee36f6b2bcb9d25eec298dda2e77878ab321e1 Mon Sep 17 00:00:00 2001 From: Konstantinos Sideris Date: Sun, 18 Mar 2018 17:38:57 +0200 Subject: Add border in community list & minor refactorings (#204) --- include/UserInfoWidget.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'include/UserInfoWidget.h') diff --git a/include/UserInfoWidget.h b/include/UserInfoWidget.h index 5e0ed85b..ea2d5400 100644 --- a/include/UserInfoWidget.h +++ b/include/UserInfoWidget.h @@ -28,6 +28,8 @@ class UserInfoWidget : public QWidget { Q_OBJECT + Q_PROPERTY(QColor borderColor READ borderColor WRITE setBorderColor) + public: UserInfoWidget(QWidget *parent = 0); @@ -37,6 +39,9 @@ public: void reset(); + QColor borderColor() const { return borderColor_; } + void setBorderColor(QColor &color) { borderColor_ = color; } + signals: void logout(); @@ -63,4 +68,6 @@ private: QImage avatar_image_; int logoutButtonSize_; + + QColor borderColor_; }; -- cgit 1.5.1