mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Upgrade gtkmm to 2.10.8, glibmm to 2.13.3 and add cairomm 1.2.4
git-svn-id: svn://localhost/ardour2/trunk@2630 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
b01bdb7e70
commit
61c990dfba
647 changed files with 30833 additions and 7328 deletions
|
|
@ -1,5 +1,6 @@
|
|||
// Generated by gtkmmproc -- DO NOT MODIFY!
|
||||
|
||||
|
||||
#include <gtkmm/box.h>
|
||||
#include <gtkmm/private/box_p.h>
|
||||
|
||||
|
|
@ -175,8 +176,19 @@ void Box_Class::class_init_function(void* g_class, void* class_data)
|
|||
BaseClassType *const klass = static_cast<BaseClassType*>(g_class);
|
||||
CppClassParent::class_init_function(klass, class_data);
|
||||
|
||||
#ifdef GLIBMM_VFUNCS_ENABLED
|
||||
#endif //GLIBMM_VFUNCS_ENABLED
|
||||
|
||||
#ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
#endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
}
|
||||
|
||||
#ifdef GLIBMM_VFUNCS_ENABLED
|
||||
#endif //GLIBMM_VFUNCS_ENABLED
|
||||
|
||||
#ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
#endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
|
||||
|
||||
Glib::ObjectBase* Box_Class::wrap_new(GObject* o)
|
||||
{
|
||||
|
|
@ -326,17 +338,17 @@ Box::Box()
|
|||
|
||||
void Box::pack_start(Widget& child, bool expand, bool fill, guint padding)
|
||||
{
|
||||
gtk_box_pack_start(gobj(), (child).gobj(), static_cast<int>(expand), static_cast<int>(fill), padding);
|
||||
gtk_box_pack_start(gobj(), (child).gobj(), static_cast<int>(expand), static_cast<int>(fill), padding);
|
||||
}
|
||||
|
||||
void Box::pack_end(Widget& child, bool expand, bool fill, guint padding)
|
||||
{
|
||||
gtk_box_pack_end(gobj(), (child).gobj(), static_cast<int>(expand), static_cast<int>(fill), padding);
|
||||
gtk_box_pack_end(gobj(), (child).gobj(), static_cast<int>(expand), static_cast<int>(fill), padding);
|
||||
}
|
||||
|
||||
void Box::set_homogeneous(bool homogeneous)
|
||||
{
|
||||
gtk_box_set_homogeneous(gobj(), static_cast<int>(homogeneous));
|
||||
gtk_box_set_homogeneous(gobj(), static_cast<int>(homogeneous));
|
||||
}
|
||||
|
||||
bool Box::get_homogeneous() const
|
||||
|
|
@ -346,7 +358,7 @@ bool Box::get_homogeneous() const
|
|||
|
||||
void Box::set_spacing(int spacing)
|
||||
{
|
||||
gtk_box_set_spacing(gobj(), spacing);
|
||||
gtk_box_set_spacing(gobj(), spacing);
|
||||
}
|
||||
|
||||
int Box::get_spacing() const
|
||||
|
|
@ -356,29 +368,44 @@ int Box::get_spacing() const
|
|||
|
||||
void Box::reorder_child(Widget& child, int pos)
|
||||
{
|
||||
gtk_box_reorder_child(gobj(), (child).gobj(), pos);
|
||||
gtk_box_reorder_child(gobj(), (child).gobj(), pos);
|
||||
}
|
||||
|
||||
|
||||
#ifdef GLIBMM_PROPERTIES_ENABLED
|
||||
Glib::PropertyProxy<int> Box::property_spacing()
|
||||
{
|
||||
return Glib::PropertyProxy<int>(this, "spacing");
|
||||
}
|
||||
#endif //GLIBMM_PROPERTIES_ENABLED
|
||||
|
||||
#ifdef GLIBMM_PROPERTIES_ENABLED
|
||||
Glib::PropertyProxy_ReadOnly<int> Box::property_spacing() const
|
||||
{
|
||||
return Glib::PropertyProxy_ReadOnly<int>(this, "spacing");
|
||||
}
|
||||
#endif //GLIBMM_PROPERTIES_ENABLED
|
||||
|
||||
#ifdef GLIBMM_PROPERTIES_ENABLED
|
||||
Glib::PropertyProxy<bool> Box::property_homogeneous()
|
||||
{
|
||||
return Glib::PropertyProxy<bool>(this, "homogeneous");
|
||||
}
|
||||
#endif //GLIBMM_PROPERTIES_ENABLED
|
||||
|
||||
#ifdef GLIBMM_PROPERTIES_ENABLED
|
||||
Glib::PropertyProxy_ReadOnly<bool> Box::property_homogeneous() const
|
||||
{
|
||||
return Glib::PropertyProxy_ReadOnly<bool>(this, "homogeneous");
|
||||
}
|
||||
#endif //GLIBMM_PROPERTIES_ENABLED
|
||||
|
||||
|
||||
#ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
#endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
|
||||
#ifdef GLIBMM_VFUNCS_ENABLED
|
||||
#endif //GLIBMM_VFUNCS_ENABLED
|
||||
|
||||
|
||||
} // namespace Gtk
|
||||
|
|
@ -425,8 +452,19 @@ void VBox_Class::class_init_function(void* g_class, void* class_data)
|
|||
BaseClassType *const klass = static_cast<BaseClassType*>(g_class);
|
||||
CppClassParent::class_init_function(klass, class_data);
|
||||
|
||||
#ifdef GLIBMM_VFUNCS_ENABLED
|
||||
#endif //GLIBMM_VFUNCS_ENABLED
|
||||
|
||||
#ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
#endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
}
|
||||
|
||||
#ifdef GLIBMM_VFUNCS_ENABLED
|
||||
#endif //GLIBMM_VFUNCS_ENABLED
|
||||
|
||||
#ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
#endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
|
||||
|
||||
Glib::ObjectBase* VBox_Class::wrap_new(GObject* o)
|
||||
{
|
||||
|
|
@ -474,6 +512,13 @@ VBox::VBox(bool homogeneous, int spacing)
|
|||
}
|
||||
|
||||
|
||||
#ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
#endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
|
||||
#ifdef GLIBMM_VFUNCS_ENABLED
|
||||
#endif //GLIBMM_VFUNCS_ENABLED
|
||||
|
||||
|
||||
} // namespace Gtk
|
||||
|
||||
|
||||
|
|
@ -518,8 +563,19 @@ void HBox_Class::class_init_function(void* g_class, void* class_data)
|
|||
BaseClassType *const klass = static_cast<BaseClassType*>(g_class);
|
||||
CppClassParent::class_init_function(klass, class_data);
|
||||
|
||||
#ifdef GLIBMM_VFUNCS_ENABLED
|
||||
#endif //GLIBMM_VFUNCS_ENABLED
|
||||
|
||||
#ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
#endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
}
|
||||
|
||||
#ifdef GLIBMM_VFUNCS_ENABLED
|
||||
#endif //GLIBMM_VFUNCS_ENABLED
|
||||
|
||||
#ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
#endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
|
||||
|
||||
Glib::ObjectBase* HBox_Class::wrap_new(GObject* o)
|
||||
{
|
||||
|
|
@ -567,6 +623,13 @@ HBox::HBox(bool homogeneous, int spacing)
|
|||
}
|
||||
|
||||
|
||||
#ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
#endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
|
||||
#ifdef GLIBMM_VFUNCS_ENABLED
|
||||
#endif //GLIBMM_VFUNCS_ENABLED
|
||||
|
||||
|
||||
} // namespace Gtk
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue