a) moved metering and meter falloff code into libardour
[ardour.git] / libs / gtkmm2ext / utils.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 <map>
22
23 #include <gtk/gtkpaned.h>
24 #include <gtk/gtk.h>
25
26 #include <gtkmm2ext/utils.h>
27 #include <gtkmm/widget.h>
28 #include <gtkmm/button.h>
29 #include <gtkmm/window.h>
30 #include <gtkmm/paned.h>
31 #include <gtkmm/comboboxtext.h>
32
33 #include "i18n.h"
34
35 using namespace std;
36
37 void
38 Gtkmm2ext::set_size_request_to_display_given_text (Gtk::Widget &w, const gchar *text,
39                                                    gint hpadding, gint vpadding)
40
41 {
42         int height = 0;
43         int width = 0;
44
45         w.ensure_style ();
46         w.create_pango_layout (text)->get_pixel_size (width, height);
47
48         height += vpadding;
49         width += hpadding;
50
51         w.set_size_request(width, height);
52 }
53
54 void
55 Gtkmm2ext::init ()
56 {
57         // Necessary for gettext
58         (void) bindtextdomain(PACKAGE, LOCALEDIR);
59 }
60
61 void
62 Gtkmm2ext::set_popdown_strings (Gtk::ComboBoxText& cr, const vector<string>& strings)
63 {
64         cr.clear ();
65
66         for (vector<string>::const_iterator i = strings.begin(); i != strings.end(); ++i) {
67                 cr.append_text (*i);
68         }
69 }
70
71 GdkWindow*
72 Gtkmm2ext::get_paned_handle (Gtk::Paned& paned)
73 {
74         return GTK_PANED(paned.gobj())->handle;
75 }
76
77 void
78 Gtkmm2ext::set_decoration (Gtk::Window* win, Gdk::WMDecoration decor)
79 {
80         win->get_window()->set_decorations (decor);
81 }
82
83 void Gtkmm2ext::set_treeview_header_as_default_label(Gtk::TreeViewColumn* c)
84 {
85         gtk_tree_view_column_set_widget( c->gobj(), GTK_WIDGET(0) );
86 }
87