X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Futils.h;h=ddbf8e9665f227746248e332fffafa16d718187d;hb=65eeeb7a652d7022783b10e35941ce56e0fc7207;hp=59f986e81d61f53985e59ccaf4a575ab96c74fc7;hpb=e5e12acc5698090f2c0c614385e457cc0b46fbb0;p=ardour.git diff --git a/gtk2_ardour/utils.h b/gtk2_ardour/utils.h index 59f986e81d..ddbf8e9665 100644 --- a/gtk2_ardour/utils.h +++ b/gtk2_ardour/utils.h @@ -23,6 +23,7 @@ #include #include #include +#include #include "ardour/types.h" @@ -39,7 +40,6 @@ namespace PBD { namespace Gtk { class Window; class ComboBoxText; - class Paned; class Adjustment; } @@ -49,8 +49,6 @@ namespace ArdourCanvas { namespace ARDOUR_UI_UTILS { -extern sigc::signal DPIReset; - gint just_hide_it (GdkEventAny*, Gtk::Window*); void add_item_with_sensitivity (Gtk::Menu_Helpers::MenuList &, Gtk::Menu_Helpers::MenuElem, bool); @@ -62,43 +60,44 @@ ArdourCanvas::Points* get_canvas_points (std::string who, uint32_t npoints); Pango::FontDescription sanitized_font (std::string const&); Pango::FontDescription get_font_for_style (std::string widgetname); -uint32_t rgba_from_style (std::string, uint32_t, uint32_t, uint32_t, uint32_t, std::string = "fg", int = Gtk::STATE_NORMAL, bool = true); - -bool rgba_p_from_style (std::string, float*, float*, float*, std::string = "fg", int = Gtk::STATE_NORMAL); - void decorate (Gtk::Window& w, Gdk::WMDecoration d); +Gdk::Color gdk_color_from_rgb (uint32_t); +Gdk::Color gdk_color_from_rgba (uint32_t); +uint32_t gdk_color_to_rgba (Gdk::Color const&); + void set_color_from_rgb (Gdk::Color&, uint32_t); void set_color_from_rgba (Gdk::Color&, uint32_t); -uint32_t gdk_color_to_rgba (Gdk::Color const&); + uint32_t contrasting_text_color (uint32_t c); bool relay_key_press (GdkEventKey* ev, Gtk::Window* win); -bool forward_key_press (GdkEventKey* ev); bool key_press_focus_accelerator_handler (Gtk::Window& window, GdkEventKey* ev); -bool emulate_key_event (Gtk::Widget*, unsigned int); +bool emulate_key_event (unsigned int); Glib::RefPtr get_xpm (std::string); std::vector get_icon_sets (); -std::string get_icon_path (const char*, std::string icon_set = std::string()); +void get_color_themes (std::map&); +std::string get_icon_path (const char*, std::string icon_set = std::string(), bool is_image = true); Glib::RefPtr get_icon (const char*, std::string icon_set = std::string()); static std::map > xpm_map; const char* const *get_xpm_data (std::string path); std::string longest (std::vector&); bool key_is_legal_for_numeric_entry (guint keyval); -void reset_dpi (); -void set_pango_fontsize (); void resize_window_to_proportion_of_monitor (Gtk::Window*, int, int); std::string escape_underscores (std::string const &); -std::string escape_angled_brackets (std::string const &); Gdk::Color unique_random_color (std::list &); std::string rate_as_string (float r); -std::string track_number_to_string (int64_t tracknumber, std::string sep = "", std::string postfix = ""); +bool windows_overlap (Gtk::Window *a, Gtk::Window *b); + +bool overwrite_file_dialog (Gtk::Window& parent, std::string title, std::string text); +std::string show_gdk_event_state (int state); +bool running_from_source_tree (); } // namespace #endif /* __ardour_gtk_utils_h__ */