source: smplayer/trunk/src/urlhistory.cpp@ 121

Last change on this file since 121 was 119, checked in by Silvan Scherrer, 14 years ago

SMPlayer: latest svn update

  • Property svn:eol-style set to LF
File size: 1.9 KB
Line 
1/* smplayer, GUI front-end for mplayer.
2 Copyright (C) 2006-2011 Ricardo Villalba <rvm@escomposlinux.org>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17*/
18
19#include "urlhistory.h"
20#include "constants.h"
21
22URLHistory::URLHistory() : Recents()
23{
24 setMaxItems(50);
25}
26
27URLHistory::~URLHistory() {
28}
29
30void URLHistory::addUrl(QString url, bool is_playlist) {
31 qDebug("Recents::addItem: '%s'", url.toUtf8().data());
32
33 // Delete duplicates
34 QStringList::iterator iterator = l.begin();
35 while (iterator != l.end()) {
36 QString s = (*iterator);
37 if (isPlaylist(s)) {
38 s = s.remove( QRegExp(IS_PLAYLIST_TAG_RX) );
39 }
40 if (s == url)
41 iterator = l.erase(iterator);
42 else
43 iterator++;
44 }
45
46 // Add new item to list
47 if (is_playlist) url = url + IS_PLAYLIST_TAG;
48 l.prepend(url);
49
50 if (l.count() > max_items) l.removeLast();
51}
52
53void URLHistory::addUrl(QString url) {
54 bool is_playlist = isPlaylist(url);
55 if (is_playlist) url = url.remove( QRegExp(IS_PLAYLIST_TAG_RX) );
56 addUrl(url, is_playlist);
57}
58
59QString URLHistory::url(int n) {
60 QString s = l[n];
61 if (isPlaylist(n)) s = s.remove( QRegExp(IS_PLAYLIST_TAG_RX) );
62 return s;
63}
64
65bool URLHistory::isPlaylist(int n) {
66 return isPlaylist(l[n]);
67}
68
69bool URLHistory::isPlaylist(QString url) {
70 return url.endsWith(IS_PLAYLIST_TAG);
71}
72
Note: See TracBrowser for help on using the repository browser.