2014-05-17 19:53:48 +05:30
|
|
|
#pragma once
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
class QStyleOption;
|
|
|
|
|
|
|
|
class LineSeparator : public QWidget
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2014-05-17 19:53:48 +05:30
|
|
|
|
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
/// 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;
|
2014-05-17 19:53:48 +05:30
|
|
|
private:
|
2018-07-15 18:21:05 +05:30
|
|
|
Qt::Orientation m_orientation = Qt::Horizontal;
|
2014-05-17 19:53:48 +05:30
|
|
|
};
|