]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/dialogs/extended.hpp
[Qt] Fix VLM icons.
[vlc] / modules / gui / qt4 / dialogs / extended.hpp
index 042bb70899b97c5ffd777bc6f0e35c40d722279c..d57aaa27f791815e3d1266b46bddfc66aa9a2de4 100644 (file)
@@ -2,7 +2,7 @@
  * extended.hpp : Extended controls - Undocked
  ****************************************************************************
  * Copyright (C) 2006 the VideoLAN team
- * $Id: streaminfo.hpp 16687 2006-09-17 12:15:42Z jb $
+ * $Id$
  *
  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
  *
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 #ifndef _EXTENDED_DIALOG_H_
 #define _EXTENDED_DIALOG_H_
 
 #include "util/qvlcframe.hpp"
-#include <QHBoxLayout>
+
+#include "components/extended_panels.hpp"
 
 class ExtendedDialog : public QVLCFrame
 {
@@ -36,11 +38,21 @@ public:
             instance = new ExtendedDialog( p_intf );
         return instance;
     }
+    static void killInstance()
+    {
+        if( instance ) delete instance;
+        instance = NULL;
+    }
     virtual ~ExtendedDialog();
 private:
     ExtendedDialog( intf_thread_t * );
     static ExtendedDialog *instance;
-public slots:
+    SyncControls *syncW;
+    ExtVideo *videoEffect;
+    Equalizer *equal;
+private slots:
+    void changedItem( int );
 };
 
 #endif
+