mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-31 22:00:10 +01:00
25 lines
408 B
C++
25 lines
408 B
C++
#pragma once
|
|
|
|
#include <wx/wx.h>
|
|
|
|
enum CgDisasmIds
|
|
{
|
|
id_open_file,
|
|
id_clear
|
|
};
|
|
|
|
class CgDisasm : public wxFrame
|
|
{
|
|
private:
|
|
wxTextCtrl* m_disasm_text;
|
|
wxTextCtrl* m_glsl_text;
|
|
DECLARE_EVENT_TABLE();
|
|
|
|
public:
|
|
CgDisasm(wxWindow* parent);
|
|
|
|
void OpenCg(wxCommandEvent& event);
|
|
virtual void OnSize(wxSizeEvent& event);
|
|
void OnRightClick(wxMouseEvent& event);
|
|
void OnContextMenu(wxCommandEvent& event);
|
|
}; |