~ps-jenkins/hud/utopic-proposed

« back to all changes in this revision

Viewing changes to service/HardCodedSearchSettings.cpp

  • Committer: CI bot
  • Author(s): Pete Woods
  • Date: 2014-02-18 14:28:24 UTC
  • mfrom: (370.1.2 trunk)
  • Revision ID: ps-jenkins@lists.canonical.com-20140218142824-kvy7sfapbfoa1m4l
Abstract out settings for improved testability Fixes: 1280559

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2014 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Author: Pete Woods <pete.woods@canonical.com>
 
17
 */
 
18
 
 
19
#include <service/HardCodedSearchSettings.h>
 
20
 
 
21
using namespace hud::service;
 
22
 
 
23
HardCodedSearchSettings::HardCodedSearchSettings() {
 
24
}
 
25
 
 
26
HardCodedSearchSettings::~HardCodedSearchSettings() {
 
27
}
 
28
 
 
29
uint HardCodedSearchSettings::addPenalty() const {
 
30
        return m_addPenalty;
 
31
}
 
32
 
 
33
uint HardCodedSearchSettings::dropPenalty() const {
 
34
        return m_dropPenalty;
 
35
}
 
36
 
 
37
uint HardCodedSearchSettings::endDropPenalty() const {
 
38
        return m_endDropPenalty;
 
39
}
 
40
 
 
41
uint HardCodedSearchSettings::swapPenalty() const {
 
42
        return m_swapPenalty;
 
43
}
 
44
 
 
45
void HardCodedSearchSettings::setAddPenalty(uint penalty) {
 
46
        if (m_addPenalty != penalty) {
 
47
                m_addPenalty = penalty;
 
48
                changed();
 
49
        }
 
50
}
 
51
 
 
52
void HardCodedSearchSettings::setDropPenalty(uint penalty) {
 
53
        if (m_dropPenalty != penalty) {
 
54
                m_dropPenalty = penalty;
 
55
                changed();
 
56
        }
 
57
}
 
58
 
 
59
void HardCodedSearchSettings::setEndDropPenalty(uint penalty) {
 
60
        if (m_endDropPenalty != penalty) {
 
61
                m_endDropPenalty = penalty;
 
62
                changed();
 
63
        }
 
64
}
 
65
 
 
66
void HardCodedSearchSettings::setSwapPenalty(uint penalty) {
 
67
        if (m_swapPenalty != penalty) {
 
68
                m_swapPenalty = penalty;
 
69
                changed();
 
70
        }
 
71
}