97dab523aab59d12481ba1cc0a18a801e3d66d21
[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     $Id$
19 */
20
21 #ifndef __gtkmm2ext_utils_h__
22 #define __gtkmm2ext_utils_h__
23
24 #include <vector>
25 #include <string>
26
27 #include <gtkmm/treeview.h>
28 #include <gdkmm/window.h> /* for WMDecoration */
29
30 namespace Gtk {
31         class ComboBoxText;
32         class Widget;
33         class Window;
34         class Paned;
35 }
36
37 namespace Gtkmm2ext {
38         void init ();
39
40         void get_ink_pixel_size (Glib::RefPtr<Pango::Layout>, 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_popdown_strings (Gtk::ComboBoxText&, const std::vector<std::string>&);
48         
49         template<class T> void deferred_delete (void *ptr) {
50                 delete static_cast<T *> (ptr);
51         }
52
53         GdkWindow* get_paned_handle (Gtk::Paned& paned);
54         void set_decoration (Gtk::Window* win, Gdk::WMDecoration decor);
55         void set_treeview_header_as_default_label(Gtk::TreeViewColumn *c);
56         Glib::RefPtr<Gdk::Drawable> get_bogus_drawable();
57 };
58
59 #endif /*  __gtkmm2ext_utils_h__ */