-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmmainwindow.h
50 lines (41 loc) · 1 KB
/
mmainwindow.h
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
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef MMAINWINDOW_H
#define MMAINWINDOW_H
#include <QMainWindow>
#include <QGraphicsEffect>
#include <QDebug>
#include <QMdiSubWindow>
#include <QtSql>
#include <QMessageBox>
#include <QStringList>
#include <QFileDialog>
#include <QPrinter>
#include <QPdfWriter>
#include <QPrinter>
#include "mabiturtablewindow.h"
#include "othertableswindow.h"
#include "mestablishmenteditdialog.h"
namespace Ui {
class mMainWindow;
}
class mMainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit mMainWindow(QWidget *parent = 0);
~mMainWindow();
private:
Ui::mMainWindow * ui;
enum educ_typ {och, zch};
enum educ_form {buj, com};
public slots:
void openAbiturientsTable ();
void openDisciplineTable();
void openSpecialitiesTable();
void openSpecialitiesSetsTable();
void openBenefitsTable();
void openDocumentTypesTable();
void startRange();
void printOrder(educ_typ typ, educ_form form, QString path);
void openEstablishmentDialog();
};
#endif // MMAINWINDOW_H