1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/demo/QQtRoseMonitor/qqtosdform.h

31 lines
521 B
C
Raw Permalink Normal View History

2018-07-01 18:47:31 +08:00
#ifndef QQTOSDFORM_H
#define QQTOSDFORM_H
#include <QQtWidget>
namespace Ui {
class QQtOsdForm;
}
class QQtOsdForm : public QQtWidget
{
Q_OBJECT
public:
explicit QQtOsdForm ( QWidget* parent = 0 );
~QQtOsdForm();
private:
Ui::QQtOsdForm* ui;
// QWidget interface
protected:
virtual void paintEvent ( QPaintEvent* event ) override;
// QWidget interface
protected:
virtual void mousePressEvent ( QMouseEvent* event ) override;
};
#endif // QQTOSDFORM_H