combobox width fixes from mtaht, backported from 2.X
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / utils.h
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 */
19
20 #ifndef __gtkmm2ext_utils_h__
21 #define __gtkmm2ext_utils_h__
22
23 #include <vector>
24 #include <string>
25
26 #include <gtkmm/treeview.h>
27 #include <gdkmm/window.h> /* for WMDecoration */
28
29 namespace Gtk {
30         class ComboBoxText;
31         class Widget;
32         class Window;
33         class Paned;
34 }
35
36 namespace Gtkmm2ext {
37         void init ();
38
39         void get_ink_pixel_size (Glib::RefPtr<Pango::Layout>, 
40                                  int& width, int& height);
41
42         void set_size_request_to_display_given_text (Gtk::Widget &w,
43                                                      const gchar *text,
44                                                      gint hpadding,
45                                                      gint vpadding);
46
47         void set_size_request_to_display_given_text (Gtk::Widget &w,
48                                         const std::vector<std::string>&,
49                                                      gint hpadding,
50                                                      gint vpadding);
51
52         void set_popdown_strings (Gtk::ComboBoxText&, 
53                                         const std::vector<std::string>&);
54
55         template<class T> void deferred_delete (void *ptr) {
56                 delete static_cast<T *> (ptr);
57         }
58
59         GdkWindow* get_paned_handle (Gtk::Paned& paned);
60         void set_decoration (Gtk::Window* win, Gdk::WMDecoration decor);
61         void set_treeview_header_as_default_label(Gtk::TreeViewColumn *c);
62         Glib::RefPtr<Gdk::Drawable> get_bogus_drawable();
63 };
64
65 #endif /*  __gtkmm2ext_utils_h__ */