more changes to broken-out tempo code
[ardour.git] / libs / widgets / slider_controller.cc
1 /*
2     Copyright (C) 1998-99 Paul Davis
3     This program is free software; you can redistribute it and/or modify
4     it under the terms of the GNU General Public License as published by
5     the Free Software Foundation; either version 2 of the License, or
6     (at your option) any later version.
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, write to the Free Software
15     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
17     $Id$
18 */
19
20 #include <string>
21
22 #include "gtkmm2ext/gtk_ui.h"
23 #include "pbd/controllable.h"
24
25 #include "widgets/ardour_fader.h"
26 #include "widgets/slider_controller.h"
27
28 #include "pbd/i18n.h"
29
30 using namespace PBD;
31 using namespace ArdourWidgets;
32
33 SliderController::SliderController (Gtk::Adjustment *adj, boost::shared_ptr<PBD::Controllable> mc, int orientation, int fader_length, int fader_girth)
34         : ArdourFader (*adj, orientation, fader_length, fader_girth)
35         , _ctrl (mc)
36         , _ctrl_adj (adj)
37         , _spin_adj (0, 0, 1.0, .1, .01)
38         , _spin (_spin_adj, 0, 2)
39         , _ctrl_ignore (false)
40         , _spin_ignore (false)
41 {
42         if (mc) {
43                 _spin_adj.set_lower (mc->lower ());
44                 _spin_adj.set_upper (mc->upper ());
45                 _spin_adj.set_step_increment(_ctrl->interface_to_internal(adj->get_step_increment()) - mc->lower ());
46                 _spin_adj.set_page_increment(_ctrl->interface_to_internal(adj->get_page_increment()) - mc->lower ());
47
48                 adj->signal_value_changed().connect (sigc::mem_fun(*this, &SliderController::ctrl_adjusted));
49                 _spin_adj.signal_value_changed().connect (sigc::mem_fun(*this, &SliderController::spin_adjusted));
50
51                 _binding_proxy.set_controllable (mc);
52         }
53
54         _spin.set_name ("SliderControllerValue");
55         _spin.set_numeric (true);
56         _spin.set_snap_to_ticks (false);
57 }
58
59 bool
60 SliderController::on_button_press_event (GdkEventButton *ev)
61 {
62         if (_binding_proxy.button_press_handler (ev)) {
63                 return true;
64         }
65
66         return ArdourFader::on_button_press_event (ev);
67 }
68
69 bool
70 SliderController::on_enter_notify_event (GdkEventCrossing* ev)
71 {
72         boost::shared_ptr<PBD::Controllable> c (_binding_proxy.get_controllable ());
73         if (c) {
74                 PBD::Controllable::GUIFocusChanged (boost::weak_ptr<PBD::Controllable> (c));
75         }
76         return ArdourFader::on_enter_notify_event (ev);
77 }
78
79 bool
80 SliderController::on_leave_notify_event (GdkEventCrossing* ev)
81 {
82         if (_binding_proxy.get_controllable()) {
83                 PBD::Controllable::GUIFocusChanged (boost::weak_ptr<PBD::Controllable> ());
84         }
85         return ArdourFader::on_leave_notify_event (ev);
86 }
87
88 void
89 SliderController::ctrl_adjusted ()
90 {
91         assert (_ctrl); // only used w/BarControlle
92         if (_spin_ignore) return;
93         _ctrl_ignore = true;
94         // TODO consider using internal_to_user, too (amp, dB)
95         // (also needs _spin_adj min/max range changed accordingly
96         //  and dedicated support for log-scale, revert parts of ceff2e3a62f839)
97         _spin_adj.set_value (_ctrl->interface_to_internal (_ctrl_adj->get_value()));
98         _ctrl_ignore = false;
99 }
100
101 void
102 SliderController::spin_adjusted ()
103 {
104         assert (_ctrl); // only used w/BarController
105         if (_ctrl_ignore) return;
106         _spin_ignore = true;
107         // TODO consider using user_to_internal, as well
108         _ctrl_adj->set_value(_ctrl->internal_to_interface (_spin_adj.get_value()));
109         _spin_ignore = false;
110 }
111
112
113
114 VSliderController::VSliderController (Gtk::Adjustment *adj, boost::shared_ptr<PBD::Controllable> mc, int fader_length, int fader_girth)
115         : SliderController (adj, mc, VERT, fader_length, fader_girth)
116 {
117 }
118
119 HSliderController::HSliderController (Gtk::Adjustment *adj, boost::shared_ptr<PBD::Controllable> mc, int fader_length, int fader_girth)
120         : SliderController (adj, mc, HORIZ, fader_length, fader_girth)
121 {
122 }