OSDN Git Service

490f7782e37a9d0acb78a66e2663b79600063d52
[skyscrapersim/skyscraper.git] / src / loader.h
1 /* $Id$ */
2
3 /*
4         Skyscraper 1.5 Alpha - Loader Form
5         Copyright (C)2005-2009 Ryan Thoryk
6         http://www.skyscrapersim.com
7         http://sourceforge.net/projects/skyscraper
8         Contact - ryan@tliquest.net
9
10         This program is free software; you can redistribute it and/or
11         modify it under the terms of the GNU General Public License
12         as published by the Free Software Foundation; either version 2
13         of the License, or (at your option) any later version.
14
15         This program is distributed in the hope that it will be useful,
16         but WITHOUT ANY WARRANTY; without even the implied warranty of
17         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18         GNU General Public License for more details.
19
20         You should have received a copy of the GNU General Public License
21         along with this program; if not, write to the Free Software
22         Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23 */
24
25 #ifndef LOADER_H
26 #define LOADER_H
27
28 #include <wx/wxprec.h>
29
30 #ifdef __BORLANDC__
31     #pragma hdrstop
32 #endif
33
34 //(*Headers(Loader)
35 #include <wx/sizer.h>
36 #include <wx/dirctrl.h>
37 #include <wx/button.h>
38 #include <wx/dialog.h>
39 //*)
40
41 class Loader: public wxDialog
42 {
43         public:
44
45                 Loader(wxWindow* parent,wxWindowID id = -1);
46                 virtual ~Loader();
47
48                 //(*Identifiers(Loader)
49                 static const long ID_SELECTOR;
50                 static const long ID_BUTTON1;
51                 //*)
52
53         protected:
54
55                 //(*Handlers(Loader)
56                 void On_bOK_Click(wxCommandEvent& event);
57                 //*)
58
59                 //(*Declarations(Loader)
60                 wxButton* bOK;
61                 wxGenericDirCtrl* Selector;
62                 wxBoxSizer* BoxSizer1;
63                 //*)
64
65         private:
66
67                 DECLARE_EVENT_TABLE()
68 };
69
70 #endif