mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-27 00:00:07 -06:00
start getting somewhere with that input config dialog
This commit is contained in:
@ -37,19 +37,28 @@ private:
|
||||
|
||||
void OnDerp(wxCommandEvent& event);
|
||||
|
||||
void OnConfigureKey(wxCommandEvent& event);
|
||||
void OnConfigureJoy(wxCommandEvent& event);
|
||||
void OnConfigureKey(wxMouseEvent& event);
|
||||
void OnConfigureJoy(wxMouseEvent& event);
|
||||
|
||||
void OnPoll(wxTimerEvent& event);
|
||||
|
||||
void OnKeyDown(wxKeyEvent& event);
|
||||
void OnFancybuttonHover(wxMouseEvent& event);
|
||||
|
||||
void JoyMappingName(int id, char* str);
|
||||
|
||||
SDL_Window* sdlwin;
|
||||
wxPanel* keycatcher;
|
||||
|
||||
const u8* keystate;
|
||||
int nkeys;
|
||||
int njoys;
|
||||
SDL_Joystick* joy;
|
||||
|
||||
wxTimer* polltimer;
|
||||
int pollid;
|
||||
wxButton* pollbtn;
|
||||
wxStaticText* pollbtn;
|
||||
wxString pollbtntext;
|
||||
|
||||
int keymapping[12];
|
||||
int joymapping[12];
|
||||
|
Reference in New Issue
Block a user