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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * preferences.cpp : "Normal preferences"
  3.  ****************************************************************************
  4.  * Copyright (C) 2006-2007 the VideoLAN team
  5.  * $Id: 76bf1d059bf95c52dd01f69bdec8a744d95ddedb $
  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. #ifdef HAVE_CONFIG_H
  24. # include "config.h"
  25. #endif
  26. #include <QApplication>
  27. #include <QLabel>
  28. #include <QTreeWidget>
  29. #include <QTreeWidgetItem>
  30. #include <QVariant>
  31. #include <QString>
  32. #include <QFont>
  33. #include <QGroupBox>
  34. #include <QScrollArea>
  35. #include <QVBoxLayout>
  36. #include <QGridLayout>
  37. #include <QHeaderView>
  38. #include "components/complete_preferences.hpp"
  39. #include "components/preferences_widgets.hpp"
  40. #include <vlc_config_cat.h>
  41. #include <vlc_intf_strings.h>
  42. #include <assert.h>
  43. #define ITEM_HEIGHT 25
  44. /*********************************************************************
  45.  * The Tree
  46.  *********************************************************************/
  47. PrefsTree::PrefsTree( intf_thread_t *_p_intf, QWidget *_parent ) :
  48.                             QTreeWidget( _parent ), p_intf( _p_intf )
  49. {
  50.     /* General Qt options */
  51.     setColumnCount( 1 );
  52.     setAlternatingRowColors( true );
  53.     header()->hide();
  54.     setIconSize( QSize( ITEM_HEIGHT,ITEM_HEIGHT ) );
  55.     setTextElideMode( Qt::ElideNone );
  56.     /* Nice icons */
  57. #define BI( a,b) QIcon a##_icon = QIcon( QPixmap( b ))
  58.     BI( audio, ":/advprefs_audio" );
  59.     BI( video, ":/advprefs_video" );
  60.     BI( input, ":/advprefs_codec" );
  61.     BI( sout, ":/advprefs_sout" );
  62.     BI( advanced, ":/advprefs_extended" );
  63.     BI( playlist, ":/advprefs_playlist" );
  64.     BI( interface, ":/advprefs_intf" );
  65. #undef BI
  66.     /* Build the tree for the main module */
  67.     module_t *p_module = module_get_main();
  68.     /* Initialisation and get the confsize */
  69.     PrefsItemData *data = NULL;
  70.     PrefsItemData *data_sub = NULL;
  71.     QTreeWidgetItem *current_item = NULL;
  72.     unsigned confsize;
  73.     module_config_t *const p_config = module_config_get (p_module, &confsize);
  74.     /* Go through the list of conf */
  75.     for( size_t i = 0; i < confsize; i++ )
  76.     {
  77.         const char *psz_help;
  78.         QIcon icon;
  79.         /* Work on a new item */
  80.         module_config_t *p_item = p_config + i;
  81.         switch( p_item->i_type )
  82.         {
  83.         /* This is a category */
  84.         case CONFIG_CATEGORY:
  85.             if( p_item->value.i == -1 ) break;
  86.             /* PrefsItemData Init */
  87.             data = new PrefsItemData();
  88.             data->name = qtr( config_CategoryNameGet( p_item->value.i ) );
  89.             psz_help = config_CategoryHelpGet( p_item->value.i );
  90.             if( psz_help )
  91.                 data->help = qtr( psz_help );
  92.             else
  93.                 data->help.clear();
  94.             data->i_type = TYPE_CATEGORY;
  95.             data->i_object_id = p_item->value.i;
  96.             /* This is a category, put a nice icon */
  97.             switch( p_item->value.i )
  98.             {
  99. #define CI(a,b) case a: icon = b##_icon;break
  100.             CI( CAT_AUDIO, audio );
  101.             CI( CAT_VIDEO, video );
  102.             CI( CAT_INPUT, input );
  103.             CI( CAT_SOUT, sout );
  104.             CI( CAT_ADVANCED, advanced );
  105.             CI( CAT_PLAYLIST, playlist );
  106.             CI( CAT_INTERFACE, interface );
  107.             }
  108. #undef CI
  109.             /* Create a new QTreeItem to display it in the tree at top level */
  110.             current_item = new QTreeWidgetItem();
  111.             current_item->setText( 0, data->name );
  112.             current_item->setIcon( 0 , icon );
  113.             current_item->setSizeHint( 0, QSize( -1, ITEM_HEIGHT ) );
  114.             current_item->setData( 0, Qt::UserRole,
  115.                                    qVariantFromValue( data ) );
  116.             addTopLevelItem( current_item );
  117.             break;
  118.         /* This is a subcategory */
  119.         case CONFIG_SUBCATEGORY:
  120.             if( p_item->value.i == -1 ) break;
  121.             /* Special cases: move the main subcategories to the parent cat*/
  122.             if( data &&
  123.                 ( p_item->value.i == SUBCAT_VIDEO_GENERAL ||
  124.                   p_item->value.i == SUBCAT_ADVANCED_MISC ||
  125.                   p_item->value.i == SUBCAT_INPUT_GENERAL ||
  126.                   p_item->value.i == SUBCAT_INTERFACE_GENERAL ||
  127.                   p_item->value.i == SUBCAT_SOUT_GENERAL||
  128.                   p_item->value.i == SUBCAT_PLAYLIST_GENERAL||
  129.                   p_item->value.i == SUBCAT_AUDIO_GENERAL ) )
  130.             {
  131.                 /* Data still contains the correct thing */
  132.                 data->i_type = TYPE_CATSUBCAT;
  133.                 data->i_subcat_id = p_item->value.i;
  134.                 data->name = qtr( config_CategoryNameGet( p_item->value.i ) );
  135.                 psz_help = config_CategoryHelpGet( p_item->value.i );
  136.                 if( psz_help )
  137.                     data->help = qtr( psz_help );
  138.                 else
  139.                     data->help.clear();
  140.                 current_item->setData( 0, Qt::UserRole,
  141.                                        QVariant::fromValue( data ) );
  142.                 continue;
  143.             }
  144.             /* Normal Subcategories */
  145.             /* Process the Data */
  146.             data_sub = new PrefsItemData();
  147.             data_sub->name = qtr( config_CategoryNameGet( p_item->value.i) );
  148.             psz_help = config_CategoryHelpGet( p_item->value.i );
  149.             if( psz_help )
  150.                 data_sub->help = qtr( psz_help );
  151.             else
  152.                 data_sub->help.clear();
  153.             data_sub->i_type = TYPE_SUBCATEGORY;
  154.             data_sub->i_object_id = p_item->value.i;
  155.             /* Create a new TreeWidget */
  156.             QTreeWidgetItem *subcat_item = new QTreeWidgetItem();
  157.             subcat_item->setText( 0, data_sub->name );
  158.             subcat_item->setData( 0, Qt::UserRole,
  159.                                   qVariantFromValue( data_sub ) );
  160.             subcat_item->setSizeHint( 0, QSize( -1, ITEM_HEIGHT ) );
  161.             /* Add it to the parent */
  162.             assert( current_item );
  163.             current_item->addChild( subcat_item );
  164.             break;
  165.         /* Other items don't need yet a place on the tree */
  166.         }
  167.     }
  168.     module_config_free( p_config );
  169.     module_release( p_module );
  170.     module_t **p_list = module_list_get( NULL );
  171.     /* Build the tree of plugins */
  172.     for( size_t i = 0; (p_module = p_list[i]) != NULL; i++ )
  173.     {
  174.         // Main module excluded
  175.         if( module_is_main( p_module) ) continue;
  176.         unsigned  confsize;
  177.         int i_subcategory = 0, i_category = 0;
  178.         bool b_options = false;
  179.         module_config_t *const p_config = module_config_get (p_module, &confsize);
  180.         /* Loop through the configurations items */
  181.         for (size_t i = 0; i < confsize; i++)
  182.         {
  183.             const module_config_t *p_item = p_config + i;
  184.             if( p_item->i_type == CONFIG_CATEGORY )
  185.                 i_category = p_item->value.i;
  186.             else if( p_item->i_type == CONFIG_SUBCATEGORY )
  187.                 i_subcategory = p_item->value.i;
  188.             if( p_item->i_type & CONFIG_ITEM )
  189.                 b_options = true;
  190.             if( b_options && i_category && i_subcategory )
  191.                 break;
  192.         }
  193.         module_config_free (p_config);
  194.         /* Dummy item, please proceed */
  195.         if( !b_options || i_category == 0 || i_subcategory == 0 ) continue;
  196.         // Locate the category item;
  197.         QTreeWidgetItem *subcat_item = NULL;
  198.         bool b_found = false;
  199.         for( int i_cat_index = 0 ; i_cat_index < topLevelItemCount();
  200.                                    i_cat_index++ )
  201.         {
  202.             /* Get the treeWidgetItem that correspond to the category */
  203.             QTreeWidgetItem *cat_item = topLevelItem( i_cat_index );
  204.             PrefsItemData *data = cat_item->data( 0, Qt::UserRole ).
  205.                                              value<PrefsItemData *>();
  206.             /* If we match the good category */
  207.             if( data->i_object_id == i_category )
  208.             {
  209.                 for( int i_sc_index = 0; i_sc_index < cat_item->childCount();
  210.                          i_sc_index++ )
  211.                 {
  212.                     subcat_item = cat_item->child( i_sc_index );
  213.                     PrefsItemData *sc_data = subcat_item->data(0, Qt::UserRole).
  214.                                                 value<PrefsItemData *>();
  215.                     if( sc_data && sc_data->i_object_id == i_subcategory )
  216.                     {
  217.                         b_found = true;
  218.                         break;
  219.                     }
  220.                 }
  221.                 if( !b_found )
  222.                 {
  223.                     subcat_item = cat_item;
  224.                     b_found = true;
  225.                 }
  226.                 break;
  227.             }
  228.         }
  229.         if( !b_found ) continue;
  230.         PrefsItemData *module_data = new PrefsItemData();
  231.         module_data->i_type = TYPE_MODULE;
  232.         module_data->psz_name = strdup( module_get_object( p_module ) );
  233.         module_data->help.clear();
  234.         QTreeWidgetItem *module_item = new QTreeWidgetItem();
  235.         module_item->setText( 0, qtr( module_get_name( p_module, false ) ) );
  236.         module_item->setData( 0, Qt::UserRole,
  237.                               QVariant::fromValue( module_data) );
  238.         module_item->setSizeHint( 0, QSize( -1, ITEM_HEIGHT ) );
  239.         subcat_item->addChild( module_item );
  240.     }
  241.     /* We got everything, just sort a bit */
  242.     sortItems( 0, Qt::AscendingOrder );
  243.     module_list_free( p_list );
  244. }
  245. PrefsTree::~PrefsTree() {}
  246. void PrefsTree::applyAll()
  247. {
  248.     doAll( false );
  249. }
  250. void PrefsTree::cleanAll()
  251. {
  252.     doAll( true );
  253. }
  254. void PrefsTree::doAll( bool doclean )
  255. {
  256.     for( int i_cat_index = 0 ; i_cat_index < topLevelItemCount();
  257.              i_cat_index++ )
  258.     {
  259.         QTreeWidgetItem *cat_item = topLevelItem( i_cat_index );
  260.         for( int i_sc_index = 0; i_sc_index < cat_item->childCount();
  261.                  i_sc_index++ )
  262.         {
  263.             QTreeWidgetItem *sc_item = cat_item->child( i_sc_index );
  264.             for( int i_module = 0 ; i_module < sc_item->childCount();
  265.                      i_module++ )
  266.             {
  267.                 PrefsItemData *data = sc_item->child( i_module )->
  268.                                data( 0, Qt::UserRole).value<PrefsItemData *>();
  269.                 if( data->panel && doclean )
  270.                 {
  271.                     delete data->panel;
  272.                     data->panel = NULL;
  273.                 }
  274.                 else if( data->panel )
  275.                     data->panel->apply();
  276.             }
  277.             PrefsItemData *data = sc_item->data( 0, Qt::UserRole).
  278.                                             value<PrefsItemData *>();
  279.             if( data->panel && doclean )
  280.             {
  281.                 delete data->panel;
  282.                 data->panel = NULL;
  283.             }
  284.             else if( data->panel )
  285.                 data->panel->apply();
  286.         }
  287.         PrefsItemData *data = cat_item->data( 0, Qt::UserRole).
  288.                                             value<PrefsItemData *>();
  289.         if( data->panel && doclean )
  290.         {
  291.             delete data->panel;
  292.             data->panel = NULL;
  293.         }
  294.         else if( data->panel )
  295.             data->panel->apply();
  296.     }
  297. }
  298. /*********************************************************************
  299.  * The Panel
  300.  *********************************************************************/
  301. AdvPrefsPanel::AdvPrefsPanel( QWidget *_parent ) : QWidget( _parent )
  302. {}
  303. AdvPrefsPanel::AdvPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
  304.                         PrefsItemData * data ) :
  305.                         QWidget( _parent ), p_intf( _p_intf )
  306. {
  307.     /* Find our module */
  308.     module_t *p_module = NULL;
  309.     if( data->i_type == TYPE_CATEGORY )
  310.         return;
  311.     else if( data->i_type == TYPE_MODULE )
  312.         p_module = module_find( data->psz_name );
  313.     else
  314.     {
  315.         p_module = module_get_main();
  316.         assert( p_module );
  317.     }
  318.     unsigned confsize;
  319.     module_config_t *const p_config = module_config_get (p_module, &confsize),
  320.                     *p_item = p_config,
  321.                     *p_end = p_config + confsize;
  322.     if( data->i_type == TYPE_SUBCATEGORY || data->i_type ==  TYPE_CATSUBCAT )
  323.     {
  324.         while (p_item < p_end)
  325.         {
  326.             if(  p_item->i_type == CONFIG_SUBCATEGORY &&
  327.                             ( ( data->i_type == TYPE_SUBCATEGORY &&
  328.                               p_item->value.i == data->i_object_id ) ||
  329.                             ( data->i_type == TYPE_CATSUBCAT &&
  330.                               p_item->value.i == data->i_subcat_id ) ) )
  331.                 break;
  332.             p_item++;
  333.         }
  334.     }
  335.     /* Widgets now */
  336.     global_layout = new QVBoxLayout();
  337.     global_layout->setMargin( 2 );
  338.     QString head;
  339.     QString help;
  340.     help = QString( data->help );
  341.     if( data->i_type == TYPE_SUBCATEGORY || data->i_type ==  TYPE_CATSUBCAT )
  342.     {
  343.         head = QString( data->name );
  344.         p_item++; // Why that ?
  345.     }
  346.     else
  347.     {
  348.         const char *psz_help = module_get_help (p_module);
  349.         head = QString( qtr( module_GetLongName( p_module ) ) );
  350.         if( psz_help )
  351.         {
  352.             help.append( "n" );
  353.             help.append( qtr( psz_help ) );
  354.         }
  355.     }
  356.     QLabel *titleLabel = new QLabel( head );
  357.     QFont titleFont = QApplication::font( static_cast<QWidget*>(0) );
  358.     titleFont.setPointSize( titleFont.pointSize() + 6 );
  359.     titleFont.setFamily( "Verdana" );
  360.     titleLabel->setFont( titleFont );
  361.     // Title <hr>
  362.     QFrame *title_line = new QFrame;
  363.     title_line->setFrameShape(QFrame::HLine);
  364.     title_line->setFrameShadow(QFrame::Sunken);
  365.     QLabel *helpLabel = new QLabel( help, this );
  366.     helpLabel->setWordWrap( true );
  367.     global_layout->addWidget( titleLabel );
  368.     global_layout->addWidget( title_line );
  369.     global_layout->addWidget( helpLabel );
  370.     QGroupBox *box = NULL;
  371.     QGridLayout *boxlayout = NULL;
  372.     QScrollArea *scroller= new QScrollArea;
  373.     scroller->setFrameStyle( QFrame::NoFrame );
  374.     QWidget *scrolled_area = new QWidget;
  375.     QGridLayout *layout = new QGridLayout();
  376.     int i_line = 0, i_boxline = 0;
  377.     bool has_hotkey = false;
  378.     if( p_item ) do
  379.     {
  380.         if( ( ( data->i_type == TYPE_SUBCATEGORY &&
  381.                 p_item->value.i != data->i_object_id ) ||
  382.               ( data->i_type == TYPE_CATSUBCAT  &&
  383.                 p_item->value.i != data->i_subcat_id ) ) &&
  384.             ( p_item->i_type == CONFIG_CATEGORY ||
  385.               p_item->i_type == CONFIG_SUBCATEGORY ) )
  386.             break;
  387.         if( p_item->b_internal == true ) continue;
  388.         if( p_item->i_type == CONFIG_SECTION )
  389.         {
  390.             if( box )
  391.             {
  392.                 box->setLayout( boxlayout );
  393.                 box->show();
  394.                 layout->addWidget( box, i_line, 0, 1, -1 );
  395.                 i_line++;
  396.             }
  397.             box = new QGroupBox( qtr( p_item->psz_text ), this );
  398.             box->hide();
  399.             boxlayout = new QGridLayout();
  400.         }
  401.         /* Only one hotkey control */
  402.         if( has_hotkey && p_item->i_type & CONFIG_ITEM && p_item->psz_name &&
  403.                                          strstr( p_item->psz_name, "key-" ) )
  404.             continue;
  405.         if( p_item->i_type & CONFIG_ITEM && p_item->psz_name &&
  406.                                             strstr( p_item->psz_name, "key-" ) )
  407.             has_hotkey = true;
  408.         ConfigControl *control;
  409.         if( ! box )
  410.             control = ConfigControl::createControl( VLC_OBJECT( p_intf ),
  411.                                         p_item, this, layout, i_line );
  412.         else
  413.             control = ConfigControl::createControl( VLC_OBJECT( p_intf ),
  414.                                     p_item, this, boxlayout, i_boxline );
  415.         if( !control )
  416.             continue;
  417.         if( box ) i_boxline++;
  418.         else i_line++;
  419.         controls.append( control );
  420.     }
  421.     while( !( ( data->i_type == TYPE_SUBCATEGORY ||
  422.                data->i_type == TYPE_CATSUBCAT ) &&
  423.              ( p_item->i_type == CONFIG_CATEGORY ||
  424.                p_item->i_type == CONFIG_SUBCATEGORY ) )
  425.         && ( ++p_item < p_end ) );
  426.     if( box )
  427.     {
  428.         box->setLayout( boxlayout );
  429.         box->show();
  430.         layout->addWidget( box, i_line, 0, 1, -1 );
  431.     }
  432.     module_release (p_module);
  433.     scrolled_area->setSizePolicy( QSizePolicy::Preferred,QSizePolicy::Fixed );
  434.     scrolled_area->setLayout( layout );
  435.     scroller->setWidget( scrolled_area );
  436.     scroller->setWidgetResizable( true );
  437.     global_layout->addWidget( scroller );
  438.     setLayout( global_layout );
  439. }
  440. void AdvPrefsPanel::apply()
  441. {
  442.     QList<ConfigControl *>::Iterator i;
  443.     for( i = controls.begin() ; i != controls.end() ; i++ )
  444.     {
  445.         ConfigControl *c = qobject_cast<ConfigControl *>(*i);
  446.         c->doApply( p_intf );
  447.     }
  448. }
  449. void AdvPrefsPanel::clean()
  450. {}
  451. AdvPrefsPanel::~AdvPrefsPanel()
  452. {
  453.     qDeleteAll( controls ); controls.clear();
  454. }