~3v1n0/unity/overlay-border-scale

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/Decaymulator.cpp

  • Committer: Daniel van Vugt
  • Date: 2012-03-14 06:24:18 UTC
  • mfrom: (2108 unity)
  • mto: This revision was merged to the branch mainline in revision 2146.
  • Revision ID: daniel.van.vugt@canonical.com-20120314062418-nprucpbr0m7qky5e
MergedĀ latestĀ lp:unity

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
 
2
/*
 
3
 * Copyright (C) 2010 Canonical Ltd
 
4
 *
 
5
 * This program is free software: you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License version 3 as
 
7
 * published by the Free Software Foundation.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 *
 
17
 * Authored by: Jason Smith <jason.smith@canonical.com>
 
18
 */
 
19
 
 
20
#include "Decaymulator.h"
 
21
 
 
22
namespace unity {
 
23
namespace ui {
 
24
  
 
25
Decaymulator::Decaymulator()
 
26
{
 
27
  on_decay_handle = 0;
 
28
  value.changed.connect(sigc::mem_fun(this, &Decaymulator::OnValueChanged));
 
29
}
 
30
 
 
31
void Decaymulator::OnValueChanged(int value)
 
32
{
 
33
  if (!on_decay_handle && value > 0)
 
34
  {
 
35
    on_decay_handle = g_timeout_add(10, &Decaymulator::OnDecayTimeout, this);
 
36
  }
 
37
}
 
38
 
 
39
gboolean Decaymulator::OnDecayTimeout(gpointer data)
 
40
{
 
41
  Decaymulator* self = (Decaymulator*) data;
 
42
 
 
43
  int partial_decay = self->rate_of_decay / 100;
 
44
 
 
45
  if (self->value <= partial_decay)
 
46
  {
 
47
    self->value = 0;
 
48
    self->on_decay_handle = 0;
 
49
    return FALSE;
 
50
  }
 
51
 
 
52
 
 
53
  self->value = self->value - partial_decay;
 
54
  return TRUE;
 
55
}
 
56
 
 
57
}
 
58
}
 
 
b'\\ No newline at end of file'