MCP GUI make surface numbering the same as port numbering and more explanatory.
[ardour.git] / libs / gtkmm2ext / click_box.cc
1 /*
2     Copyright (C) 1999 Paul Barton-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     $Id$
19 */
20
21 #include <iostream>
22 #include <cstdio> /* for sprintf, sigh ... */
23
24 #include <gtkmm2ext/utils.h>
25 #include <gtkmm2ext/click_box.h>
26
27 using namespace std;
28 using namespace Gtk;
29 using namespace Gtkmm2ext;
30 using namespace sigc;
31
32 ClickBox::ClickBox (Gtk::Adjustment *adjp, const string &name, bool round_to_steps)
33         : AutoSpin (*adjp,0,round_to_steps)
34 {
35         layout = create_pango_layout ("");
36         twidth = 0;
37         theight = 0;
38
39
40         add_events (Gdk::BUTTON_RELEASE_MASK|
41                     Gdk::BUTTON_PRESS_MASK|
42                     Gdk::ENTER_NOTIFY_MASK|
43                     Gdk::LEAVE_NOTIFY_MASK);
44
45         get_adjustment().signal_value_changed().connect (mem_fun (*this, &ClickBox::set_label));
46         signal_style_changed().connect (mem_fun (*this, &ClickBox::style_changed));
47         signal_button_press_event().connect (mem_fun (*this, &ClickBox::button_press_handler));
48         signal_button_release_event().connect (mem_fun (*this, &ClickBox::button_release_handler));
49         set_name (name);
50         set_label ();
51 }
52
53 ClickBox::~ClickBox ()
54 {
55 }
56
57 bool
58 ClickBox::button_press_handler (GdkEventButton* ev)
59 {
60         add_modal_grab();
61         AutoSpin::button_press (ev);
62         return true;
63 }
64
65 bool
66 ClickBox::on_scroll_event (GdkEventScroll* ev)
67 {
68         AutoSpin::scroll_event (ev);
69         return true;
70 }
71
72 bool
73 ClickBox::button_release_handler (GdkEventButton* ev)
74 {
75         switch (ev->button) {
76         case 1:
77         case 2:
78         case 3:
79                 stop_spinning (0);
80         default:
81                 remove_modal_grab();
82                 break;
83         }
84         return true;
85 }
86
87 void
88 ClickBox::set_label ()
89 {
90         char buf[32];
91         int width, height;
92
93         bool const h = _printer (buf, get_adjustment());
94         if (!h) {
95                 /* the printer didn't handle it, so use a default */
96                 sprintf (buf, "%.2f", get_adjustment().get_value ());
97         }
98
99         layout->set_text (buf);
100         layout->get_pixel_size (width, height);
101
102         if (twidth < width && (width > 50))  {
103                 /* override GenericPluginUI::build_control_ui()
104                  * Gtkmm2ext::set_size_request_to_display_given_text ("g9999999")
105                  * see http://tracker.ardour.org/view.php?id=6499
106                  */
107                 set_size_request (std::min (300, width + 6), height + 4);
108         }
109
110         twidth = width; theight = height;
111
112         queue_draw ();
113 }
114
115 void
116 ClickBox::style_changed (const Glib::RefPtr<Gtk::Style>&)
117 {
118         layout->context_changed ();
119         layout->get_pixel_size (twidth, theight);
120 }
121
122 bool
123 ClickBox::on_expose_event (GdkEventExpose *ev)
124 {
125         /* Why do we do things like this rather than use a Gtk::Label?
126            Because whenever Gtk::Label::set_label() is called, it
127            triggers a recomputation of its own size, along with that
128            of its container and on up the tree. That's intended
129            to be unnecessary here.
130         */
131
132         Gtk::DrawingArea::on_expose_event (ev);
133
134         Glib::RefPtr<Gtk::Style> style (get_style());
135         Glib::RefPtr<Gdk::GC> fg_gc (style->get_fg_gc (Gtk::STATE_NORMAL));
136         Glib::RefPtr<Gdk::GC> bg_gc (style->get_bg_gc (Gtk::STATE_NORMAL));
137         Glib::RefPtr<Gdk::Window> win (get_window());
138
139         GdkRectangle base_rect;
140         GdkRectangle draw_rect;
141         gint x, y, width, height, depth;
142
143         win->get_geometry (x, y, width, height, depth);
144
145         base_rect.width = width;
146         base_rect.height = height;
147         base_rect.x = 0;
148         base_rect.y = 0;
149
150         gdk_rectangle_intersect (&ev->area, &base_rect, &draw_rect);
151         win->draw_rectangle (bg_gc, true, draw_rect.x, draw_rect.y, draw_rect.width, draw_rect.height);
152
153         if (twidth && theight) {
154                 win->draw_layout (fg_gc, (width - twidth) / 2, (height - theight) / 2, layout);
155         }
156
157         return true;
158 }
159
160 void
161 ClickBox::set_printer (sigc::slot<bool, char *, Gtk::Adjustment &> p)
162 {
163         _printer = p;
164         set_label ();
165 }
166