]> Shamusworld >> Repos - virtualjaguar/blob - src/gui/controllertab.h
Hooked up the UI/frontend controller #2 to the Jaguar core, final fixes to the
[virtualjaguar] / src / gui / controllertab.h
1 #ifndef __CONTROLLERTAB_H__
2 #define __CONTROLLERTAB_H__
3
4 #include <QtGui>
5 #include <stdint.h>
6
7 class ControllerWidget;
8
9 class ControllerTab: public QWidget
10 {
11         Q_OBJECT
12
13         public:
14                 ControllerTab(QWidget * parent = 0);
15                 ~ControllerTab();
16
17         protected slots:
18                 void DefineAllKeys(void);
19
20         private:
21                 QPushButton * redefineAll;
22
23         public:
24                 ControllerWidget * controllerWidget;
25 };
26
27 #endif  // __CONTROLLERTAB_H__