Rename the main frame class
This commit is contained in:
parent
ce6a93929b
commit
090055ffc8
@ -6,8 +6,4 @@ END_EVENT_TABLE()
|
||||
DocFrame::DocFrame(wxWindow *parent, wxWindowID id)
|
||||
{
|
||||
editor = new wxStyledTextCtrl(parent);
|
||||
}
|
||||
|
||||
DocFrame::~DocFrame()
|
||||
{
|
||||
}
|
||||
}
|
@ -1,6 +1,7 @@
|
||||
#ifndef TYRODOC_FRAME_H
|
||||
#define TYRODOC_FRAME_H
|
||||
|
||||
#include "wx/wxprec.h"
|
||||
#ifndef WX_PRECOMP
|
||||
#include <wx/wx.h>
|
||||
#endif
|
||||
@ -11,10 +12,9 @@ class DocFrame: public wxWindow
|
||||
{
|
||||
public:
|
||||
DocFrame(wxWindow *parent, wxWindowID id);
|
||||
~DocFrame();
|
||||
private:
|
||||
wxStyledTextCtrl *editor;
|
||||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
|
||||
#endif // TYRODOC_FRAM_H
|
||||
#endif // TYRODOC_FRAME_H
|
||||
|
50
src/Main.cpp
50
src/Main.cpp
@ -14,15 +14,15 @@
|
||||
#include "Main.h"
|
||||
|
||||
|
||||
BEGIN_EVENT_TABLE(TyroFrame, wxFrame)
|
||||
EVT_CLOSE(TyroFrame::OnClose)
|
||||
EVT_MENU(wxID_OPEN, TyroFrame::OnMenuFileOpen)
|
||||
EVT_MENU(wxID_SAVE, TyroFrame::OnMenuFileSave)
|
||||
EVT_MENU(wxID_EXIT, TyroFrame::OnQuit)
|
||||
EVT_MENU(wxID_ABOUT, TyroFrame::OnAbout)
|
||||
BEGIN_EVENT_TABLE(MainFrame, wxFrame)
|
||||
EVT_CLOSE(MainFrame::OnClose)
|
||||
EVT_MENU(wxID_OPEN, MainFrame::OnMenuFileOpen)
|
||||
EVT_MENU(wxID_SAVE, MainFrame::OnMenuFileSave)
|
||||
EVT_MENU(wxID_EXIT, MainFrame::OnQuit)
|
||||
EVT_MENU(wxID_ABOUT, MainFrame::OnAbout)
|
||||
END_EVENT_TABLE()
|
||||
|
||||
TyroFrame::TyroFrame(wxFrame *frame, const wxString& title)
|
||||
MainFrame::MainFrame(wxFrame *frame, const wxString& title)
|
||||
: wxFrame(frame, -1, title)
|
||||
{
|
||||
this->SetupMenu();
|
||||
@ -33,12 +33,7 @@ TyroFrame::TyroFrame(wxFrame *frame, const wxString& title)
|
||||
// Set up control layout
|
||||
wxBoxSizer *base_sizer = new wxBoxSizer(wxVERTICAL);
|
||||
|
||||
base_sizer->Add(
|
||||
CreateNotebook(),
|
||||
1,
|
||||
wxEXPAND | wxALL,
|
||||
5
|
||||
);
|
||||
base_sizer->Add(CreateNotebook(), 1, wxEXPAND | wxALL, 5);
|
||||
|
||||
base_sizer->SetContainingWindow(this);
|
||||
base_sizer->SetMinSize(800,600);
|
||||
@ -47,20 +42,21 @@ TyroFrame::TyroFrame(wxFrame *frame, const wxString& title)
|
||||
}
|
||||
|
||||
|
||||
TyroFrame::~TyroFrame() {}
|
||||
MainFrame::~MainFrame() {}
|
||||
|
||||
void TyroFrame::SetupStatusBar()
|
||||
void MainFrame::SetupStatusBar()
|
||||
{
|
||||
CreateStatusBar(2);
|
||||
CreateStatusBar(2);
|
||||
SetStatusText(_(""), 0);
|
||||
SetStatusText(_(""), 1);
|
||||
}
|
||||
|
||||
void TyroFrame::SetupToolbar()
|
||||
void MainFrame::SetupToolbar()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void TyroFrame::SetupMenu()
|
||||
void MainFrame::SetupMenu()
|
||||
{
|
||||
// create a menu bar
|
||||
wxMenuBar* mbar = new wxMenuBar();
|
||||
@ -99,24 +95,24 @@ void TyroFrame::SetupMenu()
|
||||
SetMenuBar(mbar);
|
||||
}
|
||||
|
||||
wxAuiNotebook *TyroFrame::CreateNotebook()
|
||||
wxAuiNotebook *MainFrame::CreateNotebook()
|
||||
{
|
||||
|
||||
wxAuiNotebook *ctrl = new wxAuiNotebook(this);
|
||||
|
||||
DocFrame *editor = new DocFrame(ctrl, wxID_ANY);
|
||||
//wxWindow *editor = new wxWindow(ctrl, wxID_ANY);
|
||||
//DocFrame *editor = new DocFrame(ctrl, wxID_ANY);
|
||||
wxWindow *editor = new wxWindow(ctrl, wxID_ANY);
|
||||
|
||||
//ctrl->AddPage(editor, "Untitled");
|
||||
ctrl->AddPage(editor, "Untitled");
|
||||
return ctrl;
|
||||
}
|
||||
|
||||
void TyroFrame::OnClose(wxCloseEvent &WXUNUSED(event))
|
||||
void MainFrame::OnClose(wxCloseEvent &WXUNUSED(event))
|
||||
{
|
||||
Destroy();
|
||||
}
|
||||
|
||||
void TyroFrame::OnMenuFileOpen(wxCommandEvent &WXUNUSED(event))
|
||||
void MainFrame::OnMenuFileOpen(wxCommandEvent &WXUNUSED(event))
|
||||
{
|
||||
wxFileDialog *OpenDialog = new wxFileDialog(this, _T("Choose a file"), _(""), _(""), _("*.*"), wxFD_OPEN);
|
||||
|
||||
@ -127,16 +123,16 @@ void TyroFrame::OnMenuFileOpen(wxCommandEvent &WXUNUSED(event))
|
||||
OpenDialog->Close();
|
||||
}
|
||||
|
||||
void TyroFrame::OnMenuFileSave(wxCommandEvent &WXUNUSED(event))
|
||||
void MainFrame::OnMenuFileSave(wxCommandEvent &WXUNUSED(event))
|
||||
{
|
||||
}
|
||||
|
||||
void TyroFrame::OnQuit(wxCommandEvent &WXUNUSED(event))
|
||||
void MainFrame::OnQuit(wxCommandEvent &WXUNUSED(event))
|
||||
{
|
||||
Destroy();
|
||||
}
|
||||
|
||||
void TyroFrame::OnAbout(wxCommandEvent &WXUNUSED(event))
|
||||
void MainFrame::OnAbout(wxCommandEvent &WXUNUSED(event))
|
||||
{
|
||||
wxMessageBox(_T("Tyro, a text editor for all development\n Copyright 2015, Timothy J. Warren"), wxT("About Tyro"), wxOK| wxICON_INFORMATION, this);
|
||||
}
|
||||
|
15
src/Main.h
15
src/Main.h
@ -10,18 +10,21 @@
|
||||
#ifndef TYROMAIN_H
|
||||
#define TYROMAIN_H
|
||||
|
||||
#ifdef WX_PRECOMP
|
||||
#include "wx_pch.h"
|
||||
#endif
|
||||
#ifndef WX_PRECOMP
|
||||
#include <wx/wx.h>
|
||||
#include <wx/wx.h>
|
||||
#endif
|
||||
|
||||
#include "TyroApp.h"
|
||||
#include "DocFrame.h"
|
||||
|
||||
class TyroFrame: public wxFrame
|
||||
class MainFrame: public wxFrame
|
||||
{
|
||||
public:
|
||||
TyroFrame(wxFrame *frame, const wxString& title);
|
||||
~TyroFrame();
|
||||
MainFrame(wxFrame *frame, const wxString& title);
|
||||
~MainFrame();
|
||||
private:
|
||||
enum
|
||||
{
|
||||
@ -29,8 +32,8 @@ class TyroFrame: public wxFrame
|
||||
idMenuAbout
|
||||
};
|
||||
void SetupMenu();
|
||||
void SetupToolbar();
|
||||
void SetupStatusBar();
|
||||
void SetupToolbar();
|
||||
void SetupStatusBar();
|
||||
void OnMenuFileOpen(wxCommandEvent &event);
|
||||
void OnMenuFileSave(wxCommandEvent &event);
|
||||
void OnClose(wxCloseEvent &event);
|
||||
|
@ -18,7 +18,7 @@ IMPLEMENT_APP(TyroApp);
|
||||
|
||||
bool TyroApp::OnInit()
|
||||
{
|
||||
TyroFrame* frame = new TyroFrame(0L, _("Tyro"));
|
||||
MainFrame* frame = new MainFrame(0L, _("Tyro"));
|
||||
|
||||
frame->CenterOnScreen();
|
||||
frame->Show(true);
|
||||
|
@ -10,13 +10,17 @@
|
||||
#ifndef TYROAPP_H
|
||||
#define TYROAPP_H
|
||||
|
||||
#include "wx/wxprec.h"
|
||||
|
||||
#include <wx/app.h>
|
||||
#include <wx/toolbar.h>
|
||||
#include <wx/menu.h>
|
||||
#include <wx/debug.h>
|
||||
#include <wx/aui/aui.h>
|
||||
|
||||
class TyroApp : public wxApp
|
||||
{
|
||||
friend class TyroFrame;
|
||||
friend class MainFrame;
|
||||
public:
|
||||
virtual bool OnInit();
|
||||
virtual int OnExit(wxCommandEvent &WXUNUSED(event));
|
||||
|
Loading…
Reference in New Issue
Block a user