- enum MenuCommands { NEW_GAME = 10, SCORES, EXIT,
- UNDO, REDO,
- RIGHT_BUTTON_UNDO, HELPING_HAND, LARGE_CARDS,
- ABOUT };
+ enum MenuCommands {
+ SCORES = 10,
+ 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);