dolphin/Source/Core/DolphinWX/Debugger/MemoryCheckDlg.h

37 lines
848 B
C
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
2015-05-17 23:08:10 +00:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
2014-02-22 22:36:30 +00:00
#include <wx/dialog.h>
class wxRadioButton;
class wxStaticText;
2014-02-22 22:36:30 +00:00
class wxTextCtrl;
class MemoryCheckDlg : public wxDialog
{
2014-10-19 02:55:23 +00:00
public:
MemoryCheckDlg(wxWindow* parent);
2014-10-19 02:55:23 +00:00
private:
wxStaticText* m_textAddress;
wxStaticText* m_textStartAddress;
wxStaticText* m_textEndAddress;
wxRadioButton* m_radioLog;
wxRadioButton* m_radioBreak;
wxRadioButton* m_radioBreakLog;
wxRadioButton* m_radioRead;
wxRadioButton* m_radioWrite;
wxRadioButton* m_radioReadWrite;
wxRadioButton* m_radioAddress;
wxRadioButton* m_radioRange;
wxTextCtrl* m_pEditAddress;
wxTextCtrl* m_pEditEndAddress;
wxTextCtrl* m_pEditStartAddress;
void OnRadioButtonClick(wxCommandEvent& event);
void OnOK(wxCommandEvent& event);
};