~ubuntu-branches/debian/sid/baloo-kf5/sid

« back to all changes in this revision

Viewing changes to src/core/result.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2014-07-10 21:13:07 UTC
  • Revision ID: package-import@ubuntu.com-20140710211307-iku0qs6vlplgn06m
Tags: upstream-5.0.0b
ImportĀ upstreamĀ versionĀ 5.0.0b

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of the KDE Baloo Project
 
3
 * Copyright (C) 2013  Vishesh Handa <me@vhanda.in>
 
4
 *
 
5
 * This library is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU Lesser General Public
 
7
 * License as published by the Free Software Foundation; either
 
8
 * version 2.1 of the License, or (at your option) version 3, or any
 
9
 * later version accepted by the membership of KDE e.V. (or its
 
10
 * successor approved by the membership of KDE e.V.), which shall
 
11
 * act as a proxy defined in Section 6 of version 3 of the license.
 
12
 *
 
13
 * This library is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 * Lesser General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU Lesser General Public
 
19
 * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 
20
 *
 
21
 */
 
22
 
 
23
#include "result.h"
 
24
 
 
25
using namespace Baloo;
 
26
 
 
27
class Result::Private {
 
28
public:
 
29
    QByteArray id;
 
30
    QString text;
 
31
    QString icon;
 
32
    QUrl url;
 
33
};
 
34
 
 
35
Result::Result()
 
36
    : d(new Private)
 
37
{
 
38
}
 
39
 
 
40
Result::Result(const Result& rhs)
 
41
    : d(new Private(*rhs.d))
 
42
{
 
43
}
 
44
 
 
45
Result::~Result()
 
46
{
 
47
    delete d;
 
48
}
 
49
 
 
50
void Result::setId(const QByteArray& id)
 
51
{
 
52
    d->id = id;
 
53
}
 
54
 
 
55
QByteArray Result::id() const
 
56
{
 
57
    return d->id;
 
58
}
 
59
 
 
60
void Result::setText(const QString& text)
 
61
{
 
62
    d->text = text;
 
63
}
 
64
 
 
65
QString Result::text() const
 
66
{
 
67
    return d->text;
 
68
}
 
69
 
 
70
QString Result::icon() const
 
71
{
 
72
    return d->icon;
 
73
}
 
74
 
 
75
void Result::setIcon(const QString& icon)
 
76
{
 
77
    d->icon = icon;
 
78
}
 
79
 
 
80
QUrl Result::url() const
 
81
{
 
82
    return d->url;
 
83
}
 
84
 
 
85
void Result::setUrl(const QUrl& url)
 
86
{
 
87
    d->url = url;
 
88
}
 
89
 
 
90
Result& Result::operator=(const Result& rhs)
 
91
{
 
92
    *d = *rhs.d;
 
93
    return *this;
 
94
}