-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathH24RenameProfile.h
45 lines (35 loc) · 960 Bytes
/
H24RenameProfile.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
#ifndef H24RENAMEPROFILE_H
#define H24RENAMEPROFILE_H
//(*Headers(H24RenameProfile)
#include <wx/stattext.h>
#include <wx/textctrl.h>
#include <wx/button.h>
#include <wx/dialog.h>
//*)
class H24RenameProfile: public wxDialog
{
public:
H24RenameProfile(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
virtual ~H24RenameProfile();
//(*Declarations(H24RenameProfile)
wxButton* Button1;
wxStaticText* StaticText1;
wxButton* Button2;
wxTextCtrl* TextCtrl1;
//*)
protected:
//(*Identifiers(H24RenameProfile)
static const long ID_TEXTCTRL1;
static const long ID_STATICTEXT1;
static const long ID_BUTTON1;
static const long ID_BUTTON2;
//*)
private:
//(*Handlers(H24RenameProfile)
void OnButton1Click(wxCommandEvent& event);
void OnButton2Click(wxCommandEvent& event);
void OnTextCtrl1Text(wxCommandEvent& event);
//*)
DECLARE_EVENT_TABLE()
};
#endif