interfIOMenu.h
Go to the documentation of this file.00001 #ifndef __interfIOMenuH__
00002 #define __interfIOMenuH__
00003
00004 #include <wx/wx.h>
00005 #include "interfMenuBar.h"
00006
00007
00008 class interfIOMenu
00009 : public interfMenuBar
00010 {
00011 public:
00012 interfIOMenu(wxWindow * parent, int sizex, int sizey,wxEvtHandler* evtHandler, std::string datdir = "data/Icons");
00013 ~interfIOMenu();
00014
00015 virtual void initButtons(wxEvtHandler* evtHandler) ;
00016
00017 void onActionButtonPressed( wxCommandEvent& event );
00018
00019 void onLoad(wxCommandEvent& event);
00020 void onSave(wxCommandEvent& event);
00021
00022 void onImport(wxCommandEvent& event);
00023 void onTest(wxCommandEvent& event);
00024
00025 private:
00026
00027
00028 };
00029
00030 #endif