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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * plugins.hpp : Plug-ins and extensions listing
  3.  ****************************************************************************
  4.  * Copyright (C) 2008 the VideoLAN team
  5.  * $Id: 37b95db4ae5d553ae24cf196486f14e787123bf6 $
  6.  *
  7.  * Authors: Jean-Baptiste Kempf <jb (at) 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 "plugins.hpp"
  27. #include "util/customwidgets.hpp"
  28. //#include <vlc_modules.h>
  29. #include <QTreeWidget>
  30. #include <QStringList>
  31. #include <QHeaderView>
  32. #include <QDialogButtonBox>
  33. #include <QLineEdit>
  34. #include <QLabel>
  35. PluginDialog *PluginDialog::instance = NULL;
  36. PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
  37. {
  38.     setWindowTitle( qtr( "Plugins and extensions" ) );
  39.     QGridLayout *layout = new QGridLayout( this );
  40.     /* Main Tree for modules */
  41.     treePlugins = new QTreeWidget;
  42.     layout->addWidget( treePlugins, 0, 0, 1, -1 );
  43.     /* Users cannot move the columns around but we need to sort */
  44.     treePlugins->header()->setMovable( false );
  45.     treePlugins->header()->setSortIndicatorShown( true );
  46.     //    treePlugins->header()->setResizeMode( QHeaderView::ResizeToContents );
  47.     treePlugins->setAlternatingRowColors( true );
  48.     treePlugins->setColumnWidth( 0, 200 );
  49.     QStringList headerNames;
  50.     headerNames << qtr("Name") << qtr("Capability" ) << qtr( "Score" );
  51.     treePlugins->setHeaderLabels( headerNames );
  52.     FillTree();
  53.     /* Set capability column to the correct Size*/
  54.     treePlugins->resizeColumnToContents( 1 );
  55.     treePlugins->header()->restoreState(
  56.             getSettings()->value( "Plugins/Header-State" ).toByteArray() );
  57.     treePlugins->setSortingEnabled( true );
  58.     treePlugins->sortByColumn( 1, Qt::AscendingOrder );
  59.     QLabel *label = new QLabel( qtr("&Search:"), this );
  60.     edit = new SearchLineEdit( this );
  61.     label->setBuddy( edit );
  62.     layout->addWidget( label, 1, 0 );
  63.     layout->addWidget( edit, 1, 1, 1, -1 );
  64.     CONNECT( edit, textChanged( const QString& ),
  65.             this, search( const QString& ) );
  66.     QDialogButtonBox *box = new QDialogButtonBox;
  67.     QPushButton *okButton = new QPushButton( qtr( "&Close" ), this );
  68.     box->addButton( okButton, QDialogButtonBox::AcceptRole );
  69.     layout->addWidget( box, 2, 2 );
  70.     BUTTONACT( okButton, close() );
  71.     setMinimumSize( 500, 300 );
  72.     readSettings( "Plugins", QSize( 540, 400 ) );
  73. }
  74. inline void PluginDialog::FillTree()
  75. {
  76.     module_t **p_list = module_list_get( NULL );
  77.     module_t *p_module;
  78.     for( unsigned int i = 0; (p_module = p_list[i] ) != NULL; i++ )
  79.     {
  80.         QStringList qs_item;
  81.         qs_item << qfu( module_get_name( p_module, true ) )
  82.                 << qfu( module_get_capability( p_module ) )
  83.                 << QString::number( module_get_score( p_module ) );
  84. #ifndef DEBUG
  85.         if( qs_item.at(1).isEmpty() ) continue;
  86. #endif
  87.         QTreeWidgetItem *item = new PluginTreeItem( qs_item );
  88.         treePlugins->addTopLevelItem( item );
  89.     }
  90. }
  91. void PluginDialog::search( const QString& qs )
  92. {
  93.     QList<QTreeWidgetItem *> items = treePlugins->findItems( qs, Qt::MatchContains );
  94.     items += treePlugins->findItems( qs, Qt::MatchContains, 1 );
  95.     QTreeWidgetItem *item = NULL;
  96.     for( int i = 0; i < treePlugins->topLevelItemCount(); i++ )
  97.     {
  98.         item = treePlugins->topLevelItem( i );
  99.         item->setHidden( !items.contains( item ) );
  100.     }
  101. }
  102. PluginDialog::~PluginDialog()
  103. {
  104.     writeSettings( "Plugins" );
  105.     getSettings()->setValue( "Plugins/Header-State",
  106.                              treePlugins->header()->saveState() );
  107. }
  108. bool PluginTreeItem::operator< ( const QTreeWidgetItem & other ) const
  109. {
  110.     int col = treeWidget()->sortColumn();
  111.     if( col == 2 )
  112.         return text( col ).toInt() < other.text( col ).toInt();
  113.     return text( col ) < other.text( col );
  114. }