]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/controllertab.h
Various fixes for GPU/DSP DIV instruction, fixes for joypad handling.
[virtualjaguar] / src / gui / controllertab.h
index ceff5bf7976ef3a0985ebfe51502c7d88c7a961d..998d193333ac79341500bee89c99231ba669e928 100644 (file)
@@ -2,6 +2,9 @@
 #define __CONTROLLERTAB_H__
 
 #include <QtGui>
+#include <stdint.h>
+
+class ControllerWidget;
 
 class ControllerTab: public QWidget
 {
@@ -11,8 +14,19 @@ class ControllerTab: public QWidget
                ControllerTab(QWidget * parent = 0);
                ~ControllerTab();
 
+       protected slots:
+               void DefineAllKeys(void);
+               void ChangeProfile(int);
+
+       private:
+               QLabel * label;
+               QComboBox * controllerList;
+               QComboBox * profileList;
+               QPushButton * redefineAll;
+
        public:
-               QCheckBox * antialiasChk;
+               ControllerWidget * controllerWidget;
+               int profile;
 };
 
 #endif // __CONTROLLERTAB_H__