Files
dolphin/Source/Core/DolphinWX/ARCodeAddEdit.h
T

42 lines
941 B
C++
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
2014-02-22 23:36:30 +01: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>
2014-02-22 23:36:30 +01:00
class wxSpinButton;
class wxSpinEvent;
class wxTextCtrl;
class wxWindow;
namespace ActionReplay { struct ARCode; }
class CARCodeAddEdit : public wxDialog
{
2014-11-08 19:26:20 -05:00
public:
CARCodeAddEdit(int _selection, wxWindow* parent,
wxWindowID id = wxID_ANY,
2014-11-08 19:26:20 -05:00
const wxString& title = _("Edit ActionReplay Code"),
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxDEFAULT_DIALOG_STYLE);
2014-11-08 19:26:20 -05:00
private:
wxTextCtrl* EditCheatName;
wxSpinButton* EntrySelection;
wxTextCtrl* EditCheatCode;
2014-11-08 19:26:20 -05:00
void SaveCheatData(wxCommandEvent& event);
void ChangeEntry(wxSpinEvent& event);
void UpdateTextCtrl(ActionReplay::ARCode arCode);
2014-11-08 19:26:20 -05:00
int selection;
};