]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/forty/forty.h
partially applied patch #895170: "Building with minimal setup.h - continuation"
[wxWidgets.git] / demos / forty / forty.h
index 9a4383c9a1c3b752799726e3733843117bf28bb4..2d2a40eb7760799f66484cc6c1fbe62e1dd463b7 100644 (file)
@@ -8,7 +8,7 @@
 // Copyright:   (c) 1993-1998 Chris Breeze
 // Licence:    wxWindows licence
 //---------------------------------------------------------------------------
-// Last modified: 22nd July 1998 - ported to wxWindows 2.0
+// Last modified: 22nd July 1998 - ported to wxWidgets 2.0
 /////////////////////////////////////////////////////////////////////////////
 #ifndef _FORTY_H_
 #define _FORTY_H_
@@ -34,7 +34,7 @@ class FortyCanvas;
 class FortyFrame: public wxFrame
 {
 public:
-        FortyFrame(wxFrame* frame, const wxString& title, int x, int y, int w, int h,bool largecards);
+  FortyFrame(wxFrame* frame, const wxString& title, const wxPoint& pos, const wxSize& size, bool largecards);
        virtual ~FortyFrame();
 
        void OnCloseWindow(wxCloseEvent& event);
@@ -43,6 +43,7 @@ public:
        void NewGame(wxCommandEvent& event);
        void Exit(wxCommandEvent& event);
        void About(wxCommandEvent& event);
+       void Help(wxCommandEvent& event);
        void Undo(wxCommandEvent& event);
        void Redo(wxCommandEvent& event);
        void Scores(wxCommandEvent& event);
@@ -55,10 +56,10 @@ public:
        DECLARE_EVENT_TABLE()
 
 private:
-       enum MenuCommands { NEW_GAME = 10, SCORES, EXIT,
+       enum MenuCommands { NEW_GAME = 10, SCORES,
                                                UNDO, REDO,
-                                                RIGHT_BUTTON_UNDO, HELPING_HAND, LARGE_CARDS,
-                                               ABOUT };
+                        RIGHT_BUTTON_UNDO, HELPING_HAND, LARGE_CARDS
+                                       };
 
        wxMenuBar*              m_menuBar;
        FortyCanvas*    m_canvas;