]> Shamusworld >> Repos - virtualjaguar/blob - src/gui/controllertab.h
Fixed OP regression in Rayman, probably others.
[virtualjaguar] / src / gui / controllertab.h
1 #ifndef __CONTROLLERTAB_H__
2 #define __CONTROLLERTAB_H__
3
4 #include <QtGui>
5
6 class ControllerTab: public QWidget
7 {
8         Q_OBJECT
9
10         public:
11                 ControllerTab(QWidget * parent = 0);
12                 ~ControllerTab();
13
14         protected slots:
15                 void DefineAllKeys(void);
16
17         private:
18                 QPushButton * redefineAll;
19
20         public:
21                 int p1Keys[21];
22 };
23
24 #endif  // __CONTROLLERTAB_H__