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
|
|
@ -3,6 +3,7 @@
|
|||
#ifndef _GTKMM_ASPECTFRAME_H
|
||||
#define _GTKMM_ASPECTFRAME_H
|
||||
|
||||
|
||||
#include <glibmm.h>
|
||||
|
||||
/* $Id$ */
|
||||
|
|
@ -95,11 +96,17 @@ public:
|
|||
|
||||
public:
|
||||
//C++ methods used to invoke GTK+ virtual functions:
|
||||
#ifdef GLIBMM_VFUNCS_ENABLED
|
||||
#endif //GLIBMM_VFUNCS_ENABLED
|
||||
|
||||
protected:
|
||||
//GTK+ Virtual Functions (override these to change behaviour):
|
||||
#ifdef GLIBMM_VFUNCS_ENABLED
|
||||
#endif //GLIBMM_VFUNCS_ENABLED
|
||||
|
||||
//Default Signal Handlers::
|
||||
#ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
#endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
|
||||
|
||||
|
||||
private:
|
||||
|
|
@ -159,14 +166,17 @@ public:
|
|||
|
||||
void set(AlignmentEnum xalign, AlignmentEnum yalign, float ratio, bool obey_child = true);
|
||||
|
||||
/** X alignment of the child.
|
||||
#ifdef GLIBMM_PROPERTIES_ENABLED
|
||||
/** X alignment of the child.
|
||||
*
|
||||
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
|
||||
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
|
||||
* the value of the property changes.
|
||||
*/
|
||||
Glib::PropertyProxy<float> property_xalign() ;
|
||||
#endif //#GLIBMM_PROPERTIES_ENABLED
|
||||
|
||||
#ifdef GLIBMM_PROPERTIES_ENABLED
|
||||
/** X alignment of the child.
|
||||
*
|
||||
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
|
||||
|
|
@ -174,15 +184,19 @@ public:
|
|||
* the value of the property changes.
|
||||
*/
|
||||
Glib::PropertyProxy_ReadOnly<float> property_xalign() const;
|
||||
#endif //#GLIBMM_PROPERTIES_ENABLED
|
||||
|
||||
/** Y alignment of the child.
|
||||
#ifdef GLIBMM_PROPERTIES_ENABLED
|
||||
/** Y alignment of the child.
|
||||
*
|
||||
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
|
||||
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
|
||||
* the value of the property changes.
|
||||
*/
|
||||
Glib::PropertyProxy<float> property_yalign() ;
|
||||
#endif //#GLIBMM_PROPERTIES_ENABLED
|
||||
|
||||
#ifdef GLIBMM_PROPERTIES_ENABLED
|
||||
/** Y alignment of the child.
|
||||
*
|
||||
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
|
||||
|
|
@ -190,15 +204,19 @@ public:
|
|||
* the value of the property changes.
|
||||
*/
|
||||
Glib::PropertyProxy_ReadOnly<float> property_yalign() const;
|
||||
#endif //#GLIBMM_PROPERTIES_ENABLED
|
||||
|
||||
/** Aspect ratio if obey_child is FALSE.
|
||||
#ifdef GLIBMM_PROPERTIES_ENABLED
|
||||
/** Aspect ratio if obey_child is FALSE.
|
||||
*
|
||||
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
|
||||
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
|
||||
* the value of the property changes.
|
||||
*/
|
||||
Glib::PropertyProxy<float> property_ratio() ;
|
||||
#endif //#GLIBMM_PROPERTIES_ENABLED
|
||||
|
||||
#ifdef GLIBMM_PROPERTIES_ENABLED
|
||||
/** Aspect ratio if obey_child is FALSE.
|
||||
*
|
||||
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
|
||||
|
|
@ -206,15 +224,19 @@ public:
|
|||
* the value of the property changes.
|
||||
*/
|
||||
Glib::PropertyProxy_ReadOnly<float> property_ratio() const;
|
||||
#endif //#GLIBMM_PROPERTIES_ENABLED
|
||||
|
||||
/** Force aspect ratio to match that of the frame's child.
|
||||
#ifdef GLIBMM_PROPERTIES_ENABLED
|
||||
/** Force aspect ratio to match that of the frame's child.
|
||||
*
|
||||
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
|
||||
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
|
||||
* the value of the property changes.
|
||||
*/
|
||||
Glib::PropertyProxy<bool> property_obey_child() ;
|
||||
#endif //#GLIBMM_PROPERTIES_ENABLED
|
||||
|
||||
#ifdef GLIBMM_PROPERTIES_ENABLED
|
||||
/** Force aspect ratio to match that of the frame's child.
|
||||
*
|
||||
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
|
||||
|
|
@ -222,6 +244,7 @@ public:
|
|||
* the value of the property changes.
|
||||
*/
|
||||
Glib::PropertyProxy_ReadOnly<bool> property_obey_child() const;
|
||||
#endif //#GLIBMM_PROPERTIES_ENABLED
|
||||
|
||||
|
||||
};
|
||||
|
|
@ -237,6 +260,8 @@ namespace Glib
|
|||
* @result A C++ instance that wraps this C instance.
|
||||
*/
|
||||
Gtk::AspectFrame* wrap(GtkAspectFrame* object, bool take_copy = false);
|
||||
}
|
||||
} //namespace Glib
|
||||
|
||||
|
||||
#endif /* _GTKMM_ASPECTFRAME_H */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue