#ifndef _wx_HelloWorldMainFrameInteractor_h_ #define _wx_HelloWorldMainFrameInteractor_h_ #include "wxHelloWorldMainFrame.h" /** This class aims at defining the virtuals functions (=callbacks) of the MainFrame class, that is used only to build the user interface. */ class wxHelloWorldMainFrameInteractor: public wxHelloWorldMainFrame { public: wxHelloWorldMainFrameInteractor (wxWindow* parent, int id=-1, const wxString& title=wxT(""), const wxPoint& pos=wxDefaultPosition, const wxSize& size=wxDefaultSize, long style=wxDEFAULT_FRAME_STYLE); virtual ~wxHelloWorldMainFrameInteractor(){}; /** This function will open a file dialog, read a file and input the file in our four views. */ void OnOpenButton (wxCommandEvent& ); protected: private: }; #endif