]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/forty/forty.h
wxMSW: return correct value from wxMessageDialog::GetReturnCode().
[wxWidgets.git] / demos / forty / forty.h
index 3663738bc3c1cf71e51a83dd4534d7ff0c8cce56..ee9c132358df7fe15ff2a1cfb34155cd409e4784 100644 (file)
@@ -4,7 +4,6 @@
 // Author:      Chris Breeze
 // Modified by:
 // Created:     21/07/97
-// RCS-ID:      $Id$
 // Copyright:   (c) 1993-1998 Chris Breeze
 // Licence:     wxWindows licence
 //---------------------------------------------------------------------------
 class FortyApp: public wxApp
 {
 public:
-    FortyApp();
-    ~FortyApp();
+    FortyApp(){}
+    virtual ~FortyApp();
     bool OnInit();
 
     static const wxColour& BackgroundColour();
     static const wxColour& TextColour();
     static const wxBrush&  BackgroundBrush();
+    const wxString& GetHelpFile() const { return m_helpFile; }
 
 private:
     static wxColour* m_backgroundColour;
     static wxColour* m_textColour;
     static wxBrush*  m_backgroundBrush;
+    wxString m_helpFile;
 };
 
+DECLARE_APP(FortyApp)
+
 class FortyCanvas;
 class FortyFrame: public wxFrame
 {
 public:
-  FortyFrame(wxFrame* frame, const wxString& title, const wxPoint& pos, const wxSize& size, bool largecards);
-    virtual ~FortyFrame();
+    FortyFrame(wxFrame* frame, const wxString& title, const wxPoint& pos, const wxSize& size, bool largecards);
+    virtual ~FortyFrame(){};
 
     void OnCloseWindow(wxCloseEvent& event);
 
@@ -56,13 +59,10 @@ public:
     DECLARE_EVENT_TABLE()
 
 private:
-    enum MenuCommands { 
-        NEW_GAME = 10, 
-        SCORES,
-        UNDO, 
-        REDO,
-        RIGHT_BUTTON_UNDO, 
-        HELPING_HAND, 
+    enum MenuCommands {
+        SCORES = 10,
+        RIGHT_BUTTON_UNDO,
+        HELPING_HAND,
         LARGE_CARDS
     };
 
@@ -82,11 +82,8 @@ public:
         const wxPoint& pos = wxDefaultPosition,
         const wxSize& size = wxDefaultSize,
         long style = wxDEFAULT_DIALOG_STYLE );
-    
-    bool AddControls(wxWindow* parent);
 
-private:
-    DECLARE_EVENT_TABLE()
+    bool AddControls(wxWindow* parent);
 };
 
 #define ID_ABOUT_HTML_WINDOW    1000