]>
git.saurik.com Git - wxWidgets.git/blob - demos/life/dialogs.h
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 #ifndef _LIFE_DIALOGS_H_
13 #define _LIFE_DIALOGS_H_
15 // for compilers that support precompilation, includes "wx/wx.h"
16 #include "wx/wxprec.h"
22 // for all others, include the necessary headers
31 // --------------------------------------------------------------------------
33 // --------------------------------------------------------------------------
35 class LifeSamplesDialog
: public wxDialog
39 LifeSamplesDialog(wxWindow
*parent
);
43 const LifePattern
& GetPattern();
46 void OnListBox(wxCommandEvent
&event
);
49 // any class wishing to process wxWidgets events must use this macro
59 // --------------------------------------------------------------------------
61 // --------------------------------------------------------------------------
63 class LifeAboutDialog
: public wxDialog
67 LifeAboutDialog(wxWindow
*parent
);
71 #endif // _LIFE_DIALOGS_H_