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

30 lines
370 B
C
Raw Normal View History

2016-12-29 16:49:18 +08:00
#ifndef QQTDIALOG_H
#define QQTDIALOG_H
#include <QDialog>
namespace Ui {
class QQTDialog;
}
/**
* @brief QSS
*/
class QQTDialog : public QDialog
{
Q_OBJECT
public:
explicit QQTDialog(QWidget *parent = 0);
~QQTDialog();
private:
Ui::QQTDialog *ui;
// QWidget interface
protected:
void paintEvent(QPaintEvent *);
};
#endif // QQTDIALOG_H