]>
git.saurik.com Git - wxWidgets.git/blob - demos/life/dialogs.cpp
bc041cb3ea72e2e8849ada3e138b38597f11780f
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 // bmp window in about dialog
60 // listbox in samples dialog
64 // --------------------------------------------------------------------------
65 // event tables and other macros for wxWindows
66 // --------------------------------------------------------------------------
69 BEGIN_EVENT_TABLE(LifeSamplesDialog
, wxDialog
)
70 EVT_LISTBOX (ID_LISTBOX
, LifeSamplesDialog::OnListBox
)
75 // ==========================================================================
77 // ==========================================================================
79 // --------------------------------------------------------------------------
81 // --------------------------------------------------------------------------
83 LifeSamplesDialog::LifeSamplesDialog(wxWindow
*parent
)
84 : wxDialog(parent
, -1,
88 wxDEFAULT_DIALOG_STYLE
| wxDIALOG_MODAL
)
92 // create and populate the list of available samples
93 m_list
= new wxListBox( this, ID_LISTBOX
,
97 wxLB_SINGLE
| wxLB_NEEDED_SB
| wxLB_HSCROLL
);
99 for (unsigned i
= 0; i
< (sizeof(g_shapes
) / sizeof(LifeShape
)); i
++)
100 m_list
->Append(g_shapes
[i
].m_name
);
103 wxStaticBox
*statbox
= new wxStaticBox( this, -1, _("Description"));
105 m_life
->SetShape(g_shapes
[0]);
106 m_canvas
= new LifeCanvas( this, m_life
, FALSE
);
107 m_text
= new wxTextCtrl( this, -1,
111 wxTE_MULTILINE
| wxTE_READONLY
);
114 wxStaticBoxSizer
*sizer1
= new wxStaticBoxSizer( statbox
, wxVERTICAL
);
115 sizer1
->Add( m_canvas
, 2, wxGROW
| wxCENTRE
| wxALL
, 5);
116 sizer1
->Add( m_text
, 1, wxGROW
| wxCENTRE
| wxALL
, 5 );
118 wxBoxSizer
*sizer2
= new wxBoxSizer( wxHORIZONTAL
);
119 sizer2
->Add( m_list
, 0, wxGROW
| wxCENTRE
| wxALL
, 5 );
120 sizer2
->Add( sizer1
, 1, wxGROW
| wxCENTRE
| wxALL
, 5 );
122 wxBoxSizer
*sizer3
= new wxBoxSizer( wxVERTICAL
);
123 sizer3
->Add( CreateTextSizer(_("Select one configuration")), 0, wxALL
, 10 );
124 sizer3
->Add( new wxStaticLine(this, -1), 0, wxGROW
| wxLEFT
| wxRIGHT
, 10 );
125 sizer3
->Add( sizer2
, 1, wxGROW
| wxCENTRE
| wxALL
, 5 );
126 sizer3
->Add( new wxStaticLine(this, -1), 0, wxGROW
| wxLEFT
| wxRIGHT
, 10 );
127 sizer3
->Add( CreateButtonSizer(wxOK
| wxCANCEL
), 0, wxCENTRE
| wxALL
, 10 );
132 sizer3
->SetSizeHints(this);
134 Centre(wxBOTH
| wxCENTRE_ON_SCREEN
);
137 LifeSamplesDialog::~LifeSamplesDialog()
142 const LifeShape
& LifeSamplesDialog::GetShape()
144 return g_shapes
[m_value
];
147 void LifeSamplesDialog::OnListBox(wxCommandEvent
& event
)
149 int sel
= event
.GetSelection();
153 m_value
= m_list
->GetSelection();
154 m_text
->SetValue(g_shapes
[ sel
].m_desc
);
155 m_life
->SetShape(g_shapes
[ sel
]);
157 // quick and dirty :-)
158 if ((g_shapes
[ sel
].m_width
> 36) ||
159 (g_shapes
[ sel
].m_height
> 22))
160 m_canvas
->SetCellSize(2);
162 m_canvas
->SetCellSize(8);
166 // --------------------------------------------------------------------------
168 // --------------------------------------------------------------------------
170 LifeAboutDialog::LifeAboutDialog(wxWindow
*parent
)
171 : wxDialog(parent
, -1,
175 wxDEFAULT_DIALOG_STYLE
| wxDIALOG_MODAL
)
178 wxBitmap bmp
= wxBITMAP(life
);
179 #if !defined(__WXGTK__) && !defined(__WXMOTIF__)
180 bmp
.SetMask(new wxMask(bmp
, *wxBLUE
));
182 wxStaticBitmap
*sbmp
= new wxStaticBitmap(this, -1, bmp
);
185 wxBoxSizer
*sizer
= new wxBoxSizer( wxVERTICAL
);
186 sizer
->Add( sbmp
, 0, wxCENTRE
| wxALL
, 10 );
187 sizer
->Add( new wxStaticLine(this, -1), 0, wxGROW
| wxLEFT
| wxRIGHT
, 5 );
188 sizer
->Add( CreateTextSizer(_("Life! for wxWindows, version 2.0\n\n"
189 "(c) 2000 Guillermo Rodriguez Garcia\n\n"
190 "<guille@iies.es>\n\n"
191 "Portions of the code are based in XLife\n"
192 "XLife is (c) 1989 by Jon Bennett et al.")),
193 0, wxCENTRE
| wxALL
, 20 );
194 sizer
->Add( new wxStaticLine(this, -1), 0, wxGROW
| wxLEFT
| wxRIGHT
, 5 );
195 sizer
->Add( CreateButtonSizer(wxOK
), 0, wxCENTRE
| wxALL
, 10 );
200 sizer
->SetSizeHints(this);
202 Centre(wxBOTH
| wxCENTRE_ON_SCREEN
);