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