vnote/libs/vtitlebar/src/vtitlebar.h
Le Tan 52702a32e9 hard days for VNoteX project
Never say "refactor" again!!!
2020-11-28 23:10:43 +08:00

20 lines
320 B
C++

#ifndef VTITLEBAR_H
#define VTITLEBAR_H
#include <QWidget>
namespace vnotex
{
class VTitleBar : public QWidget
{
Q_OBJECT
public:
explicit VTitleBar(QWidget *p_parent = nullptr);
protected:
void paintEvent(QPaintEvent *p_event) Q_DECL_OVERRIDE;
};
}
#endif // VTITLEBAR_H