]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/open.hpp
i18n fixes
[vlc] / modules / gui / qt4 / components / open.hpp
1 /*****************************************************************************
2  * open.hpp : Panels for the open dialogs
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org> 
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef _OPENPANELS_H_
26 #define _OPENPANELS_H_
27
28 #include <vlc/vlc.h>
29 #include <QWidget>
30 #include <QString>
31 #include "ui/open_file.h"
32
33 class OpenPanel: public QWidget
34 {
35     Q_OBJECT;
36 public:
37     OpenPanel( QWidget *p, intf_thread_t *_p_intf ) : QWidget( p )
38     {
39         p_intf = _p_intf;
40     }
41     virtual ~OpenPanel();
42     virtual QString getUpdatedMRL() = 0;
43 private:
44     intf_thread_t *p_intf;
45 public slots:
46     virtual void sendUpdate() = 0;
47 };
48
49 class FileOpenPanel: public OpenPanel
50 {
51     Q_OBJECT;
52 public:
53     FileOpenPanel( QWidget *, intf_thread_t * );
54     virtual ~FileOpenPanel();
55     virtual QString getUpdatedMRL();
56 private:
57     Ui::OpenFile ui;
58 public slots:
59     virtual void sendUpdate() ;
60 signals:
61     void dataUpdated( QString, QString ) ;
62
63 };
64
65 #endif