]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/dialogs/sout.hpp
Removes trailing spaces. Removes tabs.
[vlc] / modules / gui / qt4 / dialogs / sout.hpp
index 3ba6b86a4c2f9af8b272ae90d7b60084a0ba2a02..110310245abfc1f8782c2e392ada011ea5d4c06b 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
@@ -25,6 +25,7 @@
 #define _SOUT_DIALOG_H_
 
 #include <vlc/vlc.h>
+#include <vlc_streaming.h>
 
 #include "ui/sout.h"
 #include "util/qvlcframe.hpp"
@@ -42,15 +43,27 @@ public:
                 bool _transcode_only = false );
     virtual ~SoutDialog() {}
 
-    QString mrl;
+    QString getMrl();
+    //sout_gui_descr_t *sout;
 private:
     Ui::Sout ui;
+    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 );
 };
 
 #endif