~ubuntu-branches/ubuntu/trusty/digikam/trusty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/* ============================================================
 *
 * This file is a part of digiKam project
 * http://www.digikam.org
 *
 * Date        : 2010-06-02
 * Description : class that holds list of applied filters to image
 *
 * Copyright (C) 2010 by Marcel Wiesweg <marcel dot wiesweg at gmx dot de>
 * Copyright (C) 2010 by Martin Klapetek <martin dot klapetek at gmail dot com>
 *
 * This program is free software; you can redistribute it
 * and/or modify it under the terms of the GNU General
 * Public License as published by the Free Software Foundation;
 * either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * ============================================================ */

#include "filteraction.h"

namespace Digikam
{

FilterAction::FilterAction()
    : m_category(ReproducibleFilter),
      m_version(0)
{
}

FilterAction::FilterAction(const QString& identifier, int version, FilterAction::Category category)
    : m_category(category),
      m_identifier(identifier),
      m_version(version)
{
}

bool FilterAction::isNull() const
{
    return m_identifier.isEmpty();
}

bool FilterAction::operator==(const FilterAction& other) const
{
    return m_identifier      == other.m_identifier             &&
           m_version         == other.m_version                &&
           m_category        == other.m_category               &&
           m_description     == other.m_description            &&
           m_displayableName == other.m_displayableName        &&
           m_params          == other.m_params;
}

FilterAction::Category FilterAction::category() const
{
    return m_category;
}

QString FilterAction::identifier() const
{
    return m_identifier;
}

int FilterAction::version() const
{
    return m_version;
}

QString FilterAction::description() const
{
    return m_description;
}

void FilterAction::setDescription(const QString& description)
{
    m_description = description;
}

QString FilterAction::displayableName() const
{
    return m_displayableName;
}

void FilterAction::setDisplayableName(const QString& displayableName)
{
    m_displayableName = displayableName;
}

FilterAction::Flags FilterAction::flags() const
{
    return m_flags;
}

void FilterAction::setFlags(Flags flags)
{
    m_flags = flags;
}

void FilterAction::addFlag(Flags flags)
{
    m_flags |= flags;
}

void FilterAction::removeFlag(Flags flags)
{
    m_flags &= ~flags;
}

bool FilterAction::hasParameters() const
{
    return !m_params.isEmpty();
}

const QHash<QString,QVariant> &FilterAction::parameters() const
{
    return m_params;
}

QHash<QString, QVariant> &FilterAction::parameters()
{
    return m_params;
}

bool FilterAction::hasParameter(const QString& key) const
{
    return m_params.contains(key);
}

const QVariant FilterAction::parameter(const QString& key) const
{
    return m_params.value(key);
}

QVariant& FilterAction::parameter(const QString& key)
{
    return m_params[key];
}

void FilterAction::setParameter(const QString& key, const QVariant& value)
{
    m_params.insert(key, value);
}

void FilterAction::addParameter(const QString& key, const QVariant& value)
{
    m_params.insertMulti(key, value);
}

void FilterAction::addParameters(const QHash<QString, QVariant>& params)
{
    m_params = m_params.unite(params);
}

void FilterAction::setParameters(const QHash<QString, QVariant>& params)
{
    m_params = params;
}

void FilterAction::removeParameters(const QString& key)
{
    m_params.remove(key);
}

void FilterAction::clearParameters()
{
    m_params.clear();
}

} // namespace Digikam