Recent: Reverse order to "most recent first"
[nomnom.git] / src / Recent.cpp
bloba258e1ba9d9dfb944714bfb694f251a0c4b4b399
1 /*
2 * Copyright (C) 2010 Toni Gundogdu.
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 3 of the License, or
7 * (at your option) any later version.
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.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <QSettings>
19 #include <QDebug>
21 #include "Recent.h"
23 #define QSETTINGS_GROUP "Recent"
25 Recent::Recent () :maxItems (10) { }
26 Recent::~Recent () { }
28 void
29 Recent::write () const
31 QSettings ().setValue(QString("%1/drops").arg(QSETTINGS_GROUP), drops);
34 void
35 Recent::read ()
37 drops = QSettings ().value (QString ("%1/drops")
38 .arg (QSETTINGS_GROUP))
39 .toStringList ();
42 void
43 Recent::append(const QString& s)
45 drops.prepend(s);
46 drops.removeDuplicates();
48 if (drops.size() > maxItems)
49 drops.takeFirst();
52 Recent&
53 Recent::operator<<(const QString& s)
55 append (s);
56 return *this;
59 QStringList Recent::toStringList () const
61 return drops;
64 void Recent::clear ()
66 drops.clear ();
69 // vim: set ts=2 sw=2 tw=72 expandtab: