]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/open.hpp
Qt4 - Open and Streaming Dialogs.
[vlc] / modules / gui / qt4 / dialogs / open.hpp
1 /*****************************************************************************
2  * open.hpp : advanced open dialog
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id: streaminfo.hpp 16806 2006-09-23 13:37:50Z zorglub $
6  *
7  * Authors: Jean-Baptiste Kempf <jb@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 _OPEN_DIALOG_H_
25 #define _OPEN_DIALOG_H_
26
27 #include <vlc/vlc.h>
28
29 #include "ui/open.h"
30 #include "util/qvlcframe.hpp"
31 #include "components/open.hpp"
32
33 #include <QTabWidget>
34 #include <QBoxLayout>
35 #include <QString>
36
37 class OpenDialog : public QVLCDialog
38 {
39     Q_OBJECT;
40 public:
41     static OpenDialog * getInstance( QWidget *parent, intf_thread_t *p_intf,
42                                         bool _stream_after = false )
43     {
44         if( !instance)
45             instance = new OpenDialog( parent, p_intf, false, _stream_after );
46         else
47         {
48             instance->b_stream_after = _stream_after;
49             instance->setAfter();
50         }
51         return instance;
52     }
53     OpenDialog( QWidget *parent, intf_thread_t *, bool modal, 
54             bool stream_after = false);
55     virtual ~OpenDialog();
56
57     void showTab( int );
58
59     QString mrl;
60     QString mainMRL;
61
62 public slots:
63     void play();
64     void stream();
65     void enqueue();
66 private:
67     static OpenDialog *instance;
68     input_thread_t *p_input;
69
70     Ui::Open ui;
71     FileOpenPanel *fileOpenPanel;
72     NetOpenPanel *netOpenPanel;
73     DiskOpenPanel *diskOpenPanel;
74     CaptureOpenPanel *captureOpenPanel;
75
76     QString storedMethod;
77     QString mrlSub;
78     int advHeight, mainHeight;
79     bool b_stream_after;
80     QStringList SeparateEntries( QString );
81
82     void playOrEnqueue( bool );
83
84 private slots:
85     void setAfter();
86     void cancel();
87     void close();
88     void toggleAdvancedPanel();
89     void updateMRL( QString );
90     void updateMRL();
91     void newMethod(QString);
92     void signalCurrent();
93 };
94
95 #endif