PrismLauncher/launcher/ui/widgets/LineSeparator.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
471 B
C
Raw Normal View History

2014-05-17 15:23:48 +01:00
#pragma once
#include <QWidget>
class QStyleOption;
class LineSeparator : public QWidget {
2014-05-17 15:23:48 +01:00
Q_OBJECT
public:
2014-05-17 15:23:48 +01:00
/// Create a line separator. orientation is the orientation of the line.
explicit LineSeparator(QWidget* parent, Qt::Orientation orientation = Qt::Horizontal);
2014-05-17 15:23:48 +01:00
QSize sizeHint() const;
void paintEvent(QPaintEvent*);
void initStyleOption(QStyleOption* option) const;
private:
Qt::Orientation m_orientation = Qt::Horizontal;
2014-05-17 15:23:48 +01:00
};