1 /*	Copyright 2008 Filipe Azevedo <pasnox@gmail.com>
2 	Copyright 2013 Theo Berkau <cwx@cyberwarriorx.com>
3 
4 	This file is part of Yabause.
5 
6 	Yabause is free software; you can redistribute it and/or modify
7 	it under the terms of the GNU General Public License as published by
8 	the Free Software Foundation; either version 2 of the License, or
9 	(at your option) any later version.
10 
11 	Yabause is distributed in the hope that it will be useful,
12 	but WITHOUT ANY WARRANTY; without even the implied warranty of
13 	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 	GNU General Public License for more details.
15 
16 	You should have received a copy of the GNU General Public License
17 	along with Yabause; if not, write to the Free Software
18 	Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
19 */
20 #ifndef UITWINSTICKSETTING_H
21 #define UITWINSTICKSETTING_H
22 
23 #include "ui_UITwinStickSetting.h"
24 #include "UIControllerSetting.h"
25 #include "QtYabause.h"
26 
27 #include <QMap>
28 
29 class QTimer;
30 
31 class UITwinStickSetting : public UIControllerSetting, public Ui::UITwinStickSetting
32 {
33 	Q_OBJECT
34 
35 public:
36 	UITwinStickSetting( PerInterface_struct* core, uint port, uint pad, uint perType, QWidget* parent = 0 );
37 	virtual ~UITwinStickSetting();
38 
39 protected:
40 
41 protected slots:
42 };
43 
44 #endif // UITWINSTICKSETTING_H
45