]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/open.hpp
Qt4 - open dialogs: Capture tab, DVB, PVR and V4L. main design is done. NEeds to...
[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: streaminfo.hpp 16806 2006-09-23 13:37:50Z zorglub $
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 "ui/open.h"
30 #include "util/qvlcframe.hpp"
31 #include "components/open.hpp"
32
33 #include "dialogs_provider.hpp"
34
35 #include <QTabWidget>
36 #include <QBoxLayout>
37 #include <QString>
38
39 class QToolButton;
40
41 class OpenDialog : public QVLCDialog
42 {
43     Q_OBJECT;
44 public:
45     static OpenDialog * getInstance( QWidget *parent, intf_thread_t *p_intf,
46                  int _action_flag = 0 )
47     {
48         if( !instance)
49             instance = new OpenDialog( parent, p_intf, false, _action_flag );
50         else
51         {
52             instance->i_action_flag = _action_flag;
53             instance->setMenuAction();
54         }
55         return instance;
56     }
57     OpenDialog( QWidget *parent, intf_thread_t *, bool modal,
58                 int _action_flag = 0 );
59     virtual ~OpenDialog();
60
61     void showTab( int );
62
63     QString mrl;
64     QString mainMRL;
65
66 public slots:
67     void play();
68     void stream( bool b_transode_only = false );
69     void enqueue();
70     void transcode();
71 private:
72     static OpenDialog *instance;
73     input_thread_t *p_input;
74
75     Ui::Open ui;
76     FileOpenPanel *fileOpenPanel;
77     NetOpenPanel *netOpenPanel;
78     DiscOpenPanel *discOpenPanel;
79     CaptureOpenPanel *captureOpenPanel;
80
81     QString storedMethod;
82     QString mrlSub;
83     int advHeight, mainHeight;
84     int i_action_flag;
85     QStringList SeparateEntries( QString );
86
87     QPushButton *cancelButton;
88     QToolButton *playButton;
89     void finish( bool );
90
91 private slots:
92     void setMenuAction();
93     void cancel();
94     void close();
95     void toggleAdvancedPanel();
96     void updateMRL( QString );
97     void updateMRL();
98     void newMethod(QString);
99     void signalCurrent();
100 };
101
102 #endif