-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExtenalInput.h
47 lines (37 loc) · 985 Bytes
/
ExtenalInput.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
#ifndef EXTENALINPUT_H
#define EXTENALINPUT_H
//(*Headers(ExtenalInput)
#include <wx/dialog.h>
#include <wx/button.h>
#include <wx/statbox.h>
#include <wx/stattext.h>
#include <wx/timer.h>
//*)
class ExtenalInput: public wxDialog
{
public:
ExtenalInput(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
virtual ~ExtenalInput();
//(*Declarations(ExtenalInput)
wxButton* CloseButton;
wxStaticBox* StaticBox1;
wxStaticText* StaticText2;
wxTimer EItimer;
//*)
protected:
//(*Identifiers(ExtenalInput)
static const long ID_STATICBOX1;
static const long ID_STATICTEXT2;
static const long ID_BUTTON2;
static const long ID_TIMER1;
//*)
private:
//(*Handlers(ExtenalInput)
void OnButton1Click(wxCommandEvent& event);
void OnEItimerTrigger(wxTimerEvent& event);
void OnButton2Click(wxCommandEvent& event);
void OnClose(wxCloseEvent& event);
//*)
DECLARE_EVENT_TABLE()
};
#endif