27 lines
580 B
C++
27 lines
580 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();
|
|
|
|
private:
|
|
void ScheduleAdapterUpdate();
|
|
|
|
void OnUpdateAdapter(wxCommandEvent& event);
|
|
void OnAdapterRumble(wxCommandEvent& event);
|
|
void OnAdapterKonga(wxCommandEvent& event);
|
|
|
|
wxStaticText* m_adapter_status;
|
|
int m_pad_id;
|
|
};
|