Merge branch 'windows+cc' into cairocanvas
[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 #include <stdint.h>
26
27 #include <cairomm/cairomm.h>
28 #include <pangomm/fontdescription.h>
29
30 #include <gtkmm/container.h>
31 #include <gtkmm/treeview.h>
32 #include <gdkmm/window.h> /* for WMDecoration */
33 #include <gdkmm/pixbuf.h>
34
35 #include "gtkmm2ext/visibility.h"
36
37 namespace Cairo {
38         class Context;
39 }
40
41 namespace Gtk {
42         class ComboBoxText;
43         class Widget;
44         class Window;
45         class Paned;
46         class Menu;
47 }
48
49 namespace Gtkmm2ext {
50         LIBGTKMM2EXT_API void init (const char*);
51
52         LIBGTKMM2EXT_API std::string fit_to_pixels (const std::string&, int pixel_width, Pango::FontDescription& font, int& actual_width, bool with_ellipses = false);
53         LIBGTKMM2EXT_API std::pair<std::string, double> fit_to_pixels (cairo_t *, std::string, double);
54         LIBGTKMM2EXT_API int pixel_width (const std::string& str, Pango::FontDescription& font);
55
56         LIBGTKMM2EXT_API void get_ink_pixel_size (Glib::RefPtr<Pango::Layout>, 
57                                                   int& width, int& height);
58         
59
60         LIBGTKMM2EXT_API void get_pixel_size (Glib::RefPtr<Pango::Layout>, 
61                                               int& width, int& height);
62         
63         LIBGTKMM2EXT_API void set_size_request_to_display_given_text (Gtk::Widget &w,
64                                                                       const gchar *text,
65                                                                       gint hpadding,
66                                                                       gint vpadding);
67         
68         LIBGTKMM2EXT_API void set_size_request_to_display_given_text (Gtk::Widget &w,
69                                                                       const std::vector<std::string>&,
70                                                                       gint hpadding,
71                                                                       gint vpadding);
72
73         LIBGTKMM2EXT_API Glib::RefPtr<Gdk::Pixbuf> pixbuf_from_string (const std::string& name, 
74                                                                        const Pango::FontDescription& font, 
75                                                                        int clip_width, 
76                                                                        int clip_height, 
77                                                                        Gdk::Color fg);
78
79         LIBGTKMM2EXT_API void set_popdown_strings (Gtk::ComboBoxText&, 
80                                   const std::vector<std::string>&);
81         
82         template<class T> /*LIBGTKMM2EXT_API*/ void deferred_delete (void *ptr) {
83                 delete static_cast<T *> (ptr);
84         }
85
86         LIBGTKMM2EXT_API GdkWindow* get_paned_handle (Gtk::Paned& paned);
87         LIBGTKMM2EXT_API void set_decoration (Gtk::Window* win, Gdk::WMDecoration decor);
88         LIBGTKMM2EXT_API void set_treeview_header_as_default_label(Gtk::TreeViewColumn *c);
89         LIBGTKMM2EXT_API Glib::RefPtr<Gdk::Drawable> get_bogus_drawable();
90         LIBGTKMM2EXT_API void detach_menu (Gtk::Menu&);
91
92         LIBGTKMM2EXT_API Glib::RefPtr<Gdk::Window> window_to_draw_on (Gtk::Widget& w, Gtk::Widget** parent);
93
94         LIBGTKMM2EXT_API bool possibly_translate_keyval_to_make_legal_accelerator (uint32_t& keyval);
95         LIBGTKMM2EXT_API uint32_t possibly_translate_legal_accelerator_to_real_key (uint32_t keyval);
96
97         LIBGTKMM2EXT_API int physical_screen_height (Glib::RefPtr<Gdk::Window>);
98         LIBGTKMM2EXT_API int physical_screen_width (Glib::RefPtr<Gdk::Window>);
99
100         LIBGTKMM2EXT_API void container_clear (Gtk::Container&);
101
102         /* C++ API for rounded rectangles */
103         
104         LIBGTKMM2EXT_API void rounded_rectangle (Cairo::RefPtr<Cairo::Context> context, double x, double y, double w, double h, double r=10);
105         LIBGTKMM2EXT_API void rounded_top_rectangle (Cairo::RefPtr<Cairo::Context> context, double x, double y, double w, double h, double r=10);
106         LIBGTKMM2EXT_API void rounded_top_left_rectangle (Cairo::RefPtr<Cairo::Context> context, double x, double y, double w, double h, double r=10);
107         LIBGTKMM2EXT_API void rounded_top_right_rectangle (Cairo::RefPtr<Cairo::Context> context, double x, double y, double w, double h, double r=10);
108         LIBGTKMM2EXT_API void rounded_top_half_rectangle (Cairo::RefPtr<Cairo::Context>, double x, double y, double w, double h, double r=10);
109         LIBGTKMM2EXT_API void rounded_bottom_half_rectangle (Cairo::RefPtr<Cairo::Context>, double x, double y, double w, double h, double r=10);
110         LIBGTKMM2EXT_API void rounded_right_half_rectangle (Cairo::RefPtr<Cairo::Context>, double x, double y, double w, double h, double r=10);
111         LIBGTKMM2EXT_API void rounded_left_half_rectangle (Cairo::RefPtr<Cairo::Context>, double x, double y, double w, double h, double r=10);
112
113         /* C API for rounded rectangles */
114
115         LIBGTKMM2EXT_API void rounded_rectangle (cairo_t*, double x, double y, double w, double h, double r=10);
116         LIBGTKMM2EXT_API void rounded_top_rectangle (cairo_t*, double x, double y, double w, double h, double r=10);
117         LIBGTKMM2EXT_API void rounded_top_left_rectangle (cairo_t*, double x, double y, double w, double h, double r=10);
118         LIBGTKMM2EXT_API void rounded_top_right_rectangle (cairo_t*, double x, double y, double w, double h, double r=10);
119         LIBGTKMM2EXT_API void rounded_top_half_rectangle (cairo_t*, double x, double y, double w, double h, double r=10);
120         LIBGTKMM2EXT_API void rounded_bottom_half_rectangle (cairo_t*, double x, double y, double w, double h, double r=10);
121         LIBGTKMM2EXT_API void rounded_right_half_rectangle (cairo_t*, double x, double y, double w, double h, double r=10);
122         LIBGTKMM2EXT_API void rounded_left_half_rectangle (cairo_t* cr, double x, double y, double w, double h, double r=10);
123
124         LIBGTKMM2EXT_API Gtk::Label* left_aligned_label (std::string const &);
125
126         LIBGTKMM2EXT_API void set_no_tooltip_whatsoever (Gtk::Widget &);
127         LIBGTKMM2EXT_API void enable_tooltips ();
128         LIBGTKMM2EXT_API void disable_tooltips ();
129
130         LIBGTKMM2EXT_API void convert_bgra_to_rgba (guint8 const *, guint8 * dst, int, int);
131         LIBGTKMM2EXT_API const char* event_type_string (int event_type);
132 };
133
134 #endif /*  __gtkmm2ext_utils_h__ */