96 lines
2.7 KiB
C++
96 lines
2.7 KiB
C++
#ifndef _plat_wxwidgets__window_mainwindow__hpp__included__
|
|
#define _plat_wxwidgets__window_mainwindow__hpp__included__
|
|
|
|
#include "core/filedownload.hpp"
|
|
#include "core/window.hpp"
|
|
#include "platform/wxwidgets/window_status.hpp"
|
|
#include "platform/wxwidgets/menu_recent.hpp"
|
|
#include "platform/wxwidgets/menu_loadrom.hpp"
|
|
#include "platform/wxwidgets/menu_projects.hpp"
|
|
#include "library/dispatch.hpp"
|
|
#include "library/recentfiles.hpp"
|
|
|
|
#include <stack>
|
|
|
|
#include <wx/string.h>
|
|
#include <wx/wx.h>
|
|
|
|
class emulator_instance;
|
|
|
|
class wxwin_mainwindow : public wxFrame
|
|
{
|
|
public:
|
|
class panel : public wxPanel
|
|
{
|
|
public:
|
|
panel(wxWindow* win, emulator_instance& _inst);
|
|
void on_paint(wxPaintEvent& e);
|
|
void request_paint();
|
|
void on_erase(wxEraseEvent& e);
|
|
void on_keyboard_down(wxKeyEvent& e);
|
|
void on_keyboard_up(wxKeyEvent& e);
|
|
void on_mouse(wxMouseEvent& e);
|
|
private:
|
|
emulator_instance& inst;
|
|
};
|
|
wxwin_mainwindow(emulator_instance& _inst, bool fscreen);
|
|
~wxwin_mainwindow();
|
|
void request_paint();
|
|
void notify_update() throw();
|
|
void notify_update_status() throw();
|
|
void notify_resized() throw();
|
|
void notify_exit() throw();
|
|
void refresh_title() throw();
|
|
void on_close(wxCloseEvent& e);
|
|
void menu_start(wxString name);
|
|
void menu_special(wxString name, wxMenu* menu);
|
|
wxMenuItem* menu_special_sub(wxString name, wxMenu* menu);
|
|
void menu_entry(int id, wxString name);
|
|
void menu_entry_check(int id, wxString name);
|
|
void menu_start_sub(wxString name);
|
|
void menu_end_sub();
|
|
bool menu_ischecked(int id);
|
|
void menu_check(int id, bool newstate);
|
|
void menu_enable(int id, bool newstate);
|
|
void menu_separator();
|
|
void handle_menu_click(wxCommandEvent& e);
|
|
void update_statusbar();
|
|
void action_updated();
|
|
void enter_or_leave_fullscreen(bool fs);
|
|
void request_rom(rom_request& req);
|
|
recent_menu<recentfiles::multirom>* recent_roms;
|
|
recent_menu<recentfiles::path>* recent_movies;
|
|
recent_menu<recentfiles::path>* recent_scripts;
|
|
loadrom_menu* loadroms;
|
|
file_download* download_in_progress;
|
|
private:
|
|
void do_load_rom_image(core_type* t);
|
|
void handle_menu_click_cancelable(wxCommandEvent& e);
|
|
void project_selected(const std::string& id);
|
|
emulator_instance& inst;
|
|
panel* gpanel;
|
|
wxMenu* current_menu;
|
|
wxMenuBar* menubar;
|
|
wxStatusBar* statusbar;
|
|
wxwin_status::panel* spanel;
|
|
bool spanel_shown;
|
|
wxwin_status* mwindow;
|
|
wxFlexGridSizer* toplevel;
|
|
std::map<int, wxMenuItem*> checkitems;
|
|
std::stack<wxMenu*> upper;
|
|
void* sysmenu;
|
|
void* ahmenu;
|
|
void* sounddev1;
|
|
void* sounddev2;
|
|
void* dmenu;
|
|
projects_menu* projects;
|
|
wxTimer* focus_timer;
|
|
wxTimer* status_timer;
|
|
struct dispatch::target<> corechange;
|
|
struct dispatch::target<> titlechange;
|
|
struct dispatch::target<> newcore;
|
|
struct dispatch::target<bool> unmuted;
|
|
struct dispatch::target<bool> modechange;
|
|
};
|
|
|
|
#endif
|