mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-05-21 10:41:51 +00:00
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@25 8ced0084-cf51-0410-be5f-012b33b47a6e
71 lines
1.5 KiB
C++
71 lines
1.5 KiB
C++
//__________________________________________________________________________________________________
|
|
// F|RES and ector 2003-2008
|
|
//
|
|
|
|
#ifndef __BREAKPOINTWINDOW_h__
|
|
#define __BREAKPOINTWINDOW_h__
|
|
|
|
class CBreakPointView;
|
|
class CCodeWindow;
|
|
class wxListEvent;
|
|
|
|
#undef BREAKPOINT_WINDOW_STYLE
|
|
#define BREAKPOINT_WINDOW_STYLE wxCAPTION | wxSYSTEM_MENU | wxCLOSE_BOX | wxRESIZE_BORDER
|
|
|
|
class CBreakPointWindow
|
|
: public wxFrame
|
|
{
|
|
private:
|
|
|
|
DECLARE_EVENT_TABLE();
|
|
|
|
public:
|
|
|
|
CBreakPointWindow(CCodeWindow* _pCodeWindow, wxWindow* parent, wxWindowID id = 1, const wxString& title = wxT("Breakpoints"),
|
|
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(400, 250),
|
|
long style = BREAKPOINT_WINDOW_STYLE);
|
|
|
|
virtual ~CBreakPointWindow();
|
|
|
|
void NotifyUpdate();
|
|
|
|
|
|
private:
|
|
|
|
enum
|
|
{
|
|
ID_TOOLBAR = 500,
|
|
ID_BPS = 1002,
|
|
IDM_DELETE,
|
|
IDM_ADD_BREAKPOINT,
|
|
IDM_ADD_MEMORYCHECK
|
|
};
|
|
|
|
enum
|
|
{
|
|
Toolbar_Delete,
|
|
Toolbar_Add_BreakPoint,
|
|
Toolbar_Add_Memcheck,
|
|
Bitmaps_max
|
|
};
|
|
|
|
CBreakPointView* m_BreakPointListView;
|
|
CCodeWindow* m_pCodeWindow;
|
|
|
|
wxBitmap m_Bitmaps[Bitmaps_max];
|
|
|
|
void OnClose(wxCloseEvent& event);
|
|
void CreateGUIControls();
|
|
|
|
void RecreateToolbar();
|
|
void PopulateToolbar(wxToolBar* toolBar);
|
|
void InitBitmaps();
|
|
|
|
void OnDelete(wxCommandEvent& event);
|
|
void OnAddBreakPoint(wxCommandEvent& event);
|
|
void OnAddMemoryCheck(wxCommandEvent& event);
|
|
void OnActivated(wxListEvent& event);
|
|
};
|
|
|
|
#endif
|