mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
DolphinWX: Break the netplay UI controls into separate classes.
This commit is contained in:
parent
1a18cad178
commit
bd28d260ce
14 changed files with 1284 additions and 1167 deletions
22
Source/Core/DolphinWX/NetPlay/ChangeGameDialog.h
Normal file
22
Source/Core/DolphinWX/NetPlay/ChangeGameDialog.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
// Copyright 2015 Dolphin Emulator Project
|
||||
// Licensed under GPLv2
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <wx/dialog.h>
|
||||
|
||||
class CGameListCtrl;
|
||||
class wxListBox;
|
||||
|
||||
class ChangeGameDialog final : public wxDialog
|
||||
{
|
||||
public:
|
||||
ChangeGameDialog(wxWindow* parent, const CGameListCtrl* const game_list, wxString& game_name);
|
||||
|
||||
private:
|
||||
void OnPick(wxCommandEvent& event);
|
||||
|
||||
wxListBox* m_game_lbox;
|
||||
wxString& m_game_name;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue