]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/life/dialogs.h
added carbonaccessors.o
[wxWidgets.git] / demos / life / dialogs.h
index 4c503cf4e3590749c0f30e0bec7e91dc4c0704f5..e41e45953c65d3e97368a81ecb5b09bf87a69c52 100644 (file)
     #include "wx/wx.h"
 #endif
 
-#include "wx/spinctrl.h"
-
 #include "life.h"
 #include "game.h"
 
 
-// sample configurations
-extern LifeShape g_shapes[];
-
-
-// --------------------------------------------------------------------------
-// LifeNewGameDialog
-// --------------------------------------------------------------------------
-
-class LifeNewGameDialog : public wxDialog
-{
-public:
-    // ctor
-    LifeNewGameDialog(wxWindow *parent, int *w, int *h);
-
-    // event handlers
-    void OnOK(wxCommandEvent& event);
-
-private:
-    // any class wishing to process wxWindows events must use this macro
-    DECLARE_EVENT_TABLE();
-
-    int        *m_w;
-    int        *m_h;
-    wxSpinCtrl *m_spinctrlw;
-    wxSpinCtrl *m_spinctrlh;
-};
-
 // --------------------------------------------------------------------------
 // LifeSamplesDialog
 // --------------------------------------------------------------------------
@@ -73,14 +44,14 @@ public:
     ~LifeSamplesDialog();
 
     // members
-    int GetValue();
+    const LifePattern& GetPattern();
 
     // event handlers
     void OnListBox(wxCommandEvent &event);
 
 private:
     // any class wishing to process wxWindows events must use this macro
-    DECLARE_EVENT_TABLE();
+    DECLARE_EVENT_TABLE()
 
     int         m_value;
     wxListBox  *m_list;
@@ -89,4 +60,16 @@ private:
     Life       *m_life;
 };
 
+// --------------------------------------------------------------------------
+// LifeAboutDialog
+// --------------------------------------------------------------------------
+
+class LifeAboutDialog : public wxDialog
+{
+public:
+    // ctor
+    LifeAboutDialog(wxWindow *parent);
+};
+
+
 #endif  // _LIFE_DIALOGS_H_