You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
424 B
25 lines
424 B
#ifndef DP4LOGINWIDGET_H
|
|
#define DP4LOGINWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
class Dp4LoginWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Dp4LoginWidget(QWidget *parent = nullptr);
|
|
~Dp4LoginWidget();
|
|
|
|
private:
|
|
void Logon();
|
|
void ResetPassword();
|
|
void initUi();
|
|
|
|
private:
|
|
class QComboBox *m_environment;
|
|
class QLineEdit *m_username;
|
|
class QLineEdit *m_password;
|
|
};
|
|
|
|
#endif // TESTWIDGET_H
|
|
|