summaryrefslogtreecommitdiffstats
path: root/gui/widgets/IconLabel.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2014-05-17 16:23:48 +0200
committerPetr Mrázek <peterix@gmail.com>2014-05-17 16:23:48 +0200
commit8a8c4193e6ee7cd55870ef8495cb7cc3b9534e02 (patch)
treead53f17dde79b5c23534c7b0e869852f94a66d84 /gui/widgets/IconLabel.h
parent927217c7f06017db23b232f055dd5343e39d871f (diff)
downloadMultiMC-8a8c4193e6ee7cd55870ef8495cb7cc3b9534e02.tar
MultiMC-8a8c4193e6ee7cd55870ef8495cb7cc3b9534e02.tar.gz
MultiMC-8a8c4193e6ee7cd55870ef8495cb7cc3b9534e02.tar.lz
MultiMC-8a8c4193e6ee7cd55870ef8495cb7cc3b9534e02.tar.xz
MultiMC-8a8c4193e6ee7cd55870ef8495cb7cc3b9534e02.zip
Finish status pills.
Diffstat (limited to 'gui/widgets/IconLabel.h')
-rw-r--r--gui/widgets/IconLabel.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/gui/widgets/IconLabel.h b/gui/widgets/IconLabel.h
new file mode 100644
index 00000000..a2f1eef3
--- /dev/null
+++ b/gui/widgets/IconLabel.h
@@ -0,0 +1,26 @@
+#pragma once
+#include <QWidget>
+#include <QIcon>
+
+class QStyleOption;
+
+/**
+ * This is a trivial widget that paints a QIcon of the specified size.
+ */
+class IconLabel : public QWidget
+{
+ Q_OBJECT
+
+public:
+ /// Create a line separator. orientation is the orientation of the line.
+ explicit IconLabel(QWidget *parent, QIcon icon, QSize size);
+
+ virtual QSize sizeHint() const;
+ virtual void paintEvent(QPaintEvent *);
+
+ void setIcon(QIcon icon);
+
+private:
+ QSize m_size;
+ QIcon m_icon;
+};