-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest16Main.h
88 lines (80 loc) · 2.9 KB
/
test16Main.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/***************************************************************
* Name: test16Main.h
* Purpose: Defines Application Frame
* Author: Siddharth ([email protected])
* Created: 2019-06-23
* Copyright: Siddharth (https://www.reddit.com/r/dauntless/comments/c344rl/dauntless_reverse_engineering_build_optimizer/)
* License:
**************************************************************/
#ifndef TEST16MAIN_H
#define TEST16MAIN_H
//(*Headers(test16Frame)
#include <wx/bmpbuttn.h>
#include <wx/button.h>
#include <wx/frame.h>
#include <wx/spinctrl.h>
#include <wx/statbmp.h>
#include <wx/statbox.h>
#include <wx/stattext.h>
#include <wx/textctrl.h>
//*)
class test16Frame: public wxFrame
{
public:
test16Frame(wxWindow* parent,wxWindowID id = -1);
virtual ~test16Frame();
private:
//(*Handlers(test16Frame)
void OnQuit(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event);
void OnButton1Click(wxCommandEvent& event);
void OnBitmapButton1Click(wxCommandEvent& event);
void OnBitmapButton1Click1(wxCommandEvent& event);
void OnBitmapButton1Click2(wxCommandEvent& event);
void OnButton2Click(wxCommandEvent& event);
//*)
void OnPerkClick(wxCommandEvent& event);
void DeleteClick(wxCommandEvent& event);
//(*Identifiers(test16Frame)
static const long ID_BUTTON1;
static const long ID_TEXTCTRL1;
static const long ID_SPINCTRL1;
static const long ID_STATICTEXT1;
static const long ID_BITMAPBUTTON1;
static const long ID_STATICBITMAP1;
static const long ID_STATICBITMAP2;
static const long ID_STATICBITMAP3;
static const long ID_STATICBITMAP4;
static const long ID_STATICBITMAP5;
static const long ID_STATICBOX1;
static const long ID_STATICBOX2;
static const long ID_STATICTEXT2;
static const long ID_STATICTEXT3;
static const long ID_STATICTEXT4;
static const long ID_STATICTEXT5;
static const long ID_BUTTON2;
static const long ID_STATICTEXT6;
//*)
//(*Declarations(test16Frame)
wxBitmapButton* BitmapButton1;
wxButton* Button1;
wxButton* Button2;
wxSpinCtrl* SpinCtrl1;
wxStaticBitmap* StaticBitmap1;
wxStaticBitmap* StaticBitmap2;
wxStaticBitmap* StaticBitmap3;
wxStaticBitmap* StaticBitmap4;
wxStaticBitmap* StaticBitmap5;
wxStaticBox* StaticBox1;
wxStaticBox* StaticBox2;
wxStaticText* StaticText1;
wxStaticText* StaticText2;
wxStaticText* StaticText3;
wxStaticText* StaticText4;
wxStaticText* StaticText5;
wxStaticText* StaticText6;
wxTextCtrl* TextCtrl1;
//*)
DECLARE_EVENT_TABLE()
};
#endif // TEST16MAIN_H