]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/selector.cpp
Qt4: make PLSelector a subclass of QTreeWidget
[vlc] / modules / gui / qt4 / components / playlist / selector.cpp
1 /*****************************************************************************
2  * selector.cpp : Playlist source selector
3  ****************************************************************************
4  * Copyright (C) 2006-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf
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 <assert.h>
30
31 #include "components/playlist/selector.hpp"
32 #include "qt4.hpp"
33
34 #include <QVBoxLayout>
35 #include <QHeaderView>
36 #include <QTreeWidget>
37
38 #include <vlc_playlist.h>
39 #include <vlc_services_discovery.h>
40
41 PLSelector::PLSelector( QWidget *p, intf_thread_t *_p_intf )
42            : QTreeWidget( p ), p_intf(_p_intf)
43 {
44     setIconSize( QSize( 24,24 ) );
45 //    view->setAlternatingRowColors( true );
46     setIndentation( 10 );
47     header()->hide();
48     setRootIsDecorated( false );
49 //    model = new PLModel( THEPL, p_intf, THEPL->p_root_category, 1, this );
50 //    view->setModel( model );
51 //    view->setAcceptDrops(true);
52 //    view->setDropIndicatorShown(true);
53
54     createItems();
55     CONNECT( this, itemActivated( QTreeWidgetItem *, int ),
56              this, setSource( QTreeWidgetItem *) );
57     /* I believe this is unnecessary, seeing
58        QStyle::SH_ItemView_ActivateItemOnSingleClick
59         CONNECT( view, itemClicked( QTreeWidgetItem *, int ),
60              this, setSource( QTreeWidgetItem *) ); */
61
62     /* select the first item */
63 //  view->setCurrentIndex( model->index( 0, 0, QModelIndex() ) );
64 }
65
66 void PLSelector::setSource( QTreeWidgetItem *item )
67 {
68     if( !item )
69         return;
70
71     int i_type = item->data( 0, TYPE_ROLE ).toInt();
72
73     assert( ( i_type == PL_TYPE || i_type == ML_TYPE || i_type == SD_TYPE ) );
74     if( i_type == SD_TYPE )
75     {
76         QString qs = item->data( 0, NAME_ROLE ).toString();
77         if( !playlist_IsServicesDiscoveryLoaded( THEPL, qtu( qs ) ) )
78         {
79             playlist_ServicesDiscoveryAdd( THEPL, qtu( qs ) );
80 #warning FIXME
81             playlist_item_t *pl_item =
82                     THEPL->p_root_category->pp_children[THEPL->p_root_category->i_children-1];
83             item->setData( 0, PPL_ITEM_ROLE, QVariant::fromValue( pl_item ) );
84
85             emit activated( pl_item );
86             return;
87         }
88     }
89
90     if( i_type == SD_TYPE )
91         msg_Dbg( p_intf, "SD already loaded, reloading" );
92
93     playlist_item_t *pl_item =
94             item->data( 0, PPL_ITEM_ROLE ).value<playlist_item_t *>();
95     if( pl_item )
96             emit activated( pl_item );
97 }
98
99 void PLSelector::createItems()
100 {
101     QTreeWidgetItem *pl = new QTreeWidgetItem( this );
102     pl->setText( 0, qtr( "Playlist" ) );
103     pl->setData( 0, TYPE_ROLE, PL_TYPE );
104     pl->setData( 0, PPL_ITEM_ROLE, QVariant::fromValue( THEPL->p_local_category ) );
105
106 /*  QTreeWidgetItem *empty = new QTreeWidgetItem( view );
107     empty->setFlags(Qt::NoItemFlags); */
108
109     QTreeWidgetItem *lib = new QTreeWidgetItem( this );
110     lib->setText( 0, qtr( "Library" ) );
111     lib->setData( 0, TYPE_ROLE, ML_TYPE );
112     lib->setData( 0, PPL_ITEM_ROLE, QVariant::fromValue( THEPL->p_ml_category ) );
113
114 /*  QTreeWidgetItem *empty2 = new QTreeWidgetItem( view );
115     empty2->setFlags(Qt::NoItemFlags);*/
116
117     QTreeWidgetItem *sds = new QTreeWidgetItem( this );
118     sds->setExpanded( true );
119     sds->setText( 0, qtr( "Libraries" ) );
120
121     char **ppsz_longnames;
122     char **ppsz_names = vlc_sd_GetNames( &ppsz_longnames );
123     if( !ppsz_names )
124         return;
125
126     char **ppsz_name = ppsz_names, **ppsz_longname = ppsz_longnames;
127     QTreeWidgetItem *sd_item;
128     for( ; *ppsz_name; ppsz_name++, ppsz_longname++ )
129     {
130         sd_item = new QTreeWidgetItem( QStringList( *ppsz_longname ) );
131         sd_item->setData( 0, TYPE_ROLE, SD_TYPE );
132         sd_item->setData( 0, NAME_ROLE, qfu( *ppsz_name ) );
133         sds->addChild( sd_item );
134     }
135 }
136
137 PLSelector::~PLSelector()
138 {
139 }