]> 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 9904266b395d5df024b2f1f569aaad7898f31a9e..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
@@ -43,22 +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 setVTranscodeOptions(bool);
-    void setATranscodeOptions(bool);
-    void setSTranscodeOptions(bool);
-    void setRawOptions(bool);
+    void fileBrowse();
+    void setVTranscodeOptions( bool );
+    void setATranscodeOptions( bool );
+    void setSTranscodeOptions( bool );
+    void setRawOptions( bool );
 };
 
 #endif