]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/keygrabber.h
Hooked up the UI/frontend controller #2 to the Jaguar core, final fixes to the
[virtualjaguar] / src / gui / keygrabber.h
index 481debbe71cbfcd5e67ade7a3ea98173f32ffbf8..6ea19d2e76b516f2052212b39c11fd71f0c6d019 100644 (file)
 
 #include <QtGui>
 
-//class GeneralTab;
-//class ControllerTab;
-//class AlpineTab;
-
 class KeyGrabber: public QDialog
 {
        Q_OBJECT
@@ -21,26 +17,16 @@ class KeyGrabber: public QDialog
        public:
                KeyGrabber(QWidget * parent = 0);
                ~KeyGrabber();
-//             void UpdateVJSettings(void);
-               void SetText(QString);
-//             int GetKeyGrabbed(void);
+               void SetKeyText(int);
 
        protected:
                void keyPressEvent(QKeyEvent *);
 
-//     private:
-//             void LoadDialogFromSettings(void);
-
-       private:
-//             QTabWidget * tabWidget;
-//             QDialogButtonBox * buttonBox;
+private:
                QLabel * label;
 
        public:
                int key;
-//             GeneralTab * generalTab;
-//             ControllerTab * controllerTab;
-//             AlpineTab * alpineTab;
 };
 
 #endif // __KEYGRABBER_H__