Tyro/src/TyroMain.cpp

118 lines
3.1 KiB
C++
Raw Normal View History

2015-03-30 14:50:10 -04:00
/***************************************************************
* Name: TyroMain.cpp
2015-03-30 14:50:10 -04:00
* Purpose: Code for Application Frame
* Author: Timothy J Warren (tim@timshomepage.net)
2015-03-30 14:50:10 -04:00
* Created: 2015-03-30
* Copyright: Timothy J Warren (https://timshomepage.net)
* License:
**************************************************************/
#ifdef WX_PRECOMP
#include "wx_pch.h"
#endif
#include "TyroMain.h"
BEGIN_EVENT_TABLE(TyroFrame, wxFrame)
EVT_CLOSE(TyroFrame::OnClose)
EVT_MENU(wxID_EXIT, TyroFrame::OnQuit)
EVT_MENU(wxID_ABOUT, TyroFrame::OnAbout)
2015-03-30 14:50:10 -04:00
END_EVENT_TABLE()
TyroFrame::TyroFrame(wxFrame *frame, const wxString& title)
: wxFrame(frame, -1, title)
2015-03-30 14:50:10 -04:00
{
// create a menu bar
wxMenuBar* mbar = new wxMenuBar();
// Create Base menus
wxMenu* fileMenu = new wxMenu(_T(""));
wxMenu* editMenu = new wxMenu(_T(""));
wxMenu* helpMenu = new wxMenu(_T(""));
// Add items to top-level menus
fileMenu->Append(wxID_NEW, _T("&New\tCtrl+N"), _T("Create a new file"));
fileMenu->AppendSeparator();
fileMenu->Append(wxID_OPEN, _T("&Open\tCtrl+0"), _T("Opens an existing file"));
fileMenu->Append(wxID_CLOSE, _T("&Close\tCtrl+W"), _T("Close the current document"));
fileMenu->Append(wxID_SAVE, _T("&Save\tCtrl+S"), _T("Save the content"));
fileMenu->AppendSeparator();
fileMenu->Append(wxID_EXIT, _T("&Quit\tCtrl+Q"), _T("Quit the application"));
editMenu->Append(wxID_UNDO, _T("&Undo\tCtrl+Z"), _T("Undo last action"));
editMenu->Append(wxID_REDO, _T("&Redo\tCtrl+Y"), _T("Redo last action"));
editMenu->AppendSeparator();
editMenu->Append(wxID_CUT, _T("Cu&t\tCtrl+X"), _T("Cut selected text"));
editMenu->Append(wxID_COPY, _T("&Copy\tCtrl+C"), _T("Copy selected text"));
editMenu->Append(wxID_PASTE, _T("&Paste\tCtrl+V"), _T("Paste contents of clipboard"));
helpMenu->Append(wxID_ABOUT, _T("&About...\tF1"), _T("Show info about this application"));
// Add the menus to the menubar
mbar->Append(fileMenu, _("&File"));
mbar->Append(editMenu, _("&Edit"));
mbar->Append(helpMenu, _("&Help"));
2015-03-30 14:50:10 -04:00
2015-03-30 16:01:24 -04:00
#ifdef __WXMAC__
wxMenuBar::MacSetCommonMenuBar(mbar);
2015-03-30 16:01:24 -04:00
#endif // __WXMAC__
SetMenuBar(mbar);
2015-03-30 14:50:10 -04:00
// create a status bar with some information about the used wxWidgets version
CreateStatusBar(2);
SetStatusText(_(""), 0);
SetStatusText(_(""), 1);
2015-03-31 14:22:10 -04:00
// Set up control layout
wxBoxSizer *base_sizer = new wxBoxSizer(wxVERTICAL);
2015-03-31 14:22:10 -04:00
base_sizer->Add(
CreateNotebook(),
1,
wxEXPAND | wxALL,
5
);
2015-03-31 14:22:10 -04:00
base_sizer->SetContainingWindow(this);
base_sizer->SetMinSize(800,600);
2015-03-31 14:22:10 -04:00
SetSizerAndFit(base_sizer);
2015-03-30 14:50:10 -04:00
}
2015-03-31 13:42:41 -04:00
TyroFrame::~TyroFrame() {}
2015-03-30 14:50:10 -04:00
2015-03-31 10:19:34 -04:00
wxAuiNotebook *TyroFrame::CreateNotebook()
{
wxAuiNotebook *ctrl = new wxAuiNotebook(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxAUI_NB_DEFAULT_STYLE);
2015-03-31 14:22:10 -04:00
2015-03-31 10:19:34 -04:00
return ctrl;
2015-03-31 10:19:34 -04:00
}
2015-03-30 14:50:10 -04:00
void TyroFrame::OnClose(wxCloseEvent &event)
{
Destroy();
}
void TyroFrame::OnMenuFileOpen(wxCommandEvent &event)
{
}
void TyroFrame::OnMenuFileSave(wxCommandEvent &event)
{
2015-03-30 14:50:10 -04:00
}
void TyroFrame::OnQuit(wxCommandEvent &event)
{
Destroy();
2015-03-30 14:50:10 -04:00
}
void TyroFrame::OnAbout(wxCommandEvent &event)
{
wxMessageBox(_T("Tyro, a text editor for all development\n Copyright 2015, Timothy J. Warren"), wxT("About Tyro"), wxOK| wxICON_INFORMATION, this);
2015-03-30 14:50:10 -04:00
}