ardour
utils.h
Go to the documentation of this file.
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 
27 #include "ardour/types.h"
28 
29 #include <gdkmm/types.h>
30 #include <gtkmm/menushell.h>
31 
32 #include "canvas/types.h"
33 
34 namespace PBD {
35  class Controllable;
36  class ScopedConnectionList;
37 }
38 
39 namespace Gtk {
40  class Window;
41  class ComboBoxText;
42  class Paned;
43  class Adjustment;
44 }
45 
46 namespace ArdourCanvas {
47  class Item;
48 }
49 
50 namespace ARDOUR_UI_UTILS {
51 
52 extern sigc::signal<void> DPIReset;
53 
54 gint just_hide_it (GdkEventAny*, Gtk::Window*);
55 void add_item_with_sensitivity (Gtk::Menu_Helpers::MenuList &, Gtk::Menu_Helpers::MenuElem, bool);
56 
57 unsigned char* xpm2rgb (const char** xpm, uint32_t& w, uint32_t& h);
58 unsigned char* xpm2rgba (const char** xpm, uint32_t& w, uint32_t& h);
59 
60 ArdourCanvas::Points* get_canvas_points (std::string who, uint32_t npoints);
61 
62 Pango::FontDescription sanitized_font (std::string const&);
63 Pango::FontDescription get_font_for_style (std::string widgetname);
64 
65 void decorate (Gtk::Window& w, Gdk::WMDecoration d);
66 
67 void set_color_from_rgb (Gdk::Color&, uint32_t);
68 void set_color_from_rgba (Gdk::Color&, uint32_t);
69 uint32_t gdk_color_to_rgba (Gdk::Color const&);
70 uint32_t contrasting_text_color (uint32_t c);
71 
72 bool relay_key_press (GdkEventKey* ev, Gtk::Window* win);
73 bool forward_key_press (GdkEventKey* ev);
74 bool key_press_focus_accelerator_handler (Gtk::Window& window, GdkEventKey* ev);
75 bool emulate_key_event (Gtk::Widget*, unsigned int);
76 
77 Glib::RefPtr<Gdk::Pixbuf> get_xpm (std::string);
78 std::vector<std::string> get_icon_sets ();
79 std::string get_icon_path (const char*, std::string icon_set = std::string(), bool is_image = true);
80 Glib::RefPtr<Gdk::Pixbuf> get_icon (const char*, std::string icon_set = std::string());
81 static std::map<std::string, Glib::RefPtr<Gdk::Pixbuf> > xpm_map;
82 const char* const *get_xpm_data (std::string path);
83 std::string longest (std::vector<std::string>&);
84 bool key_is_legal_for_numeric_entry (guint keyval);
85 void reset_dpi ();
86 void set_pango_fontsize ();
87 
88 void resize_window_to_proportion_of_monitor (Gtk::Window*, int, int);
89 
90 std::string escape_underscores (std::string const &);
91 std::string escape_angled_brackets (std::string const &);
92 
93 Gdk::Color unique_random_color (std::list<Gdk::Color> &);
94 
95 std::string rate_as_string (float r);
96 
97 } // namespace
98 #endif /* __ardour_gtk_utils_h__ */
bool relay_key_press(GdkEventKey *ev, Gtk::Window *win)
Definition: utils.cc:301
Gdk::Color unique_random_color(std::list< Gdk::Color > &)
Definition: utils.cc:873
unsigned char * xpm2rgba(const char **xpm, uint32_t &w, uint32_t &h)
Definition: utils.cc:149
static std::map< std::string, Glib::RefPtr< Gdk::Pixbuf > > xpm_map
Definition: utils.h:81
void resize_window_to_proportion_of_monitor(Gtk::Window *, int, int)
Definition: utils.cc:831
Pango::FontDescription sanitized_font(std::string const &)
Definition: utils.cc:226
bool emulate_key_event(Gtk::Widget *, unsigned int)
Definition: utils.cc:323
sigc::signal< void > DPIReset
Definition: utils.cc:68
Definition: ardour_ui.h:130
Pango::FontDescription get_font_for_style(std::string widgetname)
bool forward_key_press(GdkEventKey *ev)
Definition: utils.cc:317
bool key_press_focus_accelerator_handler(Gtk::Window &window, GdkEventKey *ev)
Definition: utils.cc:410
std::vector< std::string > get_icon_sets()
Definition: utils.cc:591
unsigned char * xpm2rgb(const char **xpm, uint32_t &w, uint32_t &h)
Definition: utils.cc:107
void add_item_with_sensitivity(Gtk::Menu_Helpers::MenuList &, Gtk::Menu_Helpers::MenuElem, bool)
void reset_dpi()
Definition: utils.cc:819
gint just_hide_it(GdkEventAny *, Gtk::Window *)
Definition: utils.cc:92
uint32_t gdk_color_to_rgba(Gdk::Color const &)
Definition: utils.cc:285
uint32_t contrasting_text_color(uint32_t c)
void set_color_from_rgba(Gdk::Color &, uint32_t)
Definition: utils.cc:276
std::string longest(std::vector< std::string > &)
std::string rate_as_string(float r)
Definition: utils.cc:914
void set_color_from_rgb(Gdk::Color &, uint32_t)
Definition: utils.cc:267
bool key_is_legal_for_numeric_entry(guint keyval)
Definition: utils.cc:718
void set_pango_fontsize()
Definition: utils.cc:803
const char *const * get_xpm_data(std::string path)
void decorate(Gtk::Window &w, Gdk::WMDecoration d)
ArdourCanvas::Points * get_canvas_points(std::string who, uint32_t npoints)
Definition: debug.h:30
Glib::RefPtr< Gdk::Pixbuf > get_xpm(std::string)
Definition: utils.cc:566
std::string get_icon_path(const char *, std::string icon_set=std::string(), bool is_image=true)
std::string escape_underscores(std::string const &)
Glib::RefPtr< Gdk::Pixbuf > get_icon(const char *cname)
Definition: utils.cc:674
std::string escape_angled_brackets(std::string const &)