diff options
Diffstat (limited to 'examples/GuiClient/avatarWidget.h')
| -rw-r--r-- | examples/GuiClient/avatarWidget.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/GuiClient/avatarWidget.h b/examples/GuiClient/avatarWidget.h new file mode 100644 index 00000000..1b81d41e --- /dev/null +++ b/examples/GuiClient/avatarWidget.h @@ -0,0 +1,14 @@ +#ifndef AVATARWIDGET_H
+#define AVATARWIDGET_H
+
+#include <QPushButton>
+
+class avatarWidget : public QPushButton
+{
+public:
+ avatarWidget(QWidget* parent = 0);
+ void paintEvent(QPaintEvent* event);
+ QSize sizeHint() const;
+};
+
+#endif // AVATARWIDGET_H
|
