summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/MemoryCheckDlg.h
blob: 135ff489baa8177595969bb76074d950872a786e (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
// Copyright 2008 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#pragma once

#include <wx/dialog.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);
};