]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/controllertab.h
Fixes for fullscreen mode, initial stab at multiple controller configs
[virtualjaguar] / src / gui / controllertab.h
index ceff5bf7976ef3a0985ebfe51502c7d88c7a961d..9b4c5259e9cee51de69650f5defc9688488474a2 100644 (file)
@@ -2,6 +2,9 @@
 #define __CONTROLLERTAB_H__
 
 #include <QtGui>
+#include <stdint.h>
+
+class ControllerWidget;
 
 class ControllerTab: public QWidget
 {
@@ -10,9 +13,18 @@ class ControllerTab: public QWidget
        public:
                ControllerTab(QWidget * parent = 0);
                ~ControllerTab();
+//             QSize sizeHint(void) const;
+
+       protected slots:
+               void DefineAllKeys(void);
+
+       private:
+               QLabel * label;
+               QComboBox * profile;
+               QPushButton * redefineAll;
 
        public:
-               QCheckBox * antialiasChk;
+               ControllerWidget * controllerWidget;
 };
 
 #endif // __CONTROLLERTAB_H__