mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
37 lines
824 B
C++
37 lines
824 B
C++
#ifndef DIALOGAUTHORIZATIONINSTRUCTOR_H
|
|
#define DIALOGAUTHORIZATIONINSTRUCTOR_H
|
|
|
|
#include <QDialog>
|
|
#include "instructorsAndTrainees_global.h"
|
|
//#include "ui_dialogauthorizationinstructor.h"
|
|
|
|
namespace Ui {
|
|
class DialogAuthorizationInstructor;
|
|
}
|
|
|
|
class INSTRUCTORSANDTRAINEES_EXPORT DialogAuthorizationInstructor : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DialogAuthorizationInstructor(QWidget *parent = nullptr);
|
|
~DialogAuthorizationInstructor();
|
|
|
|
public:
|
|
QString getLogin();
|
|
void setLogin(QString login);
|
|
|
|
QString getPassword();
|
|
void setPassword(QString password);
|
|
|
|
private slots:
|
|
void on_btnLogIn_clicked();
|
|
void on_btnViewPassword_pressed();
|
|
void on_btnViewPassword_released();
|
|
|
|
private:
|
|
Ui::DialogAuthorizationInstructor *ui;
|
|
};
|
|
|
|
#endif // DIALOGAUTHORIZATIONINSTRUCTOR_H
|