65 lines
1.4 KiB
C++
65 lines
1.4 KiB
C++
#ifndef DLGCONNHIDWIFISECTLS_H
|
|
#define DLGCONNHIDWIFISECTLS_H
|
|
|
|
#include <QDialog>
|
|
#include <QMouseEvent>
|
|
|
|
namespace Ui {
|
|
class DlgConnHidWifiSecTls;
|
|
}
|
|
|
|
class DlgConnHidWifiSecTls : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DlgConnHidWifiSecTls(int type, QWidget *parent = 0);
|
|
~DlgConnHidWifiSecTls();
|
|
|
|
public slots:
|
|
void changeDialogSecu();
|
|
void changeDialogAuth();
|
|
|
|
private slots:
|
|
void on_btnCancel_clicked();
|
|
|
|
void on_btnConnect_clicked();
|
|
|
|
void on_checkBoxCA_stateChanged(int arg1);
|
|
|
|
void on_checkBoxPwd_stateChanged(int arg1);
|
|
|
|
void on_checkBoxPwdSec_stateChanged(int arg1);
|
|
|
|
void on_leNetName_textEdited(const QString &arg1);
|
|
|
|
void on_leIdentity_textEdited(const QString &arg1);
|
|
|
|
void on_leDomain_textEdited(const QString &arg1);
|
|
|
|
void on_leCaPwd_textEdited(const QString &arg1);
|
|
|
|
void on_leUserCertifyPwd_textEdited(const QString &arg1);
|
|
|
|
void on_leUserKeyPwd_textEdited(const QString &arg1);
|
|
|
|
void on_cbxCA_currentIndexChanged(const QString &arg1);
|
|
|
|
void on_cbxUserCertify_currentIndexChanged(const QString &arg1);
|
|
|
|
void on_cbxUserPriKey_currentIndexChanged(const QString &arg1);
|
|
|
|
private:
|
|
Ui::DlgConnHidWifiSecTls *ui;
|
|
int WepOrWpa = 0;//0 WEP;1WPA
|
|
|
|
void mousePressEvent(QMouseEvent *event);
|
|
void mouseReleaseEvent(QMouseEvent *event);
|
|
void mouseMoveEvent(QMouseEvent *event);
|
|
bool isPress;
|
|
QPoint winPos;
|
|
QPoint dragPos;
|
|
};
|
|
|
|
#endif // DLGCONNHIDWIFISECTLS_H
|