-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainFrame.hpp
58 lines (48 loc) · 1.75 KB
/
MainFrame.hpp
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
51
52
53
54
55
56
57
58
#pragma once
#include <cstddef>
#include <chrono>
#include <ctime>
#include <iomanip>
#include <sstream>
#include <wx/colour.h>
#include <wx/gdicmn.h>
#include <wx/app.h>
#include <wx/frame.h>
#include <wx/wxprec.h>
#include <wx/string.h>
#include <wx/menu.h>
#include <wx/msgdlg.h>
#include "SubWindows/Mitarbeiterverwaltung.hpp"
#include "Tools/SubWindow.hpp"
#include "SubWindows/Zeiterfassung.hpp"
#include "SubWindows/Zeituebersicht.hpp"
#include "SubWindows/Mitarbeiteranlage.hpp"
#include "SubWindows/Mitarbeiterverwaltung.hpp"
#include "SubWindows/Benutzereinstellungen.hpp"
#include "SubWindows/Abwesenheiten.hpp"
#include "SubWindows/Tarife.hpp"
enum class sub{
Zeiterfassung,Austragen, Uebersicht, Mitarbeiteranlage, Verwaltung, Benutzereinstellungen, Tarifeinstellungen, Summe_aller_fenster
};
//Für wxWidgets muss(?) es ein einfaches Enum sein
enum{
ID_Zeiterfassung = 1,ID_Austragen, ID_Uebersicht, ID_Mitarbeiteranlage, ID_Verwaltung, ID_Benutzereinstellungen, ID_Tarifeinstellungen
};
class MainFrame: public wxFrame{
public:
MainFrame(const wxString& title, const wxPoint& pos, const wxSize& size, cppDatabase* DB);
~MainFrame();
private:
SubWindow* Subwindows[(int)sub::Summe_aller_fenster];
cppDatabase* db;
void OnExit(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event);
void on_zeit(wxCommandEvent& event);
void on_austragen(wxCommandEvent& event);
void on_show_times(wxCommandEvent& event);
void on_new_employee(wxCommandEvent& event);
void on_edit_employee(wxCommandEvent& event);
void on_edit_employee_settings(wxCommandEvent& event);
void on_edit_tarife(wxCommandEvent& event);
wxDECLARE_EVENT_TABLE();
};