globally remove all trailing whitespace from ardour code base.
[ardour.git] / libs / gtkmm2ext / idle_adjustment.cc
1 /*
2     Copyright (C) 2000-2007 Paul Davis
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; either version 2 of the License, or
7     (at your option) any later version.
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, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #define _BSD_SOURCE
21 #include <gtkmm2ext/idle_adjustment.h>
22 #include <gtkmm/main.h>
23 #include <glibmm/main.h>
24 #include <iostream>
25
26 #include "pbd/timersub.h"
27
28 using namespace Gtk;
29 using namespace sigc;
30 using namespace Gtkmm2ext;
31
32 IdleAdjustment::IdleAdjustment (Gtk::Adjustment& adj)
33 {
34         adj.signal_value_changed().connect (mem_fun (*this, &IdleAdjustment::underlying_adjustment_value_changed));
35         timeout_queued = 0;
36         last_vc = g_get_monotonic_time();
37 }
38
39 IdleAdjustment::~IdleAdjustment ()
40 {
41 }
42
43 void
44 IdleAdjustment::underlying_adjustment_value_changed ()
45 {
46         last_vc = g_get_monotonic_time();
47         
48         if (timeout_queued) {
49                 return;
50         }
51
52         Glib::signal_timeout().connect(mem_fun(*this, &IdleAdjustment::timeout_handler), 250);
53         timeout_queued = true;
54 }       
55
56 gint
57 IdleAdjustment::timeout_handler ()
58 {
59         int64_t now, tdiff;
60         now = g_get_monotonic_time();
61         tdiff = now - last_vc;
62
63         std::cerr << "timer elapsed, diff = " << tdiff << " usec" << std::endl;
64
65         if (tdiff > 250000) {
66                 std::cerr << "send signal\n";
67                 value_changed ();
68                 timeout_queued = false;
69                 return FALSE;
70         } else {
71                 return TRUE;
72         }
73 }