You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
#ifndef _LPSYSTEMCONFIG_H_
|
|
|
|
|
|
#define _LPSYSTEMCONFIG_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
#include "ui_lpSystemConfigUI.h"
|
|
|
|
|
|
//ϵͳ<CFB5><CDB3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҳ<EFBFBD><D2B3>
|
|
|
|
|
|
class lpSystemConfigUI : public QWidget
|
|
|
|
|
|
{
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
lpSystemConfigUI(QWidget *parent = Q_NULLPTR);
|
|
|
|
|
|
~lpSystemConfigUI();
|
|
|
|
|
|
signals:
|
|
|
|
|
|
void sgUpdateInfo();
|
|
|
|
|
|
void sgLanguageChange(QString);
|
|
|
|
|
|
protected:
|
|
|
|
|
|
Q_SLOT void onButtonClicked();
|
|
|
|
|
|
virtual void showEvent(QShowEvent *event);
|
|
|
|
|
|
virtual void timerEvent(QTimerEvent *event);
|
|
|
|
|
|
private:
|
|
|
|
|
|
Ui::lpSystemConfigUI ui;
|
|
|
|
|
|
int m_timerID{ 0 };
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|