18 lines
366 B
C
18 lines
366 B
C
![]() |
#ifndef SARIBBONSEPARATORWIDGET_H
|
|||
|
#define SARIBBONSEPARATORWIDGET_H
|
|||
|
#include "SARibbonGlobal.h"
|
|||
|
#include <QFrame>
|
|||
|
#include <QStyleOption>
|
|||
|
|
|||
|
///
|
|||
|
/// \brief 用于显示分割线
|
|||
|
///
|
|||
|
class SA_RIBBON_EXPORT SARibbonSeparatorWidget : public QFrame
|
|||
|
{
|
|||
|
Q_OBJECT
|
|||
|
public:
|
|||
|
SARibbonSeparatorWidget(QWidget* parent = nullptr);
|
|||
|
};
|
|||
|
|
|||
|
#endif // SARIBBONSEPARATORWIDGET_H
|