mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
39 lines
962 B
C++
39 lines
962 B
C++
#ifndef DIALOGINSTRUCTORS_H
|
|
#define DIALOGINSTRUCTORS_H
|
|
|
|
#include <QDialog>
|
|
#include <QTreeWidget>
|
|
#include "databaseinstructors.h"
|
|
#include "instructorsview.h"
|
|
|
|
namespace Ui {
|
|
class EditorInstructors;
|
|
}
|
|
|
|
//Диалог для просмотра и управления БД Инструкторов
|
|
|
|
class EditorInstructors : /*public QDialog,*/ public InstructorsView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit EditorInstructors(DataBaseInstructors* db, bool adminMode = false, QWidget *parent = nullptr);
|
|
~EditorInstructors();
|
|
|
|
private Q_SLOTS:
|
|
void on_btnNewInstructor_clicked();
|
|
void on_btnDeleteInstructor_clicked();
|
|
void on_btnToOrFromArchive_clicked();
|
|
void on_btnEdit_clicked();
|
|
void on_btnArchive_clicked();
|
|
void on_treeWidget_currentItemChanged(QTreeWidgetItem *current, QTreeWidgetItem *previous);
|
|
|
|
private:
|
|
void setCurrentInstructor(QString name);
|
|
|
|
private:
|
|
Ui::EditorInstructors *ui;
|
|
};
|
|
|
|
#endif // DIALOGINSTRUCTORS_H
|