f74a3a97012e0958fbaac35eb3d1d55850c2856c
[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 <iostream>
24
25 #include "pbd/timersub.h"
26
27 using namespace Gtk;
28 using namespace sigc;
29 using namespace Gtkmm2ext;
30
31 IdleAdjustment::IdleAdjustment (Gtk::Adjustment& adj)
32 {
33         adj.signal_value_changed().connect (mem_fun (*this, &IdleAdjustment::underlying_adjustment_value_changed));
34         timeout_queued = 0;
35         gettimeofday (&last_vc, 0);
36 }
37
38 IdleAdjustment::~IdleAdjustment ()
39 {
40 }
41
42 void
43 IdleAdjustment::underlying_adjustment_value_changed ()
44 {
45         gettimeofday (&last_vc, 0);
46         
47         if (timeout_queued) {
48                 return;
49         }
50
51         Glib::signal_timeout().connect(mem_fun(*this, &IdleAdjustment::timeout_handler), 250);
52         timeout_queued = true;
53 }       
54
55 gint
56 IdleAdjustment::timeout_handler ()
57 {
58         struct timeval now;
59         struct timeval tdiff;
60
61         gettimeofday (&now, 0);
62
63         timersub (&now, &last_vc, &tdiff);
64
65         std::cerr << "timer elapsed, diff = " << tdiff.tv_sec << " + " << tdiff.tv_usec << std::endl;
66
67         if (tdiff.tv_sec > 0 || tdiff.tv_usec > 250000) {
68                 std::cerr << "send signal\n";
69                 value_changed ();
70                 timeout_queued = false;
71                 return FALSE;
72         } else {
73                 return TRUE;
74         }
75 }