]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/forty/forty.h
improved conditional compilation since generic grid and new grid are exclusive
[wxWidgets.git] / demos / forty / forty.h
index f3f36baee8c5403f842dd5385070a2beba7dc2f1..0ad38bae0acf7dfa16f269299c49a1299ded0b0e 100644 (file)
@@ -16,6 +16,8 @@
 class FortyApp: public wxApp
 {
 public:
+    FortyApp();
+    ~FortyApp();
        bool OnInit();
 
        static const wxColour& BackgroundColour();
@@ -62,4 +64,25 @@ private:
        FortyCanvas*    m_canvas;
 };
 
+//----------------------------------------------------------------------------
+// stAboutDialog
+//----------------------------------------------------------------------------
+
+class FortyAboutDialog: public wxDialog
+{
+public:
+    // constructors and destructors
+    FortyAboutDialog( wxWindow *parent, wxWindowID id, const wxString &title,
+        const wxPoint& pos = wxDefaultPosition,
+        const wxSize& size = wxDefaultSize,
+        long style = wxDEFAULT_DIALOG_STYLE );
+    
+    bool AddControls(wxWindow* parent);
+
+private:
+    DECLARE_EVENT_TABLE()
+};
+
+#define ID_ABOUT_HTML_WINDOW    1000
+
 #endif