DolphinWX: Split cheat window components into their own source files

This commit is contained in:
Lioncash
2014-10-18 17:32:50 -04:00
parent 4ddd54847c
commit f0769233e6
15 changed files with 958 additions and 867 deletions

View File

@ -0,0 +1,32 @@
// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#include <wx/dialog.h>
#include "Common/CommonTypes.h"
class wxCheckBox;
class wxCommandEvent;
class wxTextCtrl;
class wxWindow;
class CreateCodeDialog final : public wxDialog
{
public:
CreateCodeDialog(wxWindow* const parent, const u32 address);
private:
const u32 m_code_address;
wxTextCtrl* m_textctrl_name;
wxTextCtrl* m_textctrl_code;
wxTextCtrl* m_textctrl_value;
wxCheckBox* m_checkbox_use_hex;
void PressOK(wxCommandEvent&);
void PressCancel(wxCommandEvent&);
void OnEvent_Close(wxCloseEvent& ev);
};