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