mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
27 lines
356 B
C++
27 lines
356 B
C++
#ifndef QQTAPP_H
|
|
#define QQTAPP_H
|
|
|
|
#include <QApplication>
|
|
|
|
class QQTApp : public QApplication
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit QQTApp(int &argc, char **argv);
|
|
virtual ~QQTApp();
|
|
|
|
void setTheme();
|
|
|
|
void setLanguage();
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
void slotUPanAutoRun(int status);
|
|
|
|
private:
|
|
QTranslator* language;
|
|
};
|
|
|
|
#endif // QQTAPP_H
|