]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/open.hpp
Qt(Dialog provider): Add support for key accelerators
[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     QStringList getMRLs( bool b = true );
76     QString getOptions();
77
78 public slots:
79     void selectSlots();
80     void play();
81     void stream( bool b_transode_only = false );
82     void enqueue( bool b_enqueue = true );
83     void transcode();
84
85 private:
86     OpenDialog( QWidget *parent, intf_thread_t *, bool b_selectMode,
87                 int _action_flag = 0, bool b_pl = true );
88     virtual ~OpenDialog();
89
90     static OpenDialog *instance;
91     input_thread_t *p_input;
92
93     QString optionsMRL;
94     QString storedMethod;
95     QStringList itemsMRL;
96
97     Ui::Open ui;
98     FileOpenPanel *fileOpenPanel;
99     NetOpenPanel *netOpenPanel;
100     DiscOpenPanel *discOpenPanel;
101     CaptureOpenPanel *captureOpenPanel;
102
103     int i_action_flag;
104     bool b_pl;
105     QStringList SeparateEntries( const QString& );
106
107     QPushButton *cancelButton, *selectButton;
108     QToolButton *playButton;
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