mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 22:09:19 -07:00
24cf46aa5a
Prevents dragging in unnecessary headers into other including files.
27 lines
575 B
C++
27 lines
575 B
C++
// Copyright 2010 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <wx/dialog.h>
|
|
|
|
class wxStaticText;
|
|
|
|
class GCAdapterConfigDiag : public wxDialog
|
|
{
|
|
public:
|
|
GCAdapterConfigDiag(wxWindow* const parent, const wxString& name, const int tab_num = 0);
|
|
~GCAdapterConfigDiag();
|
|
|
|
void ScheduleAdapterUpdate();
|
|
void UpdateAdapter(wxCommandEvent& ev);
|
|
|
|
private:
|
|
wxStaticText* m_adapter_status;
|
|
int m_pad_id;
|
|
|
|
void OnAdapterRumble(wxCommandEvent& event);
|
|
void OnAdapterKonga(wxCommandEvent& event);
|
|
};
|