2013-04-18 03:43:35 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-02-23 06:17:57 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-02-23 06:17:57 +00:00
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/dialog.h>
|
|
|
|
#include <wx/event.h>
|
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
#include <wx/string.h>
|
|
|
|
#include <wx/translation.h>
|
|
|
|
#include <wx/windowid.h>
|
|
|
|
|
|
|
|
class wxSpinButton;
|
|
|
|
class wxSpinEvent;
|
|
|
|
class wxTextCtrl;
|
|
|
|
class wxWindow;
|
|
|
|
|
|
|
|
namespace ActionReplay { struct ARCode; }
|
2009-02-23 06:17:57 +00:00
|
|
|
|
|
|
|
class CARCodeAddEdit : public wxDialog
|
|
|
|
{
|
2014-11-09 00:26:20 +00:00
|
|
|
public:
|
|
|
|
CARCodeAddEdit(int _selection, wxWindow* parent,
|
2014-12-02 03:56:18 +00:00
|
|
|
wxWindowID id = wxID_ANY,
|
2014-11-09 00:26:20 +00:00
|
|
|
const wxString& title = _("Edit ActionReplay Code"),
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_DIALOG_STYLE);
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxTextCtrl* EditCheatName;
|
|
|
|
wxSpinButton* EntrySelection;
|
|
|
|
wxTextCtrl* EditCheatCode;
|
|
|
|
|
|
|
|
void SaveCheatData(wxCommandEvent& event);
|
|
|
|
void ChangeEntry(wxSpinEvent& event);
|
|
|
|
void UpdateTextCtrl(ActionReplay::ARCode arCode);
|
|
|
|
|
|
|
|
int selection;
|
2009-02-23 06:17:57 +00:00
|
|
|
};
|