When building with MSVC, allow for the fact that Mixbus and Ardour can be using diffe...
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / utils.h
index 1e36868814f97898ac2e254e12854e59b0d88169..188da0862d3a01df075c52c7cc6a8124c2c28ef3 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 1999 Paul Barton-Davis 
+    Copyright (C) 1999 Paul Barton-Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -28,6 +28,8 @@
 #include <pangomm/fontdescription.h>
 
 #include <gtkmm/container.h>
+#include <gtkmm/filechooser.h>
+#include <gtkmm/menu.h>
 #include <gtkmm/treeview.h>
 #include <gdkmm/window.h> /* for WMDecoration */
 #include <gdkmm/pixbuf.h>
@@ -49,36 +51,71 @@ namespace Gtk {
 namespace Gtkmm2ext {
        LIBGTKMM2EXT_API void init (const char*);
 
+        LIBGTKMM2EXT_API bool event_inside_widget_window (Gtk::Widget& widget, GdkEvent* ev);
+
        LIBGTKMM2EXT_API std::string fit_to_pixels (const std::string&, int pixel_width, Pango::FontDescription& font, int& actual_width, bool with_ellipses = false);
        LIBGTKMM2EXT_API std::pair<std::string, double> fit_to_pixels (cairo_t *, std::string, double);
-       LIBGTKMM2EXT_API int pixel_width (const std::string& str, Pango::FontDescription& font);
+       LIBGTKMM2EXT_API int pixel_width (const std::string& str, const Pango::FontDescription& font);
+       LIBGTKMM2EXT_API void pixel_size (const std::string& str, const Pango::FontDescription& font, int& width, int& height);
 
-       LIBGTKMM2EXT_API void get_ink_pixel_size (Glib::RefPtr<Pango::Layout>, 
+       LIBGTKMM2EXT_API void get_ink_pixel_size (Glib::RefPtr<Pango::Layout>,
                                                  int& width, int& height);
-       
 
-       LIBGTKMM2EXT_API void get_pixel_size (Glib::RefPtr<Pango::Layout>, 
+
+       LIBGTKMM2EXT_API void get_pixel_size (Glib::RefPtr<Pango::Layout>,
                                              int& width, int& height);
-       
+
        LIBGTKMM2EXT_API void set_size_request_to_display_given_text (Gtk::Widget &w,
                                                                      const gchar *text,
                                                                      gint hpadding,
                                                                      gint vpadding);
-       
+
+       LIBGTKMM2EXT_API void set_size_request_to_display_given_text_width (Gtk::Widget& w,
+                                                                           const gchar* htext,
+                                                                           gint         hpadding,
+                                                                           gint         vpadding);
+
+       LIBGTKMM2EXT_API void set_height_request_to_display_any_text (Gtk::Widget& w, gint vpadding);
+
+       LIBGTKMM2EXT_API void set_size_request_to_display_given_text (Gtk::Widget &w,
+                                                                     std::string const & text,
+                                                                     gint hpadding,
+                                                                     gint vpadding);
        LIBGTKMM2EXT_API void set_size_request_to_display_given_text (Gtk::Widget &w,
                                                                      const std::vector<std::string>&,
                                                                      gint hpadding,
                                                                      gint vpadding);
+       LIBGTKMM2EXT_API void set_size_request_to_display_given_text (Gtk::Widget &w,
+                                                                     const std::vector<std::string>&,
+                                                                     const std::string& hpadding,
+                                                                     gint vpadding);
 
-       LIBGTKMM2EXT_API Glib::RefPtr<Gdk::Pixbuf> pixbuf_from_string (const std::string& name, 
-                                                                      const Pango::FontDescription& font, 
-                                                                      int clip_width, 
-                                                                      int clip_height, 
+
+       LIBGTKMM2EXT_API Glib::RefPtr<Gdk::Pixbuf> pixbuf_from_string (const std::string& name,
+                                                                      const Pango::FontDescription& font,
+                                                                      int clip_width,
+                                                                      int clip_height,
                                                                       Gdk::Color fg);
 
-       LIBGTKMM2EXT_API void set_popdown_strings (Gtk::ComboBoxText&, 
+       LIBGTKMM2EXT_API void anchored_menu_popup (Gtk::Menu* const menu,
+                                                  Gtk::Widget* const anchor,
+                                                  const std::string& selected,
+                                                  guint button, guint32 time);
+
+       LIBGTKMM2EXT_API void set_popdown_strings (Gtk::ComboBoxText&,
                                  const std::vector<std::string>&);
-       
+
+       LIBGTKMM2EXT_API void get_popdown_strings (Gtk::ComboBoxText&,
+                                 std::vector<std::string>&);
+
+       LIBGTKMM2EXT_API size_t get_popdown_string_count (Gtk::ComboBoxText&);
+
+       LIBGTKMM2EXT_API bool contains_value (Gtk::ComboBoxText&,
+                                 const std::string);
+
+       LIBGTKMM2EXT_API bool set_active_text_if_present (Gtk::ComboBoxText&,
+                                 const std::string);
+
        template<class T> /*LIBGTKMM2EXT_API*/ void deferred_delete (void *ptr) {
                delete static_cast<T *> (ptr);
        }
@@ -100,7 +137,7 @@ namespace Gtkmm2ext {
         LIBGTKMM2EXT_API void container_clear (Gtk::Container&);
 
        /* C++ API for rounded rectangles */
-       
+
         LIBGTKMM2EXT_API void rounded_rectangle (Cairo::RefPtr<Cairo::Context> context, double x, double y, double w, double h, double r=10);
         LIBGTKMM2EXT_API void rounded_top_rectangle (Cairo::RefPtr<Cairo::Context> context, double x, double y, double w, double h, double r=10);
         LIBGTKMM2EXT_API void rounded_top_left_rectangle (Cairo::RefPtr<Cairo::Context> context, double x, double y, double w, double h, double r=10);
@@ -122,6 +159,7 @@ namespace Gtkmm2ext {
        LIBGTKMM2EXT_API void rounded_left_half_rectangle (cairo_t* cr, double x, double y, double w, double h, double r=10);
 
        LIBGTKMM2EXT_API Gtk::Label* left_aligned_label (std::string const &);
+       LIBGTKMM2EXT_API Gtk::Label* right_aligned_label (std::string const &);
 
        LIBGTKMM2EXT_API void set_no_tooltip_whatsoever (Gtk::Widget &);
        LIBGTKMM2EXT_API void enable_tooltips ();
@@ -129,6 +167,22 @@ namespace Gtkmm2ext {
 
        LIBGTKMM2EXT_API void convert_bgra_to_rgba (guint8 const *, guint8 * dst, int, int);
        LIBGTKMM2EXT_API const char* event_type_string (int event_type);
+
+       /* glibmm ustring workaround
+        *
+        * Glib::operator<<(std::ostream&, Glib::ustring const&) internally calls
+        * g_locale_from_utf8() which uses loadlocale which is not thread-safe on OSX
+        *
+        * use a std::string
+        */
+       LIBGTKMM2EXT_API std::string markup_escape_text (std::string const& s);
+
+       LIBGTKMM2EXT_API void add_volume_shortcuts (Gtk::FileChooser& c);
+
+       LIBGTKMM2EXT_API float paned_position_as_fraction (Gtk::Paned& paned, bool h);
+       LIBGTKMM2EXT_API void  paned_set_position_as_fraction (Gtk::Paned& paned, float fraction, bool h);
+
+       LIBGTKMM2EXT_API std::string show_gdk_event_state (int state);
 };
 
 #endif /*  __gtkmm2ext_utils_h__ */