]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/simple_preferences.hpp
Qt4 - Dialog implementation for registering the file association on Windows.
[vlc] / modules / gui / qt4 / components / simple_preferences.hpp
index 7e249836cc50dce1caba5537f9c1f5d48eaf65c0..1f2fd88d8f7de41f4886b9e765fc5090e55d61f1 100644 (file)
@@ -64,6 +64,9 @@ class QLineEdit;
 class QRadioButton;
 class QCheckBox;
 class QString;
+#if WIN32
+class QListWidgetItem;
+#endif
 
 class SPrefsCatList : public QWidget
 {
@@ -96,11 +99,18 @@ private:
     QList<QWidget *> optionWidgets;
     QString qs_filter;
 
+#if WIN32
+    QList<QListWidgetItem *> listAsso;
+#endif
+
 /* Display only the options for the selected audio output */
 private slots:
     void lastfm_Changed( int );
     void updateAudioOptions( int );
+#ifdef WIN32
     void assoDialog();
+    void saveAsso();
+#endif
 };
 
 #endif