]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/open.hpp
Qt4 - Small open dialog refactoring for use for vlm dialog.
[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 #include <vlc/vlc.h>
28
29 #include "util/qvlcframe.hpp"
30 #include "dialogs_provider.hpp"
31 #include "ui/open.h"
32 #include "components/open_panels.hpp"
33
34 class QString;
35 class QToolButton;
36 class QTabWidget;
37
38 class OpenDialog : public QVLCDialog
39 {
40     Q_OBJECT;
41 public:
42     static OpenDialog * getInstance( QWidget *parent, intf_thread_t *p_intf,
43                                      int _action_flag = 0, bool modal = false  );
44
45     virtual ~OpenDialog();
46
47     void showTab( int );
48     QString getMRL(){ return mrl; }
49
50 public slots:
51     void selectSlots();
52     void play();
53     void stream( bool b_transode_only = false );
54     void enqueue();
55     void transcode();
56
57 private:
58     OpenDialog( QWidget *parent, intf_thread_t *, bool modal,
59                 int _action_flag = 0 );
60
61     static OpenDialog *instance;
62     input_thread_t *p_input;
63
64     QString mrl;
65     QString mainMRL;
66     QString storedMethod;
67
68     Ui::Open ui;
69     FileOpenPanel *fileOpenPanel;
70     NetOpenPanel *netOpenPanel;
71     DiscOpenPanel *discOpenPanel;
72     CaptureOpenPanel *captureOpenPanel;
73
74     int i_action_flag;
75     QStringList SeparateEntries( QString );
76
77     QPushButton *cancelButton, *selectButton;
78     QToolButton *playButton;
79
80     void finish( bool );
81
82 private slots:
83     void setMenuAction();
84     void cancel();
85     void close();
86     void toggleAdvancedPanel();
87     void updateMRL( QString );
88     void updateMRL();
89     void newCachingMethod( QString );
90     void signalCurrent();
91 };
92
93 #endif