-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeleteRows.h
51 lines (41 loc) · 961 Bytes
/
DeleteRows.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
#ifndef DELETEROWS_H
#define DELETEROWS_H
#ifndef WX_PRECOMP
//(*HeadersPCH(DeleteRows)
#include <wx/button.h>
#include <wx/dialog.h>
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/textctrl.h>
//*)
#endif
//(*Headers(DeleteRows)
//*)
class DeleteRows: public wxDialog
{
public:
DeleteRows(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
virtual ~DeleteRows();
//(*Declarations(DeleteRows)
wxButton* Cancel;
wxButton* Ok;
wxStaticText* StaticText1;
wxStaticText* StaticText2;
wxStaticText* StaticText3;
wxTextCtrl* From;
wxTextCtrl* To;
//*)
protected:
//(*Identifiers(DeleteRows)
static const long ID_STATICTEXT1;
static const long ID_STATICTEXT2;
static const long ID_TEXTCTRL1;
static const long ID_STATICTEXT3;
static const long ID_TEXTCTRL2;
//*)
private:
//(*Handlers(DeleteRows)
//*)
DECLARE_EVENT_TABLE()
};
#endif