merge with master, fixing conflicts in 3 wscript files
[ardour.git] / gtk2_ardour / utils.h
1 /*
2     Copyright (C) 2002 Paul 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 __ardour_gtk_utils_h__
21 #define __ardour_gtk_utils_h__
22
23 #include <string>
24 #include <cmath>
25 #include <vector>
26 #include "ardour/types.h"
27 #include <libgnomecanvasmm/line.h>
28 #include <gdkmm/types.h>
29 #include <gtkmm/menushell.h>
30
31 #include "canvas.h"
32
33 namespace PBD {
34         class Controllable;
35         class ScopedConnectionList;
36 }
37
38 namespace Gtk {
39         class Window;
40         class ComboBoxText;
41         class Paned;
42         class Adjustment;
43 }
44
45 extern sigc::signal<void>  DPIReset;
46
47 gint   just_hide_it (GdkEventAny*, Gtk::Window*);
48 void add_item_with_sensitivity (Gtk::Menu_Helpers::MenuList &, Gtk::Menu_Helpers::MenuElem, bool);
49
50 unsigned char* xpm2rgb  (const char** xpm, uint32_t& w, uint32_t& h);
51 unsigned char* xpm2rgba (const char** xpm, uint32_t& w, uint32_t& h);
52
53 ArdourCanvas::Points* get_canvas_points (std::string who, uint32_t npoints);
54
55 Pango::FontDescription get_font_for_style (std::string widgetname);
56
57 uint32_t rgba_from_style (std::string, uint32_t, uint32_t, uint32_t, uint32_t, std::string = "fg", int = Gtk::STATE_NORMAL, bool = true);
58
59 bool rgba_p_from_style (std::string, float*, float*, float*, std::string = "fg", int = Gtk::STATE_NORMAL);
60
61 void decorate (Gtk::Window& w, Gdk::WMDecoration d);
62
63 bool canvas_item_visible (ArdourCanvas::Item* item);
64
65 void set_color (Gdk::Color&, int);
66
67 bool relay_key_press (GdkEventKey* ev, Gtk::Window* win);
68 bool forward_key_press (GdkEventKey* ev);
69 bool key_press_focus_accelerator_handler (Gtk::Window& window, GdkEventKey* ev);
70 bool emulate_key_event (Gtk::Widget*, unsigned int);
71
72 Glib::RefPtr<Gdk::Pixbuf> get_xpm (std::string);
73 std::string get_icon_path (const char*);
74 Glib::RefPtr<Gdk::Pixbuf> get_icon (const char*);
75 static std::map<std::string, Glib::RefPtr<Gdk::Pixbuf> > xpm_map;
76 const char* const *get_xpm_data (std::string path);
77 std::string longest (std::vector<std::string>&);
78 bool key_is_legal_for_numeric_entry (guint keyval);
79 void reset_dpi ();
80 void set_pango_fontsize ();
81
82 void resize_window_to_proportion_of_monitor (Gtk::Window*, int, int);
83
84 std::string escape_underscores (std::string const &);
85 std::string escape_angled_brackets (std::string const &);
86
87 Gdk::Color unique_random_color (std::list<Gdk::Color> &);
88
89 std::string rate_as_string (float r);
90
91 #endif /* __ardour_gtk_utils_h__ */