-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroupeditor.h
More file actions
38 lines (30 loc) · 808 Bytes
/
Copy pathgroupeditor.h
File metadata and controls
38 lines (30 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef GROUPEDITOR_H
#define GROUPEDITOR_H
#include <QDialog>
#include"Entity.h"
namespace Ui {
class GroupEditor;
}
class GroupEditor : public QDialog
{
Q_OBJECT
public:
explicit GroupEditor(QWidget *parent = nullptr, Group* = nullptr, School* = nullptr);
~GroupEditor();
private slots:
void on_Savebutton_clicked();
void fillComboboxes();
void on_Disqualifybuttondelegate_clicked();
void on_DisqualifybuttonSubdelegate_clicked();
void on_pushButton_clicked();
void on_DeleteGroupButton_clicked();
void on_ChangeGroupButton_clicked();
public: signals:
void GroupHasBeenChanged( int newGroup);
void deletegroup();
private:
Ui::GroupEditor *ui;
Group* group;
School* school;
};
#endif // GROUPEDITOR_H