]> Shamusworld >> Repos - virtualjaguar/blob - src/gui/controllertab.h
9b4c5259e9cee51de69650f5defc9688488474a2
[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 //              QSize sizeHint(void) const;
17
18         protected slots:
19                 void DefineAllKeys(void);
20
21         private:
22                 QLabel * label;
23                 QComboBox * profile;
24                 QPushButton * redefineAll;
25
26         public:
27                 ControllerWidget * controllerWidget;
28 };
29
30 #endif  // __CONTROLLERTAB_H__