v4l: support libv4l
[vlc/solaris.git] / modules / gui / qt4 / recents.cpp
blob83317afd9532bbc4f86e293bce4454fe6deed013
1 /*****************************************************************************
2 * recents.cpp : Recents MRL (menu)
3 *****************************************************************************
4 * Copyright © 2006-2008 the VideoLAN team
5 * $Id$
7 * Authors: Ludovic Fauvet <etix@l0cal.com>
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.
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.
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 *****************************************************************************/
25 #include "recents.hpp"
26 #include "dialogs_provider.hpp"
27 #include "menus.hpp"
29 #include <QList>
30 #include <QString>
31 #include <QAction>
32 #include <QSettings>
33 #include <QRegExp>
34 #include <QSignalMapper>
36 #ifdef WIN32
37 #include <shlobj.h>
38 #endif
40 RecentsMRL* RecentsMRL::instance = NULL;
42 RecentsMRL::RecentsMRL( intf_thread_t *_p_intf ) : p_intf( _p_intf )
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 & ) );
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 );
59 load();
60 if( !isActive ) clear();
63 RecentsMRL::~RecentsMRL()
65 delete filter;
66 delete stack;
69 void RecentsMRL::addRecent( const QString &mrl )
71 if ( !isActive || ( filter && filter->indexIn( mrl ) >= 0 ) )
72 return;
74 msg_Dbg( p_intf, "Adding a new MRL to recent ones: %s", qtu( mrl ) );
76 #ifdef WIN32
77 /* Add to the Windows 7 default list in taskbar */
78 SHAddToRecentDocs( 0x00000002 , qtu( mrl ) );
79 #endif
81 int i_index = stack->indexOf( mrl );
82 if( 0 <= i_index )
84 /* move to the front */
85 stack->move( i_index, 0 );
87 else
89 stack->prepend( mrl );
90 if( stack->size() > RECENTS_LIST_SIZE )
91 stack->takeLast();
93 QVLCMenu::updateRecents( p_intf );
94 save();
97 void RecentsMRL::clear()
99 if ( stack->isEmpty() )
100 return;
101 stack->clear();
102 if( isActive ) QVLCMenu::updateRecents( p_intf );
103 save();
106 QList<QString> RecentsMRL::recents()
108 return QList<QString>(*stack);
111 void RecentsMRL::load()
113 QStringList list = getSettings()->value( "RecentsMRL/list" ).toStringList();
115 for( int i = 0; i < list.size(); ++i )
117 if ( !filter || filter->indexIn( list.at(i) ) == -1 )
118 stack->append( list.at(i) );
122 void RecentsMRL::save()
124 QStringList list;
126 for( int i = 0; i < stack->size(); ++i )
127 list << stack->at(i);
129 getSettings()->setValue( "RecentsMRL/list", list );