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 |
|
---|
22 | URLHistory::URLHistory() : Recents()
|
---|
23 | {
|
---|
24 | setMaxItems(50);
|
---|
25 | }
|
---|
26 |
|
---|
27 | URLHistory::~URLHistory() {
|
---|
28 | }
|
---|
29 |
|
---|
30 | void 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 |
|
---|
53 | void 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 |
|
---|
59 | QString 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 |
|
---|
65 | bool URLHistory::isPlaylist(int n) {
|
---|
66 | return isPlaylist(l[n]);
|
---|
67 | }
|
---|
68 |
|
---|
69 | bool URLHistory::isPlaylist(QString url) {
|
---|
70 | return url.endsWith(IS_PLAYLIST_TAG);
|
---|
71 | }
|
---|
72 |
|
---|