]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/open.hpp
Don't allocate and create the Capture Open Panel in open.
[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 _OPEN_DIALOG_H_
25 #define _OPEN_DIALOG_H_
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32
33 #include "util/qvlcframe.hpp"
34 #include "dialogs_provider.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     friend class FileOpenBox;
61
62     Q_OBJECT;
63 public:
64     static OpenDialog * getInstance( QWidget *parent, intf_thread_t *p_intf,
65                                      bool b_rawInstance = false, int _action_flag = 0, bool b_selectMode = false  );
66
67     static void killInstance()
68     {
69         if( instance ) delete instance;
70         instance = NULL;
71     }
72     virtual ~OpenDialog();
73
74     void showTab( int = OPEN_FILE_TAB );
75     QString getMRL(){ return mrl; }
76
77 public slots:
78     void selectSlots();
79     void play();
80     void stream( bool b_transode_only = false );
81     void enqueue();
82     void transcode();
83
84 private:
85     OpenDialog( QWidget *parent, intf_thread_t *, bool b_selectMode,
86                 int _action_flag = 0 );
87
88     static OpenDialog *instance;
89     input_thread_t *p_input;
90
91     QString mrl;
92     QString mainMRL;
93     QString storedMethod;
94
95     Ui::Open ui;
96     FileOpenPanel *fileOpenPanel;
97     NetOpenPanel *netOpenPanel;
98     DiscOpenPanel *discOpenPanel;
99     CaptureOpenPanel *captureOpenPanel;
100
101     int i_action_flag;
102     QStringList SeparateEntries( QString );
103
104     QPushButton *cancelButton, *selectButton;
105     QPushButton *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( QString );
115     void updateMRL();
116     void newCachingMethod( QString );
117     void signalCurrent( int );
118     void browseInputSlave();
119 };
120
121 #endif