rpcsx/rpcs3/Gui/MainFrame.h
DH b35dfdf29b - Improved PPCDecoder.
- Improved PPUDecoder.
- Improved Debugger GUI.

CompilerELF:
 - Added all PPU instructions.
 - Fixed analyzer crash.
2013-07-03 19:17:16 +03:00

33 lines
737 B
C++

#pragma once
#include "GameViewer.h"
#include "wx/aui/aui.h"
class MainFrame : public FrameBase
{
GameViewer* m_game_viewer;
wxAuiManager m_aui_mgr;
AppConnector m_app_connector;
public:
MainFrame();
~MainFrame();
void AddPane(wxWindow* wind, const wxString& caption, int flags);
void DoSettings(bool load);
private:
void OnQuit(wxCloseEvent& event);
void BootGame(wxCommandEvent& event);
void BootElf(wxCommandEvent& event);
void BootSelf(wxCommandEvent& event);
void Pause(wxCommandEvent& event);
void Stop(wxCommandEvent& event);
void SendExit(wxCommandEvent& event);
void Config(wxCommandEvent& event);
void UpdateUI(wxCommandEvent& event);
void OnKeyDown(wxKeyEvent& event);
private:
DECLARE_EVENT_TABLE()
};