]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/sout.hpp
c81f8d076407aab967475870ca7958484c22b4e2
[vlc] / modules / gui / qt4 / dialogs / sout.hpp
1 /*****************************************************************************
2  * sout.hpp : Stream output dialog ( old-style, ala WX )
3  ****************************************************************************
4  * Copyright ( C ) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * ( at your option ) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef _SOUT_DIALOG_H_
25 #define _SOUT_DIALOG_H_
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_streaming.h>
33
34 #include "ui/sout.h"
35 #include "util/qvlcframe.hpp"
36
37 class QPushButton;
38 class QCheckBox;
39 class QGridLayout;
40 class QTextEdit;
41
42 class SoutDialog : public QVLCDialog
43 {
44     Q_OBJECT;
45 public:
46     static SoutDialog* getInstance( QWidget *parent, intf_thread_t *p_intf,
47                                     bool transcode_only )
48     {
49         if( !instance )
50             instance = new SoutDialog( parent, p_intf, transcode_only );
51         else
52         {
53             /* Recenter the dialog on the parent */
54             instance->setParent( parent, Qt::Dialog );
55             if( transcode_only != instance->b_transcode_only )
56             {
57                 instance->toggleSout();
58                 instance->b_transcode_only = transcode_only;
59             }
60         }
61         return instance;
62     }
63
64     virtual ~SoutDialog(){}
65
66     QString getMrl(){ return mrl; }
67
68 private:
69     Ui::Sout ui;
70     static SoutDialog *instance;
71     SoutDialog( QWidget* parent, intf_thread_t *,
72                 bool _transcode_only = false );
73     QPushButton *okButton;
74     QString mrl;
75     bool b_transcode_only;
76
77 public slots:
78     void updateMRL();
79
80 private slots:
81     void ok();
82     void cancel();
83     void toggleSout();
84     void setOptions();
85     void fileBrowse();
86     void setVTranscodeOptions( bool );
87     void setATranscodeOptions( bool );
88     void setSTranscodeOptions( bool );
89     void setRawOptions( bool );
90 };
91
92 #endif