X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fcontrollertab.h;h=998d193333ac79341500bee89c99231ba669e928;hb=c436dad60e34fb9da720a89db917eb4cf4e3a624;hp=ceff5bf7976ef3a0985ebfe51502c7d88c7a961d;hpb=5da604521611a960140b58a2fb0f236c65610b70;p=virtualjaguar diff --git a/src/gui/controllertab.h b/src/gui/controllertab.h index ceff5bf..998d193 100644 --- a/src/gui/controllertab.h +++ b/src/gui/controllertab.h @@ -2,6 +2,9 @@ #define __CONTROLLERTAB_H__ #include +#include + +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__