5cc29888af
* clutter/Makefile.am: * clutter/clutter.h: * clutter/clutter-version.h.in: Auto-generated versioning macros. * clutter/clutter-actor.h: * clutter/clutter-actor.c: Add a ClutterActor::parent-set signal, for notificating changes of an actor's parent; add api-doc for the actor's properties; add the ClutterActor "name" property; clean up a bit some functions; emit the "parent-set" signal when setting te parent and when unparenting; better warnings when lowering and raising an actor. * configure.ac: * clutter/Makefile.am: Add a --enable-debug configure option, with three levels of debugging: no, minimum and yes; default for development releases (odd minor version) is "yes"; update the version m4 defines; update the libtool macros: now just changed the clutter_interface_age when releasing will update everything else.
74 lines
1.3 KiB
Plaintext
74 lines
1.3 KiB
Plaintext
<!-- ##### SECTION Title ##### -->
|
|
clutter-version
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
|
Versioning utilities
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
|
<para>
|
|
Clutter exports some macros representing the version at compile time. These
|
|
macros are useful for configure and compile time checks.
|
|
</para>
|
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
<!-- ##### SECTION Stability_Level ##### -->
|
|
|
|
|
|
<!-- ##### MACRO CLUTTER_MAJOR_VERSION ##### -->
|
|
<para>
|
|
The major version component of Clutter version
|
|
</para>
|
|
|
|
|
|
|
|
<!-- ##### MACRO CLUTTER_MINOR_VERSION ##### -->
|
|
<para>
|
|
The minor version component of Clutter version
|
|
</para>
|
|
|
|
|
|
|
|
<!-- ##### MACRO CLUTTER_MICRO_VERSION ##### -->
|
|
<para>
|
|
The micro version component of Clutter version
|
|
</para>
|
|
|
|
|
|
|
|
<!-- ##### MACRO CLUTTER_VERSION ##### -->
|
|
<para>
|
|
The Clutter version
|
|
</para>
|
|
|
|
|
|
|
|
<!-- ##### MACRO CLUTTER_VERSION_S ##### -->
|
|
<para>
|
|
The Clutter version as a string
|
|
</para>
|
|
|
|
|
|
|
|
<!-- ##### MACRO CLUTTER_VERSION_HEX ##### -->
|
|
<para>
|
|
The Clutter version as a hexadecimal number
|
|
</para>
|
|
|
|
|
|
|
|
<!-- ##### MACRO CLUTTER_CHECK_VERSION ##### -->
|
|
<para>
|
|
Returns TRUE if the version of the Clutter header files is the same as or newer
|
|
than the passed-in version.
|
|
</para>
|
|
|
|
@major: major version (e.g. 1, for 1.2.3)
|
|
@minor: minor version (e.g. 2, for 1.2.3)
|
|
@micro: micro version (e.g. 3, for 1.2.3)
|
|
|
|
|