/* epple2 Copyright (C) 2022 by Christopher A. Mosher This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Created on December 3, 2022, 3:02 PM */ #include "E2wxFrame.h" #include "E2wxApp.h" #include "PreferencesDialog.h" #include "gui.h" #include #include #include #include enum E2MenuID { ID_MENUITEM_POWER = wxID_HIGHEST+1 }; wxBEGIN_EVENT_TABLE(E2wxFrame, wxFrame) EVT_MENU(wxID_EXIT, E2wxFrame::OnExit) EVT_MENU(wxID_PREFERENCES, E2wxFrame::OnPreferences) EVT_MENU(wxID_ABOUT, E2wxFrame::OnAbout) EVT_MENU(ID_MENUITEM_POWER, E2wxFrame::OnTogglePower) EVT_CLOSE(E2wxFrame::HandleUserQuitRequest) wxEND_EVENT_TABLE() E2wxFrame::E2wxFrame() : wxFrame(nullptr, wxID_ANY, "epple2") { } E2wxFrame::~E2wxFrame() { } void E2wxFrame::DoInit() { InitMenuBar(); InitStatusBar(); if (!wxPersistentRegisterAndRestore(this, "main")) { Center(); } } void E2wxFrame::InitMenuBar() { // TODO move menu def to xrc wxMenuBar *menuBar = new wxMenuBar(); SetMenuBar(menuBar); wxMenu *menuFile = new wxMenu(); menuBar->Append(menuFile, "&File"); menuFile->Append(wxID_EXIT); wxMenu *menuEdit = new wxMenu(); menuBar->Append(menuEdit, "&Edit"); menuEdit->Append(wxID_PREFERENCES); wxMenu *menuMachine = new wxMenu(); menuBar->Append(menuMachine, "&Machine"); menuMachine->Append(ID_MENUITEM_POWER, "Toggle Power"); wxMenu *menuHelp = new wxMenu(); menuBar->Append(menuHelp, "&Help"); menuHelp->Append(wxID_ABOUT); } void E2wxFrame::InitStatusBar() { CreateStatusBar(); SetStatusText("Welcome to "+wxGetApp().GetID()); } void E2wxFrame::OnExit(wxCommandEvent& event) { Close(false); } void E2wxFrame::OnAbout(wxCommandEvent& event) { wxString msg = ""; msg += wxGetApp().GetID()+"\n"; msg += "version: "+wxGetApp().GetVersion()+"\n"; msg += "Current log file:\n"; msg += wxGetApp().GetLogFile().c_str(); wxMessageBox(msg, "About "+wxGetApp().GetID(), wxOK | wxICON_INFORMATION); } void E2wxFrame::OnPreferences(wxCommandEvent& event) { PreferencesDialog *dlg = new PreferencesDialog(this); dlg->OnInit(); dlg->ShowModal(); } void E2wxFrame::OnTogglePower(wxCommandEvent& event) { GUI::queueTogglePower(); } void E2wxFrame::HandleUserQuitRequest(wxCloseEvent& event) { // TODO how to handle event.CanVeto() ? I'd like to auto-save everything if (wxGetApp().EnsureCanQuit()) { event.Skip(); } else { event.Veto(); } }