2013-04-18 03:43:35 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/dialog.h>
|
|
|
|
#include <wx/event.h>
|
2011-02-27 23:03:08 +00:00
|
|
|
|
|
|
|
class CBreakPointWindow;
|
2014-02-22 22:36:30 +00:00
|
|
|
class wxTextCtrl;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
class BreakPointDlg : public wxDialog
|
|
|
|
{
|
2011-02-27 23:03:08 +00:00
|
|
|
public:
|
|
|
|
BreakPointDlg(CBreakPointWindow *_Parent);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2011-02-27 23:03:08 +00:00
|
|
|
private:
|
|
|
|
CBreakPointWindow *Parent;
|
|
|
|
wxTextCtrl *m_pEditAddress;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2011-03-17 04:26:01 +00:00
|
|
|
void OnOK(wxCommandEvent& event);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2011-02-27 23:03:08 +00:00
|
|
|
DECLARE_EVENT_TABLE();
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|