]> Shamusworld >> Repos - virtualjaguar/blob - src/gui/controllertab.h
Initial stab at controller UI.
[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         public:
18                 QPushButton * redefineAll;
19 };
20
21 #endif  // __CONTROLLERTAB_H__