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