major design changes: use glib event loop for MIDI thread/UI; rework design of BaseUI...
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / utils.h
index 57cbe7dda511beff10e195c4a38dafc5c5c32ed5..7f986e738cf6d6957dee006e81bcc39629019313 100644 (file)
@@ -15,7 +15,6 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #ifndef __gtkmm2ext_utils_h__
 
 #include <vector>
 #include <string>
-#include <gtkmm/widget.h>
-#include <gtkmm/comboboxtext.h>
+
+#include <gtkmm/treeview.h>
+#include <gdkmm/window.h> /* for WMDecoration */
+
+namespace Gtk {
+       class ComboBoxText;
+       class Widget;
+       class Window;
+       class Paned;
+}
 
 namespace Gtkmm2ext {
        void init ();
 
+       void get_ink_pixel_size (Glib::RefPtr<Pango::Layout>, 
+                                int& width, int& height);
+
        void set_size_request_to_display_given_text (Gtk::Widget &w,
                                                     const gchar *text,
                                                     gint hpadding,
                                                     gint vpadding);
 
-       void set_popdown_strings (Gtk::ComboBoxText&, std::vector<std::string>&);
-       
+       void set_size_request_to_display_given_text (Gtk::Widget &w,
+                                                    const std::vector<std::string>&,
+                                                    gint hpadding,
+                                                    gint vpadding);
+
+       void set_popdown_strings (Gtk::ComboBoxText&, 
+                                 const std::vector<std::string>&, 
+                                 bool set_size = false,
+                                 gint hpadding = 0, gint vpadding = 0);
+
+        // Combo's are stupid - they steal space from the entry for the button
+#ifdef GTKOSX
+        static const guint32 COMBO_FUDGE = 38; 
+#else
+        static const guint32 COMBO_FUDGE = 24; 
+#endif
+
        template<class T> void deferred_delete (void *ptr) {
                delete static_cast<T *> (ptr);
        }
-};
 
-gint do_not_propagate (GdkEventButton*);
+       GdkWindow* get_paned_handle (Gtk::Paned& paned);
+       void set_decoration (Gtk::Window* win, Gdk::WMDecoration decor);
+       void set_treeview_header_as_default_label(Gtk::TreeViewColumn *c);
+       Glib::RefPtr<Gdk::Drawable> get_bogus_drawable();
+};
 
 #endif /*  __gtkmm2ext_utils_h__ */