]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/simple_preferences.hpp
qt4: toggleAdvanced simplifications
[vlc] / modules / gui / qt4 / components / simple_preferences.hpp
index 754d8adbbc4fe5a75e5347e2ece215e972df2cc4..b6807901fbdaf1a6a42b8c1c65b25b9335e7c289 100644 (file)
@@ -75,9 +75,10 @@ enum {
        normalizerChB,
        volLW,
        headphoneB,
+       spdifChB,
 };
 enum { inputLE, cachingCoB };
-enum { skinRB, qtRB };
+enum { skinRB, qtRB, styleCB };
 
 class ConfigControl;
 class QComboBox;
@@ -92,7 +93,7 @@ class QTreeWidgetItem;
 
 class SPrefsCatList : public QWidget
 {
-    Q_OBJECT;
+    Q_OBJECT
 public:
     SPrefsCatList( intf_thread_t *, QWidget *, bool );
     virtual ~SPrefsCatList() {};
@@ -118,8 +119,9 @@ private:
 
     int number;
 
-    QList<QWidget *> optionWidgets;
+    QWidgetList optionWidgets;
     QStringList qs_filter;
+    QButtonGroup *radioGroup;
 
 #ifdef WIN32
     QList<QTreeWidgetItem *> listAsso;
@@ -131,10 +133,12 @@ private slots:
     void lastfm_Changed( int );
     void updateAudioOptions( int );
     void updateAudioVolume( int );
-#ifdef SYS_MINGW32
+#ifdef WIN32
     void assoDialog();
     void saveAsso();
 #endif
+    void configML();
+    void changeStyle( QString );
 };
 
 #endif