]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/open.hpp
QT4_vlm: really fix #3938.
[vlc] / modules / gui / qt4 / dialogs / open.hpp
1 /*****************************************************************************
2  * open.hpp : advanced open dialog
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
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 QVLC_OPEN_DIALOG_H_
25 #define QVLC_OPEN_DIALOG_H_ 1
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_url.h>
33
34 #include "util/qvlcframe.hpp"
35 #include "ui/open.h"
36 #include "components/open_panels.hpp"
37
38 enum {
39     OPEN_FILE_TAB,
40     OPEN_DISC_TAB,
41     OPEN_NETWORK_TAB,
42     OPEN_CAPTURE_TAB,
43     OPEN_TAB_MAX
44 };
45
46 enum {
47     OPEN_AND_PLAY,
48     OPEN_AND_ENQUEUE,
49     OPEN_AND_STREAM,
50     OPEN_AND_SAVE,
51     SELECT              /* Special mode to select a MRL (for VLM or similar */
52 };
53
54
55 class QString;
56 class QTabWidget;
57
58 class OpenDialog : public QVLCDialog
59 {
60     Q_OBJECT
61 public:
62     static OpenDialog * getInstance( QWidget *parent, intf_thread_t *p_intf,
63                                 bool b_rawInstance = false, int _action_flag = 0,
64                                 bool b_selectMode = false, bool b_pl = true );
65
66     static void killInstance()
67     {
68         delete instance;
69         instance = NULL;
70     }
71
72     void showTab( int = OPEN_FILE_TAB );
73     QString getMRL( bool b = true );
74     QString getOptions();
75
76 public slots:
77     void selectSlots();
78     void play();
79     void stream( bool b_transode_only = false );
80     void enqueue();
81     void transcode();
82
83 private:
84     OpenDialog( QWidget *parent, intf_thread_t *, bool b_selectMode,
85                 int _action_flag = 0, bool b_pl = true );
86     virtual ~OpenDialog();
87
88     static OpenDialog *instance;
89     input_thread_t *p_input;
90
91     QString optionsMRL;
92     QString storedMethod;
93     QStringList itemsMRL;
94
95     Ui::Open ui;
96     FileOpenPanel *fileOpenPanel;
97     NetOpenPanel *netOpenPanel;
98     DiscOpenPanel *discOpenPanel;
99     CaptureOpenPanel *captureOpenPanel;
100
101     int i_action_flag;
102     bool b_pl;
103     QStringList SeparateEntries( const QString& );
104
105     QPushButton *cancelButton, *selectButton;
106     QToolButton *playButton;
107
108     void finish( bool );
109
110 private slots:
111     void setMenuAction();
112     void cancel();
113     void close();
114     void toggleAdvancedPanel();
115     void updateMRL( const QStringList&, const QString& );
116     void updateMRL();
117     void newCachingMethod( const QString& );
118     void signalCurrent( int );
119     void browseInputSlave();
120 };
121
122 #endif