]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/dialogs/sout.hpp
Qt: Simplify includes.
[vlc] / modules / gui / qt4 / dialogs / sout.hpp
index 3ba6b86a4c2f9af8b272ae90d7b60084a0ba2a02..202b6f36ff4ef4cd49c1d442bcae3d02e6f304a2 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
- * sout.hpp : Stream output dialog (old-style, ala WX)
+ * sout.hpp : Stream output dialog ( old-style, ala WX )
  ****************************************************************************
- * Copyright (C) 2006 the VideoLAN team
+ * Copyright ( C ) 2006 the VideoLAN team
  * $Id$
  *
  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
@@ -9,7 +9,7 @@
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * ( at your option ) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 #ifndef _SOUT_DIALOG_H_
 #define _SOUT_DIALOG_H_
 
-#include <vlc/vlc.h>
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <vlc_common.h> /* Gettext functions */
 
 #include "ui/sout.h"
 #include "util/qvlcframe.hpp"
@@ -38,19 +42,49 @@ class SoutDialog : public QVLCDialog
 {
     Q_OBJECT;
 public:
-    SoutDialog( QWidget* parent, intf_thread_t *,
-                bool _transcode_only = false );
-    virtual ~SoutDialog() {}
+    static SoutDialog* getInstance( QWidget *parent, intf_thread_t *p_intf,
+                                    bool transcode_only )
+    {
+        if( !instance )
+            instance = new SoutDialog( parent, p_intf, transcode_only );
+        else
+        {
+            /* Recenter the dialog on the parent */
+            instance->setParent( parent, Qt::Dialog );
+            instance->b_transcode_only = transcode_only;
+            instance->toggleSout();
+        }
+        return instance;
+    }
+
+    virtual ~SoutDialog(){}
+
+    QString getMrl(){ return mrl; }
 
-    QString mrl;
 private:
     Ui::Sout ui;
+    static SoutDialog *instance;
+    SoutDialog( QWidget* parent, intf_thread_t *,
+                bool _transcode_only = false );
+    QPushButton *okButton;
+    QString mrl;
+    bool b_transcode_only;
+
 public slots:
+    void updateMRL();
+
+private slots:
     void ok();
     void cancel();
-    void updateMRL();
-    void fileBrowse();
     void toggleSout();
+    void setOptions();
+    void fileBrowse();
+    void setVTranscodeOptions( bool );
+    void setATranscodeOptions( bool );
+    void setSTranscodeOptions( bool );
+    void setRawOptions( bool );
+    void changeUDPandRTPmess( bool );
+    void RTPtoggled( bool );
 };
 
 #endif