mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
18 lines
288 B
C++
18 lines
288 B
C++
#ifndef HORIZONTALSEPARATOR_H
|
|
#define HORIZONTALSEPARATOR_H
|
|
|
|
#include <QWidget>
|
|
|
|
class HorizontalSeparator : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit HorizontalSeparator(QWidget *parent = 0);
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *e);
|
|
};
|
|
|
|
#endif // HORIZONTALSEPARATOR_H
|