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.
32 lines
448 B
C++
32 lines
448 B
C++
#pragma once
|
|
|
|
#include "iDlgBase.h"
|
|
#include "mGuiSysManager_global.h"
|
|
|
|
namespace Ui {
|
|
class iWxLangSwap;
|
|
}
|
|
|
|
class M_GUI_SYSMANAGER_EXPORT iWxLangSwap : public iDlgBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit iWxLangSwap(QWidget *parent = 0);
|
|
~iWxLangSwap();
|
|
|
|
virtual void initUI();
|
|
|
|
private slots:
|
|
|
|
void slotRadioClicked();
|
|
|
|
void on_btnOK_clicked();
|
|
void on_btnCancel_clicked();
|
|
|
|
private:
|
|
|
|
Ui::iWxLangSwap *ui;
|
|
};
|