-
Notifications
You must be signed in to change notification settings - Fork 1
/
wxMirror.h
62 lines (51 loc) · 1.5 KB
/
wxMirror.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
53
54
55
56
57
58
59
60
61
62
/***************************************************************
* Plugin: XPMEditor for Code::Blocks
* Name: wxMirror.h
* Purpose: A dialog box for flipping the Image or the selection - definition
* Author: Seb ([email protected])
* Created: 2010-05-19
* Copyright: Seb ()
* License: GPL 3.0
**************************************************************/
#ifndef WXMIRROR_H
#define WXMIRROR_H
//(*Headers(wxMirror)
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/radiobut.h>
#include <wx/button.h>
#include <wx/dialog.h>
//*)
class wxMirror: public wxDialog
{
public:
wxMirror(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
virtual ~wxMirror();
//(*Declarations(wxMirror)
wxRadioButton* RadioButton1;
wxRadioButton* RadioButton2;
wxButton* Button1;
wxRadioButton* RadioButton4;
wxStaticText* StaticText1;
wxButton* Button2;
wxRadioButton* RadioButton3;
//*)
protected:
//(*Identifiers(wxMirror)
static const long ID_STATICTEXT1;
static const long ID_RADIOBUTTON1;
static const long ID_RADIOBUTTON2;
static const long ID_RADIOBUTTON3;
static const long ID_RADIOBUTTON4;
static const long ID_BUTTON1;
static const long ID_BUTTON2;
//*)
private:
//(*Handlers(wxMirror)
void OnCancelButton(wxCommandEvent& event);
void OnButtonOKClick(wxCommandEvent& event);
void OnClose(wxCloseEvent& event);
//*)
DECLARE_EVENT_TABLE()
};
#endif