]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/forty/forty.h
make it non mach-o carbon savvy
[wxWidgets.git] / demos / forty / forty.h
index 1fbf6449f150008857b6cd825f264b6ead624584..09750b2b583d9498b7f078e968e62038c168f80a 100644 (file)
@@ -16,6 +16,8 @@
 class FortyApp: public wxApp
 {
 public:
+    FortyApp();
+    ~FortyApp();
        bool OnInit();
 
        static const wxColour& BackgroundColour();
@@ -28,4 +30,60 @@ private:
        static wxBrush*  m_backgroundBrush;
 };
 
+class FortyCanvas;
+class FortyFrame: public wxFrame
+{
+public:
+  FortyFrame(wxFrame* frame, const wxString& title, const wxPoint& pos, const wxSize& size, bool largecards);
+       virtual ~FortyFrame();
+
+       void OnCloseWindow(wxCloseEvent& event);
+
+       // Menu callbacks
+       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);
+       void ToggleRightButtonUndo(wxCommandEvent& event);
+       void ToggleHelpingHand(wxCommandEvent& event);
+        void ToggleCardSize(wxCommandEvent& event);
+
+        FortyCanvas* GetCanvas() { return m_canvas; }
+
+       DECLARE_EVENT_TABLE()
+
+private:
+       enum MenuCommands { NEW_GAME = 10, SCORES,
+                                               UNDO, REDO,
+                        RIGHT_BUTTON_UNDO, HELPING_HAND, LARGE_CARDS
+                                       };
+
+       wxMenuBar*              m_menuBar;
+       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