2015-10-27 19:07:41 +00:00
|
|
|
/* JoystickConfiguration.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 __JOYSTICKCONFIGURATION_H__
|
|
|
|
#define __JOYSTICKCONFIGURATION_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 JoystickConfiguration : public wxDialog
|
2015-10-17 16:57:28 +00:00
|
|
|
{
|
2016-09-04 12:10:02 +00:00
|
|
|
wxPanel *m_pan_joystick_config;
|
2015-11-29 14:42:42 +00:00
|
|
|
wxCheckBox *m_cb_reverse_Lx, *m_cb_reverse_Ly, *m_cb_reverse_Rx, *m_cb_reverse_Ry,
|
2016-10-16 19:39:56 +00:00
|
|
|
*m_cb_mouse_Ljoy, // Use mouse for left joystick
|
|
|
|
*m_cb_mouse_Rjoy; // Use mouse for right joystick
|
2015-11-29 14:42:42 +00:00
|
|
|
wxButton *m_bt_ok, *m_bt_cancel;
|
2015-10-17 16:57:28 +00:00
|
|
|
|
2016-07-26 07:08:03 +00:00
|
|
|
u32 m_pad_id;
|
2015-10-17 16:57:28 +00:00
|
|
|
// isForLeftJoystick -> true is for Left Joystick, false is for Right Joystick
|
2015-11-29 14:42:42 +00:00
|
|
|
bool m_init_reverse_Lx, m_init_reverse_Ly, m_init_reverse_Rx, m_init_reverse_Ry,
|
|
|
|
m_init_mouse_Ljoy, m_init_mouse_Rjoy, m_isForLeftJoystick;
|
2015-10-17 16:57:28 +00:00
|
|
|
|
|
|
|
// methods
|
|
|
|
void repopulate();
|
|
|
|
void reset();
|
|
|
|
// Events
|
2016-09-04 12:10:02 +00:00
|
|
|
void OnButtonClicked(wxCommandEvent &);
|
|
|
|
void OnCheckboxChange(wxCommandEvent &);
|
2015-10-17 16:57:28 +00:00
|
|
|
|
|
|
|
public:
|
2016-09-04 12:10:02 +00:00
|
|
|
JoystickConfiguration(int, bool, wxWindow *);
|
2015-10-17 16:57:28 +00:00
|
|
|
void InitJoystickConfiguration();
|
|
|
|
};
|
|
|
|
|
2016-10-16 19:39:56 +00:00
|
|
|
#endif // __JOYSTICKCONFIGURATION_H__
|