enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[ardour.git] / gtk2_ardour / ardour_display.cc
1 /*
2     Copyright (C) 2014 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 #include <iostream>
21 #include <cmath>
22 #include <algorithm>
23
24 #include <pangomm/layout.h>
25
26 #include "pbd/compose.h"
27 #include "pbd/controllable.h"
28 #include "pbd/error.h"
29 #include "pbd/stacktrace.h"
30
31 #include "gtkmm2ext/utils.h"
32 #include "gtkmm2ext/rgb_macros.h"
33 #include "gtkmm2ext/gui_thread.h"
34 #include "gtkmm2ext/keyboard.h"
35
36 #include "ardour/rc_configuration.h" // for widget prelight preference
37
38 #include "ardour_display.h"
39
40 #include "pbd/i18n.h"
41
42 using namespace Gtkmm2ext;
43 using namespace Gdk;
44 using namespace Gtk;
45 using namespace Glib;
46 using namespace PBD;
47 using std::max;
48 using std::min;
49 using namespace std;
50
51
52 ArdourDisplay::ArdourDisplay (Element e)
53 {
54         add_elements(e);
55         add_elements(ArdourButton::Menu);
56         add_elements(ArdourButton::Text);
57 }
58
59 ArdourDisplay::~ArdourDisplay ()
60 {
61 }
62
63 bool
64 ArdourDisplay::on_button_press_event (GdkEventButton*)
65 {
66         _menu.popup (1, gtk_get_current_event_time());
67         return true;
68 }
69
70 bool
71 ArdourDisplay::on_scroll_event (GdkEventScroll* ev)
72 {
73         /* mouse wheel */
74
75         float scale = 1.0;
76         if (ev->state & Keyboard::GainFineScaleModifier) {
77                 if (ev->state & Keyboard::GainExtraFineScaleModifier) {
78                         scale *= 0.01;
79                 } else {
80                         scale *= 0.10;
81                 }
82         }
83
84         boost::shared_ptr<PBD::Controllable> c = binding_proxy.get_controllable();
85         if (c) {
86                 float val = c->get_interface();
87
88                 if ( ev->direction == GDK_SCROLL_UP )
89                         val += 0.05 * scale;  //by default, we step in 1/20ths of the knob travel
90                 else
91                         val -= 0.05 * scale;
92
93                 c->set_interface(val);
94         }
95
96         return true;
97 }
98
99
100 void
101 ArdourDisplay::add_controllable_preset (const char *txt, float val)
102 {
103         using namespace Menu_Helpers;
104
105         MenuList& items = _menu.items ();
106
107         items.push_back (MenuElem (txt, sigc::bind (sigc::mem_fun(*this, &ArdourDisplay::handle_controllable_preset), val)));
108 }
109
110
111 void
112 ArdourDisplay::handle_controllable_preset (float p)
113 {
114         boost::shared_ptr<PBD::Controllable> c = binding_proxy.get_controllable();
115
116         if (!c) return;
117
118         c->set_user(p);
119 }
120
121
122 void
123 ArdourDisplay::set_controllable (boost::shared_ptr<Controllable> c)
124 {
125     watch_connection.disconnect ();  //stop watching the old controllable
126
127         if (!c) return;
128
129         binding_proxy.set_controllable (c);
130
131         c->Changed.connect (watch_connection, invalidator(*this), boost::bind (&ArdourDisplay::controllable_changed, this), gui_context());
132
133         controllable_changed();
134 }
135
136 void
137 ArdourDisplay::controllable_changed ()
138 {
139         boost::shared_ptr<PBD::Controllable> c = binding_proxy.get_controllable();
140
141         if (!c) return;
142
143         set_text(c->get_user_string());
144
145         set_dirty();
146 }