61 lines
1.3 KiB
C
61 lines
1.3 KiB
C
|
#ifndef DLGCONNHIDWIFISECTUNNELTLS_H
|
||
|
#define DLGCONNHIDWIFISECTUNNELTLS_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QMouseEvent>
|
||
|
|
||
|
namespace Ui {
|
||
|
class DlgConnHidWifiSecTunnelTLS;
|
||
|
}
|
||
|
|
||
|
class DlgConnHidWifiSecTunnelTLS : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit DlgConnHidWifiSecTunnelTLS(int type, QWidget *parent = 0);
|
||
|
~DlgConnHidWifiSecTunnelTLS();
|
||
|
|
||
|
public slots:
|
||
|
void changeDialogSecu();
|
||
|
void changeDialogAuth();
|
||
|
|
||
|
private slots:
|
||
|
void on_btnCancel_clicked();
|
||
|
|
||
|
void on_btnConnect_clicked();
|
||
|
|
||
|
void on_cbxCA_currentIndexChanged(const QString &arg1);
|
||
|
|
||
|
void on_checkBoxPwd_stateChanged(int arg1);
|
||
|
|
||
|
void on_checkBoxCA_stateChanged(int arg1);
|
||
|
|
||
|
void on_checkBoxPwdSec_stateChanged(int arg1);
|
||
|
|
||
|
void on_leNetName_textEdited(const QString &arg1);
|
||
|
|
||
|
void on_leAnonyId_textEdited(const QString &arg1);
|
||
|
|
||
|
void on_leDomain_textEdited(const QString &arg1);
|
||
|
|
||
|
void on_leCaPwd_textEdited(const QString &arg1);
|
||
|
|
||
|
void on_leUserName_textEdited(const QString &arg1);
|
||
|
|
||
|
void on_lePwd_textEdited(const QString &arg1);
|
||
|
|
||
|
private:
|
||
|
Ui::DlgConnHidWifiSecTunnelTLS *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 // DLGCONNHIDWIFISECTUNNELTLS_H
|