Skyscraper 2.0
keydialog.h
Go to the documentation of this file.
1/*
2 Skyscraper 2.0 Alpha - Control Reference Form
3 Copyright (C)2004-2024 Ryan Thoryk
4 https://www.skyscrapersim.net
5 https://sourceforge.net/projects/skyscraper/
6 Contact - ryan@skyscrapersim.net
7
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21*/
22
23#ifndef KEYDIALOG_H
24#define KEYDIALOG_H
25
26//(*Headers(KeyDialog)
27#include <wx/dialog.h>
28#include <wx/sizer.h>
29#include <wx/textctrl.h>
30//*)
31
32namespace Skyscraper {
33
34class KeyDialog: public wxDialog
35{
36 public:
37
38 KeyDialog(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
39 virtual ~KeyDialog();
40
41 //(*Declarations(KeyDialog)
42 wxTextCtrl* TextCtrl1;
43 //*)
44
45 protected:
46
47 //(*Identifiers(KeyDialog)
48 static const long ID_TEXTCTRL1;
49 //*)
50
51 private:
52
53 //(*Handlers(KeyDialog)
54 //*)
55
56 DECLARE_EVENT_TABLE()
57};
58
59}
60
61#endif
wxTextCtrl * TextCtrl1
Definition keydialog.h:42
KeyDialog(wxWindow *parent, wxWindowID id=wxID_ANY, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize)
Definition keydialog.cpp:41
static const long ID_TEXTCTRL1
Definition keydialog.h:48