]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/external.hpp
Merge branch 1.0-bugfix
[vlc] / modules / gui / qt4 / dialogs / external.hpp
1 /*****************************************************************************
2  * external.hpp : Dialogs from other LibVLC core and other plugins
3  ****************************************************************************
4  * Copyright (C) 2009 RĂ©mi Denis-Courmont
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19  *****************************************************************************/
20
21 #ifndef QVLC_DIALOGS_EXTERNAL_H_
22 #define QVLC_DIALOGS_EXTERNAL_H_ 1
23
24 #include <QObject>
25 #include <vlc_common.h>
26 #include "variables.hpp"
27
28 struct intf_thread_t;
29 class QProgressDialog;
30
31 class DialogHandler : public QObject
32 {
33     Q_OBJECT
34
35     friend class QVLCProgressDialog;
36
37 public:
38     DialogHandler (intf_thread_t *);
39     ~DialogHandler (void);
40
41 private:
42     intf_thread_t *intf;
43     QVLCPointer message;
44     QVLCPointer login;
45     QVLCPointer question;
46     QVLCPointer progressBar;
47 signals:
48     void progressBarDestroyed (QWidget *);
49
50 private slots:
51     void displayMessage (vlc_object_t *, void *);
52     void requestLogin (vlc_object_t *, void *);
53     void requestAnswer (vlc_object_t *, void *);
54     void startProgressBar (vlc_object_t *, void *);
55     void stopProgressBar (QWidget *);
56 };
57
58 /* Put here instead of .cpp because of MOC */
59 #include <QProgressDialog>
60
61 class QVLCProgressDialog : public QProgressDialog
62 {
63     Q_OBJECT
64 public:
65     QVLCProgressDialog (DialogHandler *parent,
66                         struct dialog_progress_bar_t *);
67     virtual ~QVLCProgressDialog (void);
68
69 private:
70     DialogHandler *handler;
71     bool cancelled;
72
73     static void update (void *, const char *, float);
74     static bool check (void *);
75     static void destroy (void *);
76 private slots:
77     void saveCancel (void);
78
79 signals:
80     void progressed (int);
81     void described (const QString&);
82     void destroyed (void);
83 };
84
85 #endif