~unity-2d-team/unity-2d/trunk

« back to all changes in this revision

Viewing changes to libunity-2d-private/src/decayedvalue.cpp

  • Committer: Tarmac
  • Author(s): Albert Astals, Gerry Boland, gerry.boland at canonical, Albert Astals Cid
  • Date: 2012-03-06 18:06:03 UTC
  • mfrom: (935.1.39 unity-2d_pointer_barrier)
  • Revision ID: tarmac-20120306180603-usgyjt9ji6dln1ru
Implementation of Pointer barriers and use in the launcher autohide behaviour. Fixes: https://bugs.launchpad.net/bugs/947976. Approved by Gerry Boland.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2012 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#include "decayedvalue.h"
 
18
 
 
19
DecayedValue::DecayedValue()
 
20
 : m_value(0)
 
21
 , m_target(0)
 
22
 , m_decayRate(0)
 
23
{
 
24
    m_valueDecayTimer.setInterval(10);
 
25
    connect(&m_valueDecayTimer, SIGNAL(timeout()), this, SLOT(decay()));
 
26
}
 
27
 
 
28
bool DecayedValue::addAndCheckExceedingTarget(int i)
 
29
{
 
30
    m_value += i;
 
31
    if (!m_valueDecayTimer.isActive()) {
 
32
        m_valueDecayTimer.start();
 
33
    }
 
34
    if (m_value > m_target) {
 
35
        m_value = 0;
 
36
        m_valueDecayTimer.stop();
 
37
        return true;
 
38
    } else {
 
39
        return false;
 
40
    }
 
41
}
 
42
 
 
43
void DecayedValue::setDecayRate(int decayRate)
 
44
{
 
45
    m_decayRate = decayRate;
 
46
}
 
47
 
 
48
void DecayedValue::setTarget(int target)
 
49
{
 
50
    m_target = target;
 
51
}
 
52
 
 
53
void DecayedValue::decay() {
 
54
  const int partial_decay = m_decayRate / 100;
 
55
 
 
56
  m_value -= partial_decay;
 
57
 
 
58
  if (m_value <= 0)
 
59
  {
 
60
    m_value = 0;
 
61
    m_valueDecayTimer.stop();
 
62
  }
 
63
}
 
64
 
 
65
#include "decayedvalue.moc"
 
 
b'\\ No newline at end of file'