]> git.sesse.net Git - vlc/blob - modules/gui/qt4/recents.cpp
Merge branch 1.0-bugfix
[vlc] / modules / gui / qt4 / recents.cpp
1 /*****************************************************************************
2  * recents.cpp : Recents MRL (menu)
3  *****************************************************************************
4  * Copyright © 2006-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Ludovic Fauvet <etix@l0cal.com>
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
24
25 #include "recents.hpp"
26 #include "dialogs_provider.hpp"
27 #include "menus.hpp"
28
29 #include <QList>
30 #include <QString>
31 #include <QAction>
32 #include <QSettings>
33 #include <QRegExp>
34 #include <QSignalMapper>
35
36 #ifdef WIN32
37 #include <shlobj.h>
38 #endif
39
40 RecentsMRL* RecentsMRL::instance = NULL;
41
42 RecentsMRL::RecentsMRL( intf_thread_t *_p_intf ) : p_intf( _p_intf )
43 {
44     stack = new QList<QString>;
45     signalMapper = new QSignalMapper(this);
46     CONNECT( signalMapper,
47             mapped(const QString & ),
48             DialogsProvider::getInstance( p_intf ),
49             playMRL( const QString & ) );
50
51     isActive = config_GetInt( p_intf, "qt-recentplay" );
52     char* psz_tmp = config_GetPsz( p_intf, "qt-recentplay-filter" );
53     if( psz_tmp && *psz_tmp )
54         filter = new QRegExp( psz_tmp, Qt::CaseInsensitive );
55     else
56         filter = NULL;
57     free( psz_tmp );
58
59     load();
60     if( !isActive ) clear();
61 }
62
63 RecentsMRL::~RecentsMRL()
64 {
65     delete filter;
66     delete stack;
67 }
68
69 void RecentsMRL::addRecent( const QString &mrl )
70 {
71     if ( !isActive || ( filter && filter->indexIn( mrl ) >= 0 ) )
72         return;
73 #ifdef WIN32
74     SHAddToRecentDocs( 0x00000002 , qtu( mrl ) );
75 #endif
76     msg_Dbg( p_intf, "Adding a new MRL to recent ones: %s", qtu( mrl ) );
77     int i_index = stack->indexOf( mrl );
78     if( 0 <= i_index )
79     {
80         /* move to the front */
81         stack->move( i_index, 0 );
82     }
83     else
84     {
85         stack->prepend( mrl );
86         if( stack->size() > RECENTS_LIST_SIZE )
87             stack->takeLast();
88     }
89     QVLCMenu::updateRecents( p_intf );
90     save();
91
92 }
93
94 void RecentsMRL::clear()
95 {
96     if ( stack->isEmpty() )
97         return;
98     stack->clear();
99     if( isActive ) QVLCMenu::updateRecents( p_intf );
100     save();
101 }
102
103 QList<QString> RecentsMRL::recents()
104 {
105     return QList<QString>(*stack);
106 }
107
108 void RecentsMRL::load()
109 {
110     QStringList list = getSettings()->value( "RecentsMRL/list" ).toStringList();
111
112     for( int i = 0; i < list.size(); ++i )
113     {
114         if ( !filter || filter->indexIn( list.at(i) ) == -1 )
115             stack->append( list.at(i) );
116     }
117 }
118
119 void RecentsMRL::save()
120 {
121     QStringList list;
122
123     for( int i = 0; i < stack->size(); ++i )
124         list << stack->at(i);
125
126     getSettings()->setValue( "RecentsMRL/list", list );
127 }
128