wxUSE_STATLINE fixes.
[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 #if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXX11__)
44 // logo for the about dialog
45 #include "bitmaps/life.xpm"
46 #endif
47
48 // sample configurations
49 #include "samples.inc"
50
51 // --------------------------------------------------------------------------
52 // constants
53 // --------------------------------------------------------------------------
54
55 // IDs for the controls and the menu commands
56 enum
57 {
58 // listbox in samples dialog
59 ID_LISTBOX
60 };
61
62 // --------------------------------------------------------------------------
63 // event tables and other macros for wxWidgets
64 // --------------------------------------------------------------------------
65
66 // Event tables
67 BEGIN_EVENT_TABLE(LifeSamplesDialog, wxDialog)
68 EVT_LISTBOX (ID_LISTBOX, LifeSamplesDialog::OnListBox)
69 END_EVENT_TABLE()
70
71
72 // ==========================================================================
73 // implementation
74 // ==========================================================================
75
76 // --------------------------------------------------------------------------
77 // LifeSamplesDialog
78 // --------------------------------------------------------------------------
79
80 LifeSamplesDialog::LifeSamplesDialog(wxWindow *parent)
81 : wxDialog(parent, wxID_ANY, _("Sample games"),
82 wxDefaultPosition, wxDefaultSize)
83 {
84 m_value = 0;
85
86 // create and populate the list of available samples
87 m_list = new wxListBox( this, ID_LISTBOX,
88 wxDefaultPosition,
89 wxDefaultSize,
90 0, NULL,
91 wxLB_SINGLE | wxLB_NEEDED_SB | wxLB_HSCROLL );
92
93 for (unsigned i = 0; i < (sizeof(g_patterns) / sizeof(LifePattern)); i++)
94 m_list->Append(g_patterns[i].m_name);
95
96 // descriptions
97 wxStaticBox *statbox = new wxStaticBox( this, wxID_ANY, _("Description"));
98 m_life = new Life();
99 m_life->SetPattern(g_patterns[0]);
100 m_canvas = new LifeCanvas( this, m_life, false );
101 m_text = new wxTextCtrl( this, wxID_ANY,
102 g_patterns[0].m_description,
103 wxDefaultPosition,
104 wxSize(300, 60),
105 wxTE_MULTILINE | wxTE_READONLY);
106
107 // layout components
108 wxStaticBoxSizer *sizer1 = new wxStaticBoxSizer( statbox, wxVERTICAL );
109 sizer1->Add( m_canvas, 2, wxGROW | wxALL, 5);
110 sizer1->Add( m_text, 1, wxGROW | wxALL, 5 );
111
112 wxBoxSizer *sizer2 = new wxBoxSizer( wxHORIZONTAL );
113 sizer2->Add( m_list, 0, wxGROW | wxALL, 5 );
114 sizer2->Add( sizer1, 1, wxGROW | wxALL, 5 );
115
116 wxBoxSizer *sizer3 = new wxBoxSizer( wxVERTICAL );
117 sizer3->Add( CreateTextSizer(_("Select one configuration")), 0, wxALL, 10 );
118 #if wxUSE_STATLINE
119 sizer3->Add( new wxStaticLine(this, wxID_ANY), 0, wxGROW | wxLEFT | wxRIGHT, 10 );
120 #endif // wxUSE_STATLINE
121 sizer3->Add( sizer2, 1, wxGROW | wxALL, 5 );
122 #if wxUSE_STATLINE
123 sizer3->Add( new wxStaticLine(this, wxID_ANY), 0, wxGROW | wxLEFT | wxRIGHT, 10 );
124 #endif // wxUSE_STATLINE
125 sizer3->Add( CreateButtonSizer(wxOK | wxCANCEL), 0, wxCENTRE | wxALL, 10 );
126
127 // activate
128 SetSizer(sizer3);
129 sizer3->SetSizeHints(this);
130 sizer3->Fit(this);
131 Centre(wxBOTH | wxCENTRE_ON_SCREEN);
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 wxBitmap bmp = wxBITMAP(life);
172 #if !defined(__WXGTK__) && !defined(__WXMOTIF__) && !defined(__WXMAC__)
173 bmp.SetMask(new wxMask(bmp, *wxBLUE));
174 #endif
175 wxStaticBitmap *sbmp = new wxStaticBitmap(this, wxID_ANY, bmp);
176
177 // layout components
178 wxBoxSizer *sizer = new wxBoxSizer( wxVERTICAL );
179 sizer->Add( sbmp, 0, wxCENTRE | wxALL, 10 );
180 #if wxUSE_STATLINE
181 sizer->Add( new wxStaticLine(this, wxID_ANY), 0, wxGROW | wxLEFT | wxRIGHT, 5 );
182 #endif // wxUSE_STATLINE
183 sizer->Add( CreateTextSizer(_("Life! version 2.2 for wxWidgets\n\n\
184 (c) 2000 Guillermo Rodriguez Garcia\n\n\
185 <guille@iies.es>\n\n\
186 Portions of the code are based in XLife;\n\
187 XLife is (c) 1989 by Jon Bennett et al.")),
188 0, wxCENTRE | wxALL, 20 );
189 #if wxUSE_STATLINE
190 sizer->Add( new wxStaticLine(this, wxID_ANY), 0, wxGROW | wxLEFT | wxRIGHT, 5 );
191 #endif // wxUSE_STATLINE
192 sizer->Add( CreateButtonSizer(wxOK), 0, wxCENTRE | wxALL, 10 );
193
194 // activate
195 SetSizer(sizer);
196 sizer->SetSizeHints(this);
197 sizer->Fit(this);
198 Centre(wxBOTH | wxCENTRE_ON_SCREEN);
199 }
200
201
202