]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/forty/forty.h
Applied patch #825402 ("Fix for Unicode Open Watcom build of life demo"); Code cleanup.
[wxWidgets.git] / demos / forty / forty.h
index d6d9e3f752e6ed67e910a3371f6cd5f0eb0e62bf..9a4383c9a1c3b752799726e3733843117bf28bb4 100644 (file)
@@ -34,7 +34,7 @@ class FortyCanvas;
 class FortyFrame: public wxFrame
 {
 public:
-        FortyFrame(wxFrame* frame, char* title, int x, int y, int w, int h,bool largecards);
+        FortyFrame(wxFrame* frame, const wxString& title, int x, int y, int w, int h,bool largecards);
        virtual ~FortyFrame();
 
        void OnCloseWindow(wxCloseEvent& event);
@@ -64,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