]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/open.hpp
db2efbb67feb28438e2c0baec3f1525fe516a7c6
[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
75 public slots:
76     void selectSlots();
77     void play();
78     void stream( bool b_transode_only = false );
79     void enqueue();
80     void transcode();
81
82 private:
83     OpenDialog( QWidget *parent, intf_thread_t *, bool b_selectMode,
84                 int _action_flag = 0, bool b_pl = true );
85     virtual ~OpenDialog();
86
87     static OpenDialog *instance;
88     input_thread_t *p_input;
89
90     QString optionsMRL;
91     QString storedMethod;
92     QStringList itemsMRL;
93
94     Ui::Open ui;
95     FileOpenPanel *fileOpenPanel;
96     NetOpenPanel *netOpenPanel;
97     DiscOpenPanel *discOpenPanel;
98     CaptureOpenPanel *captureOpenPanel;
99
100     int i_action_flag;
101     bool b_pl;
102     QStringList SeparateEntries( const QString& );
103
104     QPushButton *cancelButton, *selectButton;
105     QToolButton *playButton;
106
107     void finish( bool );
108
109 private slots:
110     void setMenuAction();
111     void cancel();
112     void close();
113     void toggleAdvancedPanel();
114     void updateMRL( const QStringList&, const QString& );
115     void updateMRL();
116     void newCachingMethod( const QString& );
117     void signalCurrent( int );
118     void browseInputSlave();
119 };
120
121 #endif