diff options
author | Petr Mrázek <peterix@gmail.com> | 2014-05-17 16:23:48 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2014-05-17 16:23:48 +0200 |
commit | 8a8c4193e6ee7cd55870ef8495cb7cc3b9534e02 (patch) | |
tree | ad53f17dde79b5c23534c7b0e869852f94a66d84 /gui/widgets/LineSeparator.h | |
parent | 927217c7f06017db23b232f055dd5343e39d871f (diff) | |
download | MultiMC-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/LineSeparator.h')
-rw-r--r-- | gui/widgets/LineSeparator.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gui/widgets/LineSeparator.h b/gui/widgets/LineSeparator.h new file mode 100644 index 00000000..376f2056 --- /dev/null +++ b/gui/widgets/LineSeparator.h @@ -0,0 +1,18 @@ +#pragma once +#include <QWidget> + +class QStyleOption; + +class LineSeparator : public QWidget +{ + Q_OBJECT + +public: + /// Create a line separator. orientation is the orientation of the line. + explicit LineSeparator(QWidget *parent, Qt::Orientation orientation = Qt::Vertical); + QSize sizeHint() const; + void paintEvent(QPaintEvent *); + void initStyleOption(QStyleOption *option) const; +private: + Qt::Orientation m_orientation = Qt::Vertical; +}; |