~patrick-hetu/+junk/evopedia-app

« back to all changes in this revision

Viewing changes to src/archive.h

  • Committer: Patrick Hetu
  • Date: 2013-07-22 02:35:22 UTC
  • Revision ID: patrick.hetu@gmail.com-20130722023522-jrfmj5s6eb3mfdv8
initial test

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * evopedia: An offline Wikipedia reader.
 
3
 *
 
4
 * Copyright (C) 2010-2011 evopedia developers
 
5
 *
 
6
 * This program is free software: you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation, either version 3 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 *
 
19
 */
 
20
 
 
21
#ifndef ARCHIVE_H
 
22
#define ARCHIVE_H
 
23
 
 
24
#include <QObject>
 
25
#include <QPair>
 
26
#include <QString>
 
27
#include <QSettings>
 
28
 
 
29
/* (language, date) uniquely identifies archive */
 
30
typedef QPair<QString, QString> ArchiveID;
 
31
 
 
32
class Archive : public QObject
 
33
{
 
34
    Q_OBJECT
 
35
 
 
36
protected:
 
37
    QString language;
 
38
    QString date;
 
39
public:
 
40
    explicit Archive(QObject *parent = 0);
 
41
 
 
42
    const QString &getLanguage() const { return language; }
 
43
    const QString &getDate() const { return date; }
 
44
    const ArchiveID getID() const { return ArchiveID(language, date); }
 
45
 
 
46
    virtual void saveToSettings(QSettings &settings) const { Q_UNUSED(settings); }
 
47
 
 
48
    /* newer archives are "less" */
 
49
    bool operator<(const Archive &other) const {
 
50
        if (getLanguage() == other.getLanguage())
 
51
            return getDate() > other.getDate();
 
52
        else
 
53
            return getLanguage() < other.getLanguage();
 
54
    }
 
55
 
 
56
    static bool comparePointers(const Archive *a, const Archive *b) {
 
57
        return (*a) < (*b);
 
58
    }
 
59
 
 
60
signals:
 
61
 
 
62
public slots:
 
63
 
 
64
 
 
65
};
 
66
 
 
67
#endif // ARCHIVE_H