]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/plugins.cpp
Ext/Qt: Enhance more information dialog
[vlc] / modules / gui / qt4 / dialogs / plugins.cpp
1 /*****************************************************************************
2  * plugins.hpp : Plug-ins and extensions listing
3  ****************************************************************************
4  * Copyright (C) 2008-2010 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jean-Baptiste Kempf <jb (at) videolan.org>
8  *          Jean-Philippe AndrĂ© <jpeg (at) videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include "plugins.hpp"
30
31 #include "util/customwidgets.hpp"
32 #include "extensions_manager.hpp"
33
34 #include <assert.h>
35
36 //#include <vlc_modules.h>
37
38 #include <QTreeWidget>
39 #include <QStringList>
40 #include <QTabWidget>
41 #include <QHeaderView>
42 #include <QDialogButtonBox>
43 #include <QLineEdit>
44 #include <QLabel>
45 #include <QVBoxLayout>
46 #include <QComboBox>
47 #include <QTextBrowser>
48 #include <QHBoxLayout>
49 #include <QVBoxLayout>
50 #include <QSpacerItem>
51 #include <QListView>
52 #include <QPainter>
53 #include <QStyleOptionViewItem>
54 #include <QKeyEvent>
55
56
57 PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
58 {
59     setWindowTitle( qtr( "Plugins and extensions" ) );
60     setWindowRole( "vlc-plugins" );
61
62     QVBoxLayout *layout = new QVBoxLayout( this );
63     tabs = new QTabWidget( this );
64     tabs->addTab( extensionTab = new ExtensionTab( p_intf ),
65                   qtr( "Extensions" ) );
66     tabs->addTab( pluginTab = new PluginTab( p_intf ),
67                   qtr( "Plugins" ) );
68     layout->addWidget( tabs );
69
70     QDialogButtonBox *box = new QDialogButtonBox;
71     QPushButton *okButton = new QPushButton( qtr( "&Close" ), this );
72     box->addButton( okButton, QDialogButtonBox::AcceptRole );
73     layout->addWidget( box );
74     BUTTONACT( okButton, close() );
75 }
76
77 PluginDialog::~PluginDialog()
78 {
79 }
80
81 /* Plugins tab */
82
83 PluginTab::PluginTab( intf_thread_t *p_intf )
84         : QVLCFrame( p_intf )
85 {
86     QGridLayout *layout = new QGridLayout( this );
87
88     /* Main Tree for modules */
89     treePlugins = new QTreeWidget;
90     layout->addWidget( treePlugins, 0, 0, 1, -1 );
91
92     /* Users cannot move the columns around but we need to sort */
93     treePlugins->header()->setMovable( false );
94     treePlugins->header()->setSortIndicatorShown( true );
95     //    treePlugins->header()->setResizeMode( QHeaderView::ResizeToContents );
96     treePlugins->setAlternatingRowColors( true );
97     treePlugins->setColumnWidth( 0, 200 );
98
99     QStringList headerNames;
100     headerNames << qtr("Name") << qtr("Capability" ) << qtr( "Score" );
101     treePlugins->setHeaderLabels( headerNames );
102
103     FillTree();
104
105     /* Set capability column to the correct Size*/
106     treePlugins->resizeColumnToContents( 1 );
107     treePlugins->header()->restoreState(
108             getSettings()->value( "Plugins/Header-State" ).toByteArray() );
109
110     treePlugins->setSortingEnabled( true );
111     treePlugins->sortByColumn( 1, Qt::AscendingOrder );
112
113     QLabel *label = new QLabel( qtr("&Search:"), this );
114     edit = new SearchLineEdit( this );
115     label->setBuddy( edit );
116
117     layout->addWidget( label, 1, 0 );
118     layout->addWidget( edit, 1, 1, 1, 1 );
119     CONNECT( edit, textChanged( const QString& ),
120             this, search( const QString& ) );
121
122     setMinimumSize( 500, 300 );
123     readSettings( "Plugins", QSize( 540, 400 ) );
124 }
125
126 inline void PluginTab::FillTree()
127 {
128     module_t **p_list = module_list_get( NULL );
129     module_t *p_module;
130
131     for( unsigned int i = 0; (p_module = p_list[i] ) != NULL; i++ )
132     {
133         QStringList qs_item;
134         qs_item << qfu( module_get_name( p_module, true ) )
135                 << qfu( module_get_capability( p_module ) )
136                 << QString::number( module_get_score( p_module ) );
137 #ifndef DEBUG
138         if( qs_item.at(1).isEmpty() ) continue;
139 #endif
140
141         QTreeWidgetItem *item = new PluginTreeItem( qs_item );
142         treePlugins->addTopLevelItem( item );
143     }
144 }
145
146 void PluginTab::search( const QString& qs )
147 {
148     QList<QTreeWidgetItem *> items = treePlugins->findItems( qs, Qt::MatchContains );
149     items += treePlugins->findItems( qs, Qt::MatchContains, 1 );
150
151     QTreeWidgetItem *item = NULL;
152     for( int i = 0; i < treePlugins->topLevelItemCount(); i++ )
153     {
154         item = treePlugins->topLevelItem( i );
155         item->setHidden( !items.contains( item ) );
156     }
157 }
158
159 PluginTab::~PluginTab()
160 {
161     writeSettings( "Plugins" );
162     getSettings()->setValue( "Plugins/Header-State",
163                              treePlugins->header()->saveState() );
164 }
165
166 bool PluginTreeItem::operator< ( const QTreeWidgetItem & other ) const
167 {
168     int col = treeWidget()->sortColumn();
169     if( col == 2 )
170         return text( col ).toInt() < other.text( col ).toInt();
171     return text( col ) < other.text( col );
172 }
173
174 /* Extensions tab */
175 ExtensionTab::ExtensionTab( intf_thread_t *p_intf )
176         : QVLCFrame( p_intf )
177 {
178     // Layout
179     QVBoxLayout *layout = new QVBoxLayout( this );
180
181     // ListView
182     extList = new QListView( this );
183     layout->addWidget( extList );
184
185     // List item delegate
186     ExtensionItemDelegate *itemDelegate = new ExtensionItemDelegate( p_intf,
187                                                                      extList );
188     extList->setItemDelegate( itemDelegate );
189
190     // Extension list look & feeling
191     extList->setAlternatingRowColors( true );
192     extList->setSelectionMode( QAbstractItemView::SingleSelection );
193
194     // Model
195     ExtensionListModel *model = new ExtensionListModel( extList, p_intf );
196     extList->setModel( model );
197
198     // Buttons' layout
199     QHBoxLayout *hbox = new QHBoxLayout;
200     hbox->addItem( new QSpacerItem( 1, 1, QSizePolicy::Expanding,
201                                     QSizePolicy::Fixed ) );
202
203     // More information button
204     butMoreInfo = new QPushButton( QIcon( ":/menu/info" ),
205                                    qtr( "More information..." ),
206                                    this );
207     CONNECT( butMoreInfo, clicked(),
208              this, moreInformation() );
209     hbox->addWidget( butMoreInfo );
210
211     // Reload button
212     ExtensionsManager *EM = ExtensionsManager::getInstance( p_intf );
213     QPushButton *reload = new QPushButton( QIcon( ":/update" ),
214                                            qtr( "Reload extensions" ),
215                                            this );
216     CONNECT( reload, clicked(),
217              EM, reloadExtensions() );
218     hbox->addWidget( reload );
219
220     // Add buttons hbox
221     layout->addItem( hbox );
222 }
223
224 ExtensionTab::~ExtensionTab()
225 {
226 }
227
228 // Do not close on ESC or ENTER
229 void ExtensionTab::keyPressEvent( QKeyEvent *keyEvent )
230 {
231     keyEvent->ignore();
232 }
233
234 // Show more information
235 void ExtensionTab::moreInformation()
236 {
237     if( !extList->selectionModel() ||
238         extList->selectionModel()->selectedIndexes().isEmpty() )
239
240     {
241         return;
242     }
243
244     QModelIndex index = extList->selectionModel()->selectedIndexes().first();
245     ExtensionCopy *ext = (ExtensionCopy*) index.internalPointer();
246     if( !ext )
247         return;
248
249     ExtensionInfoDialog dlg( *ext, p_intf, this );
250     dlg.exec();
251 }
252
253 /* Safe copy of the extension_t struct */
254 class ExtensionCopy
255 {
256 public:
257     ExtensionCopy( extension_t *p_ext )
258     {
259         name = qfu( p_ext->psz_name );
260         description = qfu( p_ext->psz_description );
261         title = qfu( p_ext->psz_title );
262         author = qfu( p_ext->psz_author );
263         version = qfu( p_ext->psz_version );
264         url = qfu( p_ext->psz_url );
265     }
266     ~ExtensionCopy() {}
267
268     QString name, title, description, author, version, url;
269 };
270
271 /* Extensions list model for the QListView */
272
273 ExtensionListModel::ExtensionListModel( QListView *view, intf_thread_t *intf )
274         : QAbstractListModel( view ), p_intf( intf )
275 {
276     // Connect to ExtensionsManager::extensionsUpdated()
277     ExtensionsManager* EM = ExtensionsManager::getInstance( p_intf );
278     CONNECT( EM, extensionsUpdated(), this, updateList() );
279
280     // Load extensions now if not already loaded
281     EM->loadExtensions();
282 }
283
284 ExtensionListModel::~ExtensionListModel()
285 {
286 }
287
288 void ExtensionListModel::updateList()
289 {
290     ExtensionCopy *ext;
291
292     // Clear extensions list
293     while( !extensions.isEmpty() )
294     {
295         ext = extensions.takeLast();
296         delete ext;
297     }
298
299     // Find new extensions
300     ExtensionsManager *EM = ExtensionsManager::getInstance( p_intf );
301     extensions_manager_t *p_mgr = EM->getManager();
302     if( !p_mgr )
303         return;
304
305     vlc_mutex_lock( &p_mgr->lock );
306     extension_t *p_ext;
307     FOREACH_ARRAY( p_ext, p_mgr->extensions )
308     {
309         ext = new ExtensionCopy( p_ext );
310         extensions.push_back( ext );
311     }
312     FOREACH_END()
313     vlc_mutex_unlock( &p_mgr->lock );
314     vlc_object_release( p_mgr );
315
316     emit dataChanged( index( 0 ), index( rowCount() - 1 ) );
317 }
318
319 int ExtensionListModel::rowCount( const QModelIndex& parent ) const
320 {
321     int count = 0;
322     ExtensionsManager *EM = ExtensionsManager::getInstance( p_intf );
323     extensions_manager_t *p_mgr = EM->getManager();
324     if( !p_mgr )
325         return 0;
326
327     vlc_mutex_lock( &p_mgr->lock );
328     count = p_mgr->extensions.i_size;
329     vlc_mutex_unlock( &p_mgr->lock );
330     vlc_object_release( p_mgr );
331
332     return count;
333 }
334
335 QVariant ExtensionListModel::data( const QModelIndex& index, int role ) const
336 {
337     if( !index.isValid() )
338         return QVariant();
339
340     switch( role )
341     {
342     default:
343         return QVariant();
344     }
345 }
346
347 QModelIndex ExtensionListModel::index( int row, int column,
348                                        const QModelIndex& parent ) const
349 {
350     if( column != 0 )
351         return QModelIndex();
352     if( row < 0 || row >= extensions.size() )
353         return QModelIndex();
354
355     return createIndex( row, 0, extensions.at( row ) );
356 }
357
358
359 /* Extension List Widget Item */
360 ExtensionItemDelegate::ExtensionItemDelegate( intf_thread_t *p_intf,
361                                               QListView *view )
362         : QStyledItemDelegate( view ), view( view ), p_intf( p_intf )
363 {
364 }
365
366 ExtensionItemDelegate::~ExtensionItemDelegate()
367 {
368 }
369
370 void ExtensionItemDelegate::paint( QPainter *painter,
371                                    const QStyleOptionViewItem &option,
372                                    const QModelIndex &index ) const
373 {
374     ExtensionCopy *ext = ( ExtensionCopy* ) index.internalPointer();
375     assert( ext != NULL );
376
377     int width = option.rect.width();
378     int height = option.rect.height();
379
380     // Pixmap: buffer where to draw
381     QPixmap pix(option.rect.size());
382
383     // Draw background
384     pix.fill( Qt::transparent ); // FIXME
385
386     // ItemView primitive style
387     QApplication::style()->drawPrimitive( QStyle::PE_PanelItemViewItem,
388                                           &option,
389                                           painter );
390
391     // Painter on the pixmap
392     QPainter *pixpaint = new QPainter(&pix);
393
394     // Text font & pen
395     QFont font = painter->font();
396     QPen pen = painter->pen();
397     if( view->selectionModel()->selectedIndexes().contains( index ) )
398     {
399         pen.setBrush( option.palette.highlightedText() );
400     }
401     else
402     {
403         pen.setBrush( option.palette.text() );
404     }
405     pixpaint->setPen( pen );
406
407     // Title: bold
408     font.setBold( true );
409     pixpaint->setFont( font );
410     pixpaint->drawText( QRect( 10, 5, width - 70, 20 ),
411                         Qt::AlignLeft, ext->title );
412
413     // Short description: normal
414     font.setBold( false );
415     pixpaint->setFont( font );
416     pixpaint->drawText( QRect( 10, 30, width - 40, 20 ),
417                         Qt::AlignLeft, ext->description );
418
419     // Version: italic
420     font.setItalic( true );
421     pixpaint->setFont( font );
422     pixpaint->drawText( QRect( width - 50, 5, 20, 20 ),
423                         Qt::AlignLeft, ext->version );
424
425     // Flush paint operations
426     delete pixpaint;
427
428     // Draw it on the screen!
429     painter->drawPixmap( option.rect, pix );
430 }
431
432 QSize ExtensionItemDelegate::sizeHint( const QStyleOptionViewItem &option,
433                                        const QModelIndex &index ) const
434 {
435     if (index.isValid() && index.column() == 0)
436     {
437         QFontMetrics metrics = option.fontMetrics;
438         return QSize( 200, 20 + 2 * metrics.height() );
439     }
440     else
441         return QSize();
442 }
443
444 /* "More information" dialog */
445
446 ExtensionInfoDialog::ExtensionInfoDialog( const ExtensionCopy& extension,
447                                           intf_thread_t *p_intf,
448                                           QWidget *parent )
449        : QVLCDialog( parent, p_intf ),
450          extension( new ExtensionCopy( extension ) )
451 {
452     // Let's be a modal dialog
453     setWindowModality( Qt::WindowModal );
454
455     // Layout
456     QGridLayout *layout = new QGridLayout( this );
457
458     // Icon
459     QLabel *icon = new QLabel( this );
460     QPixmap pix( ":/logo/vlc48.png" );
461     icon->setPixmap( pix );
462     layout->addWidget( icon, 1, 0, 2, 1, Qt::AlignLeft );
463
464     // Title
465     QLabel *label = new QLabel( extension.title, this );
466     QFont font = label->font();
467     font.setBold( true );
468     font.setPointSizeF( font.pointSizeF() * 1.3f );
469     label->setFont( font );
470     layout->addWidget( label, 0, 0, 1, -1, Qt::AlignLeft );
471
472     // Version
473     label = new QLabel( this );
474     QString txt = qtr( "Version:" );
475     txt += extension.version;
476     label->setText( txt );
477     layout->addWidget( label, 1, 1, 1, 1, Qt::AlignLeft | Qt::AlignBottom );
478
479     // Author
480     label = new QLabel( this );
481     txt = qtr( "Author(s):" );
482     txt += extension.author;
483     label->setText( txt );
484     layout->addWidget( label, 2, 1, 1, 1, Qt::AlignLeft | Qt::AlignTop );
485
486     // Description
487     // FIXME: if( !extension.full_description.isEmpty() ) ...
488     QTextBrowser *text = new QTextBrowser( this );
489     text->setHtml( extension.description );
490     layout->addWidget( text, 4, 0, 1, -1, Qt::AlignJustify );
491
492     // URL
493     label = new QLabel( qtr( "Website:" ), this );
494     font = label->font();
495     font.setBold( true );
496     label->setFont( font );
497     layout->addWidget( label, 5, 0, 1, 1, Qt::AlignLeft );
498     label = new QLabel( extension.url, this );
499     label->setTextInteractionFlags( Qt::TextBrowserInteraction );
500     layout->addWidget( label, 5, 1, 1, 1, Qt::AlignLeft );
501
502     // Script file
503     label = new QLabel( qtr( "File:" ), this );
504     label->setFont( font );
505     layout->addWidget( label, 6, 0, 1, 1, Qt::AlignLeft );
506     QLineEdit *line = new QLineEdit( extension.name, this );
507     layout->addWidget( line, 6, 1, 1, 1, Qt::AlignLeft );
508
509     // Close button
510     QDialogButtonBox *group = new QDialogButtonBox( QDialogButtonBox::Close,
511                                                     Qt::Horizontal, this );
512     layout->addWidget( group, 7, 0, 1, -1 );
513     connect( group, SIGNAL(accepted()), this, SLOT(close()) );
514 }
515
516 ExtensionInfoDialog::~ExtensionInfoDialog()
517 {
518     delete extension;
519 }