mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
30 lines
370 B
C++
Executable File
30 lines
370 B
C++
Executable File
#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
|