diff options
Diffstat (limited to 'gui/widgets/LineSeparator.h')
-rw-r--r-- | gui/widgets/LineSeparator.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gui/widgets/LineSeparator.h b/gui/widgets/LineSeparator.h deleted file mode 100644 index 9546e747..00000000 --- a/gui/widgets/LineSeparator.h +++ /dev/null @@ -1,18 +0,0 @@ -#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::Horizontal); - QSize sizeHint() const; - void paintEvent(QPaintEvent *); - void initStyleOption(QStyleOption *option) const; -private: - Qt::Orientation m_orientation = Qt::Horizontal; -}; |