summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/MemoryCheckDlg.h
blob: bb392db1b85c961f3c75cb35180838979fa4e565 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.

#pragma once

#include <wx/dialog.h>
#include <wx/event.h>

class CBreakPointWindow;
class wxCheckBox;
class wxTextCtrl;

class MemoryCheckDlg : public wxDialog
{
	public:
		MemoryCheckDlg(CBreakPointWindow *parent);

	private:
		CBreakPointWindow *m_parent;
		wxCheckBox* m_pReadFlag;
		wxCheckBox* m_pWriteFlag;
		wxCheckBox* m_log_flag;
		wxCheckBox* m_break_flag;
		wxTextCtrl* m_pEditEndAddress;
		wxTextCtrl* m_pEditStartAddress;

		void OnOK(wxCommandEvent& event);

		DECLARE_EVENT_TABLE();
};