summaryrefslogtreecommitdiffstats
path: root/Project/wxcrafter.h
diff options
context:
space:
mode:
authorThales Lima Oliveira <thaleslima.ufu@gmail.com>2016-07-27 23:41:41 -0300
committerThales Lima Oliveira <thaleslima.ufu@gmail.com>2016-07-27 23:41:41 -0300
commitd1b893e6757270b0f246a7657d7b6701dcea3b87 (patch)
tree6024f7b4dda29930150eddb9f51881b275903318 /Project/wxcrafter.h
parent2bfb6cffd86cb771918dde12e10704384d534714 (diff)
downloadPSP.git-d1b893e6757270b0f246a7657d7b6701dcea3b87.tar.gz
PSP.git-d1b893e6757270b0f246a7657d7b6701dcea3b87.tar.xz
PSP.git-d1b893e6757270b0f246a7657d7b6701dcea3b87.zip
Main frame under construction
Ribbon bar icons done, all controllers set, does nothing
Diffstat (limited to 'Project/wxcrafter.h')
-rw-r--r--Project/wxcrafter.h33
1 files changed, 0 insertions, 33 deletions
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 <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