complete_preferences.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * preferences_tree.hpp : Tree of modules for preferences
  3.  ****************************************************************************
  4.  * Copyright (C) 2006-2007 the VideoLAN team
  5.  * $Id: 29105e863833b57b53def05801f55b10e4c0e9ea $
  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. #ifndef _PREFSTREE_H_
  24. #define _PREFSTREE_H_
  25. #ifdef HAVE_CONFIG_H
  26. # include "config.h"
  27. #endif
  28. #include <vlc_common.h>
  29. #include <vlc_interface.h>
  30. #include <QTreeWidget>
  31. enum
  32. {
  33.     TYPE_CATEGORY,
  34.     TYPE_CATSUBCAT,
  35.     TYPE_SUBCATEGORY,
  36.     TYPE_MODULE
  37. };
  38. class AdvPrefsPanel;
  39. class QLabel;
  40. class QVBoxLayout;
  41. class PrefsItemData : public QObject
  42. {
  43. public:
  44.     PrefsItemData()
  45.     { panel = NULL; i_object_id = 0; i_subcat_id = -1; psz_name = NULL; };
  46.     virtual ~PrefsItemData() { free( psz_name ); };
  47.     AdvPrefsPanel *panel;
  48.     int i_object_id;
  49.     int i_subcat_id;
  50.     int i_type;
  51.     char *psz_name;
  52.     QString name;
  53.     QString help;
  54. };
  55. Q_DECLARE_METATYPE( PrefsItemData* );
  56. class PrefsTree : public QTreeWidget
  57. {
  58.     Q_OBJECT;
  59. public:
  60.     PrefsTree( intf_thread_t *, QWidget * );
  61.     virtual ~PrefsTree();
  62.     void applyAll();
  63.     void cleanAll();
  64. private:
  65.     void doAll( bool );
  66.     intf_thread_t *p_intf;
  67. };
  68. class ConfigControl;
  69. class AdvPrefsPanel : public QWidget
  70. {
  71.     Q_OBJECT
  72. public:
  73.     AdvPrefsPanel( intf_thread_t *, QWidget *, PrefsItemData * );
  74.     AdvPrefsPanel( QWidget *);
  75.     virtual ~AdvPrefsPanel();
  76.     void apply();
  77.     void clean();
  78. private:
  79.     intf_thread_t *p_intf;
  80.     QList<ConfigControl *> controls;
  81.     QVBoxLayout *global_layout;
  82. };
  83. #endif