~ubuntu-branches/ubuntu/vivid/muon/vivid-proposed

« back to all changes in this revision

Viewing changes to libmuon/ReviewsBackend/Review.h

Tags: upstream-1.3.65
Import upstream version 1.3.65

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright © 2011 Jonathan Thomas <echidnaman@kubuntu.org>             *
 
3
 *                                                                         *
 
4
 *   This program is free software; you can redistribute it and/or         *
 
5
 *   modify it under the terms of the GNU General Public License as        *
 
6
 *   published by the Free Software Foundation; either version 2 of        *
 
7
 *   the License or (at your option) version 3 or any later version        *
 
8
 *   accepted by the membership of KDE e.V. (or its successor approved     *
 
9
 *   by the membership of KDE e.V.), which shall act as a proxy            *
 
10
 *   defined in Section 14 of version 3 of the license.                    *
 
11
 *                                                                         *
 
12
 *   This program is distributed in the hope that it will be useful,       *
 
13
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
14
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
15
 *   GNU General Public License for more details.                          *
 
16
 *                                                                         *
 
17
 *   You should have received a copy of the GNU General Public License     *
 
18
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
 
19
 ***************************************************************************/
 
20
 
 
21
#ifndef REVIEW_H
 
22
#define REVIEW_H
 
23
 
 
24
#include <QtCore/QDateTime>
 
25
#include <QtCore/QVariant>
 
26
 
 
27
#include "libmuonprivate_export.h"
 
28
 
 
29
namespace QApt {
 
30
    class Package;
 
31
}
 
32
 
 
33
class MUONPRIVATE_EXPORT Review
 
34
{
 
35
public:
 
36
    explicit Review(const QVariantMap &data);
 
37
    ~Review();
 
38
 
 
39
    // Creation date determines greater than/less than
 
40
    bool operator<(const Review &rhs) const;
 
41
    bool operator>(const Review &rhs) const;
 
42
 
 
43
    QString applicationName() const;
 
44
    QString packageName() const;
 
45
    QString packageVersion() const;
 
46
    QString language() const;
 
47
    QString summary() const;
 
48
    QString reviewText() const;
 
49
    QString reviewer() const;
 
50
    QDateTime creationDate() const;
 
51
    bool shouldShow() const;
 
52
    quint64 id() const;
 
53
    int rating() const;
 
54
    int usefulnessTotal() const;
 
55
    int usefulnessFavorable() const;
 
56
    QApt::Package *package() const;
 
57
 
 
58
    void setPackage(QApt::Package *package);
 
59
 
 
60
private:
 
61
    QString m_appName;
 
62
    QDateTime m_creationDate;
 
63
    bool m_shouldShow;
 
64
    quint64 m_id;
 
65
    QString m_language;
 
66
    QString m_packageName;
 
67
    int m_rating;
 
68
    QString m_reviewText;
 
69
    QString m_reviewer;
 
70
    int m_usefulnessTotal;
 
71
    int m_usefulnessFavorable;
 
72
    QString m_summary;
 
73
    QString m_packageVersion;
 
74
 
 
75
    QApt::Package *m_package;
 
76
};
 
77
 
 
78
#endif