Don't call Layout
[wxWidgets.git] / demos / life / dialogs.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: dialogs.cpp
3 // Purpose: Life! dialogs
4 // Author: Guillermo Rodriguez Garcia, <guille@iies.es>
5 // Modified by:
6 // Created: Jan/2000
7 // RCS-ID: $Id$
8 // Copyright: (c) 2000, Guillermo Rodriguez Garcia
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ==========================================================================
13 // headers, declarations, constants
14 // ==========================================================================
15
16 #ifdef __GNUG__
17 #pragma implementation "dialogs.h"
18 #endif
19
20 // For compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __BORLANDC__
24 #pragma hdrstop
25 #endif
26
27 #ifndef WX_PRECOMP
28 #include "wx/wx.h"
29 #endif
30
31 #include "wx/statline.h"
32 #include "wx/minifram.h"
33
34 #include "dialogs.h"
35 #include "life.h"
36 #include "game.h"
37
38
39 // --------------------------------------------------------------------------
40 // resources
41 // --------------------------------------------------------------------------
42
43 #include "bitmaps/life.xpm"
44
45 // sample configurations
46 #include "samples.inc"
47
48 // --------------------------------------------------------------------------
49 // constants
50 // --------------------------------------------------------------------------
51
52 // IDs for the controls and the menu commands
53 enum
54 {
55 // listbox in samples dialog
56 ID_LISTBOX
57 };
58
59 // --------------------------------------------------------------------------
60 // event tables and other macros for wxWidgets
61 // --------------------------------------------------------------------------
62
63 // Event tables
64 BEGIN_EVENT_TABLE(LifeSamplesDialog, wxDialog)
65 EVT_LISTBOX (ID_LISTBOX, LifeSamplesDialog::OnListBox)
66 END_EVENT_TABLE()
67
68
69 // ==========================================================================
70 // implementation
71 // ==========================================================================
72
73 // --------------------------------------------------------------------------
74 // LifeSamplesDialog
75 // --------------------------------------------------------------------------
76
77 LifeSamplesDialog::LifeSamplesDialog(wxWindow *parent)
78 : wxDialog(parent, wxID_ANY, _("Sample games"),
79 wxDefaultPosition, wxDefaultSize)
80 {
81 m_value = 0;
82
83 // create and populate the list of available samples
84 m_list = new wxListBox( this, ID_LISTBOX,
85 wxDefaultPosition,
86 wxDefaultSize,
87 0, NULL,
88 wxLB_SINGLE | wxLB_NEEDED_SB | wxLB_HSCROLL );
89
90 for (unsigned i = 0; i < (sizeof(g_patterns) / sizeof(LifePattern)); i++)
91 m_list->Append(g_patterns[i].m_name);
92
93 // descriptions
94 wxStaticBox *statbox = new wxStaticBox( this, wxID_ANY, _("Description"));
95 m_life = new Life();
96 m_life->SetPattern(g_patterns[0]);
97 m_canvas = new LifeCanvas( this, m_life, false );
98 m_text = new wxTextCtrl( this, wxID_ANY,
99 g_patterns[0].m_description,
100 wxDefaultPosition,
101 wxSize(300, 60),
102 wxTE_MULTILINE | wxTE_READONLY);
103
104 // layout components
105 wxStaticBoxSizer *sizer1 = new wxStaticBoxSizer( statbox, wxVERTICAL );
106 sizer1->Add( m_canvas, 2, wxGROW | wxALL, 5);
107 sizer1->Add( m_text, 1, wxGROW | wxALL, 5 );
108
109 wxBoxSizer *sizer2 = new wxBoxSizer( wxHORIZONTAL );
110 sizer2->Add( m_list, 0, wxGROW | wxALL, 5 );
111 sizer2->Add( sizer1, 1, wxGROW | wxALL, 5 );
112
113 wxBoxSizer *sizer3 = new wxBoxSizer( wxVERTICAL );
114 sizer3->Add( CreateTextSizer(_("Select one configuration")), 0, wxALL, 10 );
115 #if wxUSE_STATLINE
116 sizer3->Add( new wxStaticLine(this, wxID_ANY), 0, wxGROW | wxLEFT | wxRIGHT, 10 );
117 #endif // wxUSE_STATLINE
118 sizer3->Add( sizer2, 1, wxGROW | wxALL, 5 );
119 #if wxUSE_STATLINE
120 sizer3->Add( new wxStaticLine(this, wxID_ANY), 0, wxGROW | wxLEFT | wxRIGHT, 10 );
121 #endif // wxUSE_STATLINE
122 sizer3->Add( CreateButtonSizer(wxOK | wxCANCEL), 0, wxCENTRE | wxALL, 10 );
123
124 // activate
125 SetSizer(sizer3);
126
127 #if !defined(__POCKETPC__) && !defined(__SMARTPHONE__)
128 sizer3->SetSizeHints(this);
129 sizer3->Fit(this);
130 Centre(wxBOTH | wxCENTRE_ON_SCREEN);
131 #endif
132 }
133
134 LifeSamplesDialog::~LifeSamplesDialog()
135 {
136 m_canvas->Destroy();
137 }
138
139 const LifePattern& LifeSamplesDialog::GetPattern()
140 {
141 return g_patterns[m_value];
142 }
143
144 void LifeSamplesDialog::OnListBox(wxCommandEvent& event)
145 {
146 int sel = event.GetSelection();
147
148 if (sel != -1)
149 {
150 m_value = m_list->GetSelection();
151 m_text->SetValue(g_patterns[ sel ].m_description);
152 m_life->SetPattern(g_patterns[ sel ]);
153
154 // these values shouldn't be hardcoded...
155 if ((size_t)sel < (sizeof(g_patterns) / sizeof(LifePattern)) - 3)
156 m_canvas->SetCellSize(8);
157 else
158 m_canvas->SetCellSize(2);
159 }
160 }
161
162 // --------------------------------------------------------------------------
163 // LifeAboutDialog
164 // --------------------------------------------------------------------------
165
166 LifeAboutDialog::LifeAboutDialog(wxWindow *parent)
167 : wxDialog(parent, wxID_ANY, _("About Life!"),
168 wxDefaultPosition, wxDefaultSize)
169 {
170 // logo
171 wxStaticBitmap *sbmp = new wxStaticBitmap(this, wxID_ANY, wxBitmap(life_xpm));
172
173 // layout components
174 wxBoxSizer *sizer = new wxBoxSizer( wxVERTICAL );
175 sizer->Add( sbmp, 0, wxCENTRE | wxALL, 10 );
176 #if wxUSE_STATLINE
177 sizer->Add( new wxStaticLine(this, wxID_ANY), 0, wxGROW | wxLEFT | wxRIGHT, 5 );
178 #endif // wxUSE_STATLINE
179 sizer->Add( CreateTextSizer(_("Life! version 2.2 for wxWidgets\n\n\
180 (c) 2000 Guillermo Rodriguez Garcia\n\n\
181 <guille@iies.es>\n\n\
182 Portions of the code are based in XLife;\n\
183 XLife is (c) 1989 by Jon Bennett et al.")),
184 0, wxCENTRE | wxALL, 20 );
185 #if wxUSE_STATLINE
186 sizer->Add( new wxStaticLine(this, wxID_ANY), 0, wxGROW | wxLEFT | wxRIGHT, 5 );
187 #endif // wxUSE_STATLINE
188
189 #ifndef __WXWINCE__
190 sizer->Add( CreateButtonSizer(wxOK), 0, wxCENTRE | wxALL, 10 );
191 #endif
192
193 // activate
194 SetSizer(sizer);
195
196 #ifndef __WXWINCE__
197 sizer->SetSizeHints(this);
198 sizer->Fit(this);
199 Centre(wxBOTH | wxCENTRE_ON_SCREEN);
200 #endif
201 }
202
203
204