2015-10-27 19:07:41 +00:00
|
|
|
/* GamepadConfiguration.h
|
|
|
|
* PCSX2 Dev Team
|
2015-10-17 16:57:28 +00:00
|
|
|
* Copyright (C) 2015
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifndef __GAMEPADCONFIGURATION_H__
|
|
|
|
#define __GAMEPADCONFIGURATION_H__
|
|
|
|
|
|
|
|
#include <wx/wx.h>
|
|
|
|
#include <wx/frame.h>
|
|
|
|
#include <wx/window.h>
|
|
|
|
#include <wx/button.h>
|
|
|
|
#include <wx/checkbox.h>
|
|
|
|
#include <wx/slider.h>
|
|
|
|
#include "GamePad.h"
|
|
|
|
#include "keyboard.h"
|
|
|
|
#include "onepad.h"
|
|
|
|
|
2016-07-20 08:06:29 +00:00
|
|
|
class GamepadConfiguration : public wxDialog
|
2015-10-17 16:57:28 +00:00
|
|
|
{
|
2016-09-04 12:10:02 +00:00
|
|
|
wxPanel *m_pan_gamepad_config;
|
2017-04-11 16:48:56 +00:00
|
|
|
wxCheckBox *m_cb_rumble;
|
2015-11-29 14:42:42 +00:00
|
|
|
wxSlider *m_sl_rumble_intensity, *m_sl_joystick_sensibility;
|
2017-04-16 15:51:50 +00:00
|
|
|
wxButton *m_bt_ok;
|
2016-03-28 15:46:03 +00:00
|
|
|
wxStaticText *m_lbl_rumble_intensity;
|
2017-04-16 15:51:50 +00:00
|
|
|
wxChoice *m_joy_map;
|
2015-11-29 14:42:42 +00:00
|
|
|
|
2016-07-26 07:08:03 +00:00
|
|
|
u32 m_pad_id;
|
2015-10-17 16:57:28 +00:00
|
|
|
|
|
|
|
// methods
|
|
|
|
void repopulate();
|
|
|
|
// Events
|
2016-09-04 12:10:02 +00:00
|
|
|
void OnButtonClicked(wxCommandEvent &);
|
|
|
|
void OnSliderReleased(wxCommandEvent &);
|
|
|
|
void OnCheckboxChange(wxCommandEvent &);
|
2017-04-16 15:51:50 +00:00
|
|
|
void OnChoiceChange(wxCommandEvent &);
|
2015-10-17 16:57:28 +00:00
|
|
|
|
|
|
|
public:
|
2016-09-04 12:10:02 +00:00
|
|
|
GamepadConfiguration(int, wxWindow *);
|
2015-10-17 16:57:28 +00:00
|
|
|
void InitGamepadConfiguration();
|
|
|
|
};
|
|
|
|
|
2016-10-16 19:39:56 +00:00
|
|
|
#endif // __GAMEPADCONFIGURATION_H__
|