2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:43:35 +00:00
|
|
|
// 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>
|
|
|
|
|
|
|
|
class wxSpinButton;
|
|
|
|
class wxSpinEvent;
|
|
|
|
class wxTextCtrl;
|
|
|
|
|
|
|
|
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:
|
2015-03-06 11:26:40 +00:00
|
|
|
CARCodeAddEdit(int _selection, std::vector<ActionReplay::ARCode>* _arCodes,
|
2015-02-24 23:32:17 +00:00
|
|
|
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;
|
|
|
|
|
2015-03-06 11:26:40 +00:00
|
|
|
std::vector<ActionReplay::ARCode>* arCodes;
|
2015-02-24 23:32:17 +00:00
|
|
|
|
2014-11-09 00:26:20 +00:00
|
|
|
void SaveCheatData(wxCommandEvent& event);
|
|
|
|
void ChangeEntry(wxSpinEvent& event);
|
|
|
|
void UpdateTextCtrl(ActionReplay::ARCode arCode);
|
|
|
|
|
|
|
|
int selection;
|
2009-02-23 06:17:57 +00:00
|
|
|
};
|