]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/simple_preferences.hpp
Qt4 - New Simple Preferences look'n feel. Should work without too many segfaults...
[vlc] / modules / gui / qt4 / components / simple_preferences.hpp
1 /*****************************************************************************
2  * simple_preferences.hpp : Simple prefs
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id: preferences.hpp 16348 2006-08-25 21:10:10Z zorglub $
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@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 _SIMPLEPREFS_H_
25 #define _SIMPLEPREFS_H_
26
27 #include <QListWidget>
28 #include <QVBoxLayout>
29 #include <vlc/vlc.h>
30 #include <vlc_interface.h>
31
32 enum {
33     SPrefsInterface = 0,
34     SPrefsAudio,
35     SPrefsVideo,
36     SPrefsSubtitles,
37     SPrefsInputAndCodecs,
38     SPrefsHotkeys,
39     SPrefsMax
40 };
41 #define SPrefsDefaultCat SPrefsInterface
42
43 class ConfigControl;
44
45 class SPrefsCatList : public QWidget
46 {
47     Q_OBJECT;
48 public:
49     SPrefsCatList( intf_thread_t *, QWidget *);
50     virtual ~SPrefsCatList() {};
51 private:
52     intf_thread_t *p_intf;
53 signals:
54     void currentItemChanged( int );
55 public slots:
56     void switchPanel( int );
57 };
58
59 class SPrefsPanel : public QWidget
60 {
61     Q_OBJECT
62 public:
63     SPrefsPanel( intf_thread_t *, QWidget *, int );
64     virtual ~SPrefsPanel() {};
65     void apply();
66     void clean();
67 private:
68     intf_thread_t *p_intf;
69     QList<ConfigControl *> controls;
70 };
71
72 #endif