dde-dock/frame/util/horizontalseperator.h

24 lines
470 B
C
Raw Normal View History

// SPDX-FileCopyrightText: 2011 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#ifndef HORIZONTALSEPERATOR_H
#define HORIZONTALSEPERATOR_H
#include <QWidget>
class HorizontalSeperator : public QWidget
{
Q_OBJECT
public:
explicit HorizontalSeperator(QWidget *parent = nullptr);
QSize sizeHint() const override;
protected:
void paintEvent(QPaintEvent *e) override;
};
#endif // HORIZONTALSEPERATOR_H