]>
git.saurik.com Git - wxWidgets.git/blob - demos/life/dialogs.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Life! dialogs
4 // Author: Guillermo Rodriguez Garcia, <guille@iies.es>
8 // Copyright: (c) 2000, Guillermo Rodriguez Garcia
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ==========================================================================
13 // headers, declarations, constants
14 // ==========================================================================
17 #pragma implementation "dialogs.h"
20 // For compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
31 #include "wx/statline.h"
32 #include "wx/spinctrl.h"
38 // --------------------------------------------------------------------------
40 // --------------------------------------------------------------------------
42 #if defined(__WXGTK__) || defined(__WXMOTIF__)
43 // logo for the about dialog
44 #include "bitmaps/life.xpm"
47 // sample configurations
48 #include "samples.inc"
50 // --------------------------------------------------------------------------
52 // --------------------------------------------------------------------------
54 // IDs for the controls and the menu commands
57 // listbox in samples dialog
61 // --------------------------------------------------------------------------
62 // event tables and other macros for wxWindows
63 // --------------------------------------------------------------------------
66 BEGIN_EVENT_TABLE(LifeSamplesDialog
, wxDialog
)
67 EVT_LISTBOX (ID_LISTBOX
, LifeSamplesDialog::OnListBox
)
71 // ==========================================================================
73 // ==========================================================================
75 // --------------------------------------------------------------------------
77 // --------------------------------------------------------------------------
79 LifeSamplesDialog::LifeSamplesDialog(wxWindow
*parent
)
80 : wxDialog(parent
, -1,
84 wxDEFAULT_DIALOG_STYLE
| wxDIALOG_MODAL
)
88 // create and populate the list of available samples
89 m_list
= new wxListBox( this, ID_LISTBOX
,
93 wxLB_SINGLE
| wxLB_NEEDED_SB
| wxLB_HSCROLL
);
95 for (unsigned i
= 0; i
< (sizeof(g_shapes
) / sizeof(LifeShape
)); i
++)
96 m_list
->Append(g_shapes
[i
].m_name
);
99 wxStaticBox
*statbox
= new wxStaticBox( this, -1, _("Description"));
101 m_life
->SetShape(g_shapes
[0]);
102 m_canvas
= new LifeCanvas( this, m_life
, FALSE
);
103 m_text
= new wxTextCtrl( this, -1,
107 wxTE_MULTILINE
| wxTE_READONLY
);
110 wxStaticBoxSizer
*sizer1
= new wxStaticBoxSizer( statbox
, wxVERTICAL
);
111 sizer1
->Add( m_canvas
, 2, wxGROW
| wxCENTRE
| wxALL
, 5);
112 sizer1
->Add( m_text
, 1, wxGROW
| wxCENTRE
| wxALL
, 5 );
114 wxBoxSizer
*sizer2
= new wxBoxSizer( wxHORIZONTAL
);
115 sizer2
->Add( m_list
, 0, wxGROW
| wxCENTRE
| wxALL
, 5 );
116 sizer2
->Add( sizer1
, 1, wxGROW
| wxCENTRE
| wxALL
, 5 );
118 wxBoxSizer
*sizer3
= new wxBoxSizer( wxVERTICAL
);
119 sizer3
->Add( CreateTextSizer(_("Select one configuration")), 0, wxALL
, 10 );
120 sizer3
->Add( new wxStaticLine(this, -1), 0, wxGROW
| wxLEFT
| wxRIGHT
, 10 );
121 sizer3
->Add( sizer2
, 1, wxGROW
| wxCENTRE
| wxALL
, 5 );
122 sizer3
->Add( new wxStaticLine(this, -1), 0, wxGROW
| wxLEFT
| wxRIGHT
, 10 );
123 sizer3
->Add( CreateButtonSizer(wxOK
| wxCANCEL
), 0, wxCENTRE
| wxALL
, 10 );
128 sizer3
->SetSizeHints(this);
130 Centre(wxBOTH
| wxCENTRE_ON_SCREEN
);
133 LifeSamplesDialog::~LifeSamplesDialog()
138 const LifeShape
& LifeSamplesDialog::GetShape()
140 return g_shapes
[m_value
];
143 void LifeSamplesDialog::OnListBox(wxCommandEvent
& event
)
145 int sel
= event
.GetSelection();
149 m_value
= m_list
->GetSelection();
150 m_text
->SetValue(g_shapes
[ sel
].m_desc
);
151 m_life
->SetShape(g_shapes
[ sel
]);
153 // quick and dirty :-)
154 if ((g_shapes
[ sel
].m_width
> 36) ||
155 (g_shapes
[ sel
].m_height
> 22))
156 m_canvas
->SetCellSize(2);
158 m_canvas
->SetCellSize(8);
162 // --------------------------------------------------------------------------
164 // --------------------------------------------------------------------------
166 LifeAboutDialog::LifeAboutDialog(wxWindow
*parent
)
167 : wxDialog(parent
, -1,
171 wxDEFAULT_DIALOG_STYLE
| wxDIALOG_MODAL
)
174 wxBitmap bmp
= wxBITMAP(life
);
175 #if !defined(__WXGTK__) && !defined(__WXMOTIF__)
176 bmp
.SetMask(new wxMask(bmp
, *wxBLUE
));
178 wxStaticBitmap
*sbmp
= new wxStaticBitmap(this, -1, bmp
);
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 );
184 sizer
->Add( CreateTextSizer(_("Life! version 2.0 for wxWindows\n\n"
185 "(c) 2000 Guillermo Rodriguez Garcia\n\n"
186 "<guille@iies.es>\n\n"
187 "Portions of the code are based in XLife;\n"
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 );
196 sizer
->SetSizeHints(this);
198 Centre(wxBOTH
| wxCENTRE_ON_SCREEN
);