-
Notifications
You must be signed in to change notification settings - Fork 0
/
muehleMain.h
49 lines (38 loc) · 1.13 KB
/
muehleMain.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
/***************************************************************
* Name: muehleMain.h
* Purpose: Defines Application Frame
* Author: ()
* Created: 2017-04-10
* Copyright: ()
* License:
**************************************************************/
#ifndef MUEHLEMAIN_H
#define MUEHLEMAIN_H
//(*Headers(muehleFrame)
#include <wx/frame.h>
#include <wx/menu.h>
#include <wx/statusbr.h>
//*)
class muehleFrame: public wxFrame
{
public:
muehleFrame(wxWindow* parent,wxWindowID id = -1);
virtual ~muehleFrame();
private:
//(*Handlers(muehleFrame)
void OnQuit(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event);
void OnPaint(wxPaintEvent& event);
void OnLeftDown(wxMouseEvent& event);
//*)
//(*Identifiers(muehleFrame)
static const long idMenuQuit;
static const long idMenuAbout;
static const long ID_STATUSBAR1;
//*)
//(*Declarations(muehleFrame)
wxStatusBar* StatusBar1;
//*)
DECLARE_EVENT_TABLE()
};
#endif // MUEHLEMAIN_H