]> git.sesse.net Git - vlc/blob - modules/gui/qt4/variables.hpp
Qt4: fix windows build
[vlc] / modules / gui / qt4 / variables.hpp
1 /*****************************************************************************
2  * variables.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_VARIABLES_H_
22 #define QVLC_VARIABLES_H_ 1
23
24 #ifdef HAVE_CONFIG_H
25 # include <config.h>
26 #endif
27
28 #include <QObject>
29 #include <vlc_common.h>
30
31 class QVLCVariable : public QObject
32 {
33     Q_OBJECT
34 private:
35     static int callback (vlc_object_t *, const char *,
36                          vlc_value_t, vlc_value_t, void *);
37     vlc_object_t *object;
38     QString name;
39     virtual void trigger (vlc_object_t *, vlc_value_t, vlc_value_t) = 0;
40
41 public:
42     QVLCVariable (vlc_object_t *, const char *, int, bool);
43     virtual ~QVLCVariable (void);
44 };
45
46 class QVLCPointer : public QVLCVariable
47 {
48     Q_OBJECT
49 private:
50     virtual void trigger (vlc_object_t *, vlc_value_t, vlc_value_t);
51
52 public:
53     QVLCPointer (vlc_object_t *, const char *, bool inherit = false);
54
55 signals:
56     void pointerChanged (vlc_object_t *, void *, void *);
57     void pointerChanged (vlc_object_t *, void *);
58 };
59
60 class QVLCInteger : public QVLCVariable
61 {
62     Q_OBJECT
63 private:
64     virtual void trigger (vlc_object_t *, vlc_value_t, vlc_value_t);
65
66 public:
67     QVLCInteger (vlc_object_t *, const char *, bool inherit = false);
68
69 signals:
70     void integerChanged (vlc_object_t *, int, int);
71     void integerChanged (vlc_object_t *, int);
72 };
73
74 #endif