]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/selector.cpp
Qt: reuse the SD data
[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            : QWidget( p ), p_intf(_p_intf)
43 {
44     view = new QTreeWidget;
45
46     view->setIconSize( QSize( 24,24 ) );
47 //    view->setAlternatingRowColors( true );
48     view->setIndentation( 10 );
49     view->header()->hide();
50     view->setRootIsDecorated( false );
51 //    model = new PLModel( THEPL, p_intf, THEPL->p_root_category, 1, this );
52 //    view->setModel( model );
53 //    view->setAcceptDrops(true);
54 //    view->setDropIndicatorShown(true);
55
56     createItems();
57     CONNECT( view, itemActivated( QTreeWidgetItem *, int ),
58              this, setSource( QTreeWidgetItem *) );
59     /* I believe this is unnecessary, seeing
60        QStyle::SH_ItemView_ActivateItemOnSingleClick
61         CONNECT( view, itemClicked( QTreeWidgetItem *, int ),
62              this, setSource( QTreeWidgetItem *) ); */
63
64     QVBoxLayout *layout = new QVBoxLayout;
65     layout->setSpacing( 0 ); layout->setMargin( 0 );
66     layout->addWidget( view );
67     setLayout( layout );
68
69     /* select the first item */
70 //  view->setCurrentIndex( model->index( 0, 0, QModelIndex() ) );
71 }
72
73 void PLSelector::setSource( QTreeWidgetItem *item )
74 {
75     if( !item )
76         return;
77
78     int i_type = item->data( 0, Qt::UserRole ).toInt();
79
80     assert( ( i_type == PL_TYPE || i_type == ML_TYPE || i_type == SD_TYPE ) );
81     if( i_type == SD_TYPE )
82     {
83         QString qs = item->data( 0, Qt::UserRole + 2 ).toString();
84         if( !playlist_IsServicesDiscoveryLoaded( THEPL, qtu( qs ) ) )
85         {
86             playlist_ServicesDiscoveryAdd( THEPL, qtu( qs ) );
87 #warning FIXME
88             playlist_item_t *pl_item =
89                     THEPL->p_root_category->pp_children[THEPL->p_root_category->i_children-1];
90             item->setData( 0, Qt::UserRole + 1, QVariant::fromValue( pl_item ) );
91
92             emit activated( pl_item );
93             return;
94         }
95     }
96
97     if( i_type == SD_TYPE )
98         msg_Dbg( p_intf, "SD already loaded, reloading" );
99
100     playlist_item_t *pl_item =
101             item->data( 0, Qt::UserRole + 1 ).value<playlist_item_t *>();
102     if( pl_item )
103             emit activated( pl_item );
104 }
105
106 void PLSelector::createItems()
107 {
108     assert( view );
109     QTreeWidgetItem *pl = new QTreeWidgetItem( view );
110     pl->setText( 0, qtr( "Playlist" ) );
111     pl->setData( 0, Qt::UserRole, PL_TYPE );
112     pl->setData( 0, Qt::UserRole + 1, QVariant::fromValue( THEPL->p_local_category ) );
113
114 /*  QTreeWidgetItem *empty = new QTreeWidgetItem( view );
115     empty->setFlags(Qt::NoItemFlags); */
116
117     QTreeWidgetItem *lib = new QTreeWidgetItem( view );
118     lib->setText( 0, qtr( "Library" ) );
119     lib->setData( 0, Qt::UserRole, ML_TYPE );
120     lib->setData( 0, Qt::UserRole + 1, QVariant::fromValue( THEPL->p_ml_category ) );
121
122 /*  QTreeWidgetItem *empty2 = new QTreeWidgetItem( view );
123     empty2->setFlags(Qt::NoItemFlags);*/
124
125     QTreeWidgetItem *sds = new QTreeWidgetItem( view );
126     sds->setExpanded( true );
127     sds->setText( 0, qtr( "Libraries" ) );
128
129     char **ppsz_longnames;
130     char **ppsz_names = vlc_sd_GetNames( &ppsz_longnames );
131     if( !ppsz_names )
132         return;
133
134     char **ppsz_name = ppsz_names, **ppsz_longname = ppsz_longnames;
135     QTreeWidgetItem *sd_item;
136     for( ; *ppsz_name; ppsz_name++, ppsz_longname++ )
137     {
138         sd_item = new QTreeWidgetItem( QStringList( *ppsz_longname ) );
139         sd_item->setData( 0, Qt::UserRole, SD_TYPE );
140         sd_item->setData( 0, Qt::UserRole + 2, qfu( *ppsz_name ) );
141         sds->addChild( sd_item );
142     }
143 }
144
145 PLSelector::~PLSelector()
146 {
147 }