diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2016-07-27 16:16:29 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2016-07-27 16:16:29 -0300 |
commit | 2bfb6cffd86cb771918dde12e10704384d534714 (patch) | |
tree | 4a0a9f9ae899c2f5f536208c495fdc0ee4f58346 /Project/wxcrafter.h | |
parent | b23b552bac7a5c5a5e934ab3181180877bf93a72 (diff) | |
download | PSP.git-2bfb6cffd86cb771918dde12e10704384d534714.tar.gz PSP.git-2bfb6cffd86cb771918dde12e10704384d534714.tar.xz PSP.git-2bfb6cffd86cb771918dde12e10704384d534714.zip |
Projeto base
nenhum código implementado ainda.
Diffstat (limited to 'Project/wxcrafter.h')
-rw-r--r-- | Project/wxcrafter.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Project/wxcrafter.h b/Project/wxcrafter.h new file mode 100644 index 0000000..b8b13da --- /dev/null +++ b/Project/wxcrafter.h @@ -0,0 +1,33 @@ +#ifndef WXCRAFTER_H +#define WXCRAFTER_H + +#include <wx/settings.h> +#include <wx/xrc/xmlres.h> +#include <wx/xrc/xh_bmp.h> +#include <wx/frame.h> +#include <wx/sizer.h> +#include <wx/panel.h> +#include <wx/menu.h> +#include <wx/toolbar.h> + +class MainFrameBaseClass : public wxFrame +{ +protected: + wxPanel* m_mainPanel; + wxMenuBar* m_menuBar; + wxMenu* m_name6; + wxMenuItem* m_menuItem7; + wxMenu* m_name8; + wxMenuItem* m_menuItem9; + wxToolBar* m_mainToolbar; + +protected: + virtual void OnExit(wxCommandEvent& event) { event.Skip(); } + virtual void OnAbout(wxCommandEvent& event) { event.Skip(); } + +public: + MainFrameBaseClass(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("My Frame"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(-1,-1), long style = wxCAPTION|wxRESIZE_BORDER|wxMAXIMIZE_BOX|wxMINIMIZE_BOX|wxSYSTEM_MENU|wxCLOSE_BOX); + virtual ~MainFrameBaseClass(); +}; + +#endif |