From d1b893e6757270b0f246a7657d7b6701dcea3b87 Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Wed, 27 Jul 2016 23:41:41 -0300 Subject: Main frame under construction Ribbon bar icons done, all controllers set, does nothing --- Project/wxcrafter.h | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 Project/wxcrafter.h (limited to 'Project/wxcrafter.h') diff --git a/Project/wxcrafter.h b/Project/wxcrafter.h deleted file mode 100644 index b8b13da..0000000 --- a/Project/wxcrafter.h +++ /dev/null @@ -1,33 +0,0 @@ -#ifndef WXCRAFTER_H -#define WXCRAFTER_H - -#include -#include -#include -#include -#include -#include -#include -#include - -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 -- cgit