Qt: Preferences tree filter
[vlc.git] / modules / gui / qt4 / components / complete_preferences.hpp
blob2c24cd65b39f23ab515c2bc0f99d028b2b901ba3
1 /*****************************************************************************
2 * preferences_tree.hpp : Tree of modules for preferences
3 ****************************************************************************
4 * Copyright (C) 2006-2007 the VideoLAN team
5 * $Id$
7 * Authors: Clément Stenac <zorglub@videolan.org>
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.
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.
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 *****************************************************************************/
24 #ifndef _PREFSTREE_H_
25 #define _PREFSTREE_H_
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
31 #include <vlc_common.h>
32 #include <vlc_interface.h>
34 #include <QTreeWidget>
36 enum
38 TYPE_CATEGORY,
39 TYPE_CATSUBCAT,
40 TYPE_SUBCATEGORY,
41 TYPE_MODULE
44 class AdvPrefsPanel;
45 class QLabel;
46 class QVBoxLayout;
48 class PrefsItemData : public QObject
50 public:
51 PrefsItemData()
52 { panel = NULL; i_object_id = 0; i_subcat_id = -1; psz_name = NULL; };
53 virtual ~PrefsItemData() { free( psz_name ); };
54 bool contains( const QString &text, Qt::CaseSensitivity cs );
55 AdvPrefsPanel *panel;
56 int i_object_id;
57 int i_subcat_id;
58 int i_type;
59 char *psz_name;
60 QString name;
61 QString help;
64 Q_DECLARE_METATYPE( PrefsItemData* );
66 class PrefsTree : public QTreeWidget
68 Q_OBJECT
69 public:
70 PrefsTree( intf_thread_t *, QWidget * );
71 virtual ~PrefsTree();
73 void applyAll();
74 void cleanAll();
75 void filter( const QString &text );
77 private:
78 void doAll( bool );
79 bool filterItems( QTreeWidgetItem *item, const QString &text, Qt::CaseSensitivity cs );
80 bool collapseUnselectedItems( QTreeWidgetItem *item );
81 intf_thread_t *p_intf;
84 class ConfigControl;
86 class AdvPrefsPanel : public QWidget
88 Q_OBJECT
89 public:
90 AdvPrefsPanel( intf_thread_t *, QWidget *, PrefsItemData * );
91 AdvPrefsPanel( QWidget *);
92 virtual ~AdvPrefsPanel();
93 void apply();
94 void clean();
95 private:
96 intf_thread_t *p_intf;
97 QList<ConfigControl *> controls;
98 QVBoxLayout *global_layout;
101 #endif