]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/sout.hpp
Try to fix Sout Dialog ( Part 1 )
[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
33 #include "ui/sout.h"
34 #include "util/qvlcframe.hpp"
35
36 class QPushButton;
37 class QCheckBox;
38 class QGridLayout;
39 class QTextEdit;
40
41 class SoutDialog : public QVLCDialog
42 {
43     Q_OBJECT;
44 public:
45     static SoutDialog* getInstance( QWidget *parent, intf_thread_t *p_intf,
46                                     bool transcode_only )
47     {
48         if( !instance )
49             instance = new SoutDialog( parent, p_intf, transcode_only );
50         else
51         {
52             /* Recenter the dialog on the parent */
53             instance->setParent( parent, Qt::Dialog );
54             if( transcode_only != instance->b_transcode_only )
55             {
56                 instance->toggleSout();
57                 instance->b_transcode_only = transcode_only;
58             }
59         }
60         return instance;
61     }
62
63     virtual ~SoutDialog(){}
64
65     QString getMrl(){ return mrl; }
66
67 private:
68     Ui::Sout ui;
69     static SoutDialog *instance;
70     SoutDialog( QWidget* parent, intf_thread_t *,
71                 bool _transcode_only = false );
72     QPushButton *okButton;
73     QString mrl;
74     bool b_transcode_only;
75
76 public slots:
77     void updateMRL();
78
79 private slots:
80     void ok();
81     void cancel();
82     void toggleSout();
83     void setOptions();
84     void fileBrowse();
85     void setVTranscodeOptions( bool );
86     void setATranscodeOptions( bool );
87     void setSTranscodeOptions( bool );
88     void setRawOptions( bool );
89     void changeUDPandRTPmess( bool );
90 };
91
92 #endif