-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm2.h
More file actions
43 lines (33 loc) · 807 Bytes
/
Form2.h
File metadata and controls
43 lines (33 loc) · 807 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
39
40
41
42
43
#ifndef FORM2_H
#define FORM2_H
//(*Headers(Form2)
#include <wx/button.h>
#include <wx/frame.h>
#include <wx/stattext.h>
//*)
class Form2: public wxFrame
{
public:
Form2(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
virtual ~Form2();
//(*Declarations(Form2)
wxButton* Button1;
wxButton* Button2;
wxStaticText* StaticText1;
//*)
protected:
//(*Identifiers(Form2)
static const long ID_BUTTON1;
static const long ID_STATICTEXT1;
static const long ID_BUTTON2;
//*)
private:
//(*Handlers(Form2)
void OnClose(wxCloseEvent& event);
void OnButton2Click(wxCommandEvent& event);
void OnButton1Click(wxCommandEvent& event);
void OnMouseEnter(wxMouseEvent& event);
//*)
DECLARE_EVENT_TABLE()
};
#endif