-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmulti_form_wxwidgetsMain.h
53 lines (41 loc) · 1.35 KB
/
multi_form_wxwidgetsMain.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
51
52
#ifndef HEADER_7D965EE5F5608B26
#define HEADER_7D965EE5F5608B26
/***************************************************************
* Name: multi_form_wxwidgetsMain.h
* Purpose: Defines Application Frame
* Author: Talipov S.N. ([email protected])
* Created: 2020-03-06
* Copyright: Talipov S.N. (https://github.com/tsnsoft)
* License:
**************************************************************/
#ifndef MULTI_FORM_WXWIDGETSMAIN_H
#define MULTI_FORM_WXWIDGETSMAIN_H
//(*Headers(multi_form_wxwidgetsFrame)
#include <wx/button.h>
#include <wx/frame.h>
#include <wx/stattext.h>
#include <wx/textctrl.h>
//*)
class multi_form_wxwidgetsFrame: public wxFrame
{
public:
multi_form_wxwidgetsFrame(wxWindow* parent,wxWindowID id = -1);
virtual ~multi_form_wxwidgetsFrame();
private:
//(*Handlers(multi_form_wxwidgetsFrame)
void OnButton1Click(wxCommandEvent& event);
//*)
//(*Identifiers(multi_form_wxwidgetsFrame)
static const long ID_BUTTON1;
static const long ID_STATICTEXT1;
static const long ID_TEXTCTRL1;
//*)
//(*Declarations(multi_form_wxwidgetsFrame)
wxButton* Button1;
wxStaticText* StaticText1;
wxTextCtrl* TextCtrl1;
//*)
DECLARE_EVENT_TABLE()
};
#endif // MULTI_FORM_WXWIDGETSMAIN_H
#endif // header guard