2015-04-11 01:24:45 -04:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
2015-05-18 01:08:10 +02:00
|
|
|
// Licensed under GPLv2+
|
2015-04-11 01:24:45 -04:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <wx/dialog.h>
|
|
|
|
|
2017-06-19 02:20:14 -07:00
|
|
|
class GameListCtrl;
|
2015-04-11 01:24:45 -04:00
|
|
|
class wxListBox;
|
|
|
|
|
|
|
|
class ChangeGameDialog final : public wxDialog
|
|
|
|
{
|
|
|
|
public:
|
2017-06-19 02:20:14 -07:00
|
|
|
ChangeGameDialog(wxWindow* parent, const GameListCtrl* const game_list);
|
2015-08-16 01:08:51 -04:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
wxString GetChosenGameName() const;
|
2015-04-11 01:24:45 -04:00
|
|
|
|
|
|
|
private:
|
2016-06-24 10:43:46 +02:00
|
|
|
void OnPick(wxCommandEvent& event);
|
2015-04-11 01:24:45 -04:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
wxListBox* m_game_lbox;
|
|
|
|
wxString m_game_name;
|
2015-04-11 01:24:45 -04:00
|
|
|
};
|