2007-07-26 09:13:23 -04:00
|
|
|
/*
|
|
|
|
* Clutter.
|
|
|
|
*
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
*
|
|
|
|
* Authored By Matthew Allum <mallum@openedhand.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 OpenedHand
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2008-10-30 13:04:34 -04:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2007-07-26 09:13:23 -04:00
|
|
|
*/
|
|
|
|
|
2008-10-30 13:04:34 -04:00
|
|
|
#if !defined(__CLUTTER_H_INSIDE__) && !defined(CLUTTER_COMPILATION)
|
|
|
|
#error "Only <clutter/clutter.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2007-07-26 09:13:23 -04:00
|
|
|
#ifndef __CLUTTER_TYPES_H__
|
|
|
|
#define __CLUTTER_TYPES_H__
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include <clutter/clutter-units.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2007-08-03 05:52:52 -04:00
|
|
|
#define CLUTTER_ANGLE_MAX_DEG 1509949439.6
|
|
|
|
|
2007-07-26 09:13:23 -04:00
|
|
|
#define CLUTTER_TYPE_GEOMETRY (clutter_geometry_get_type ())
|
|
|
|
#define CLUTTER_TYPE_KNOT (clutter_knot_get_type ())
|
|
|
|
#define CLUTTER_TYPE_VERTEX (clutter_vertex_get_type ())
|
|
|
|
|
2007-08-13 16:48:01 -04:00
|
|
|
/* Forward delarations to avoid header catch 22's */
|
2008-05-28 09:48:11 -04:00
|
|
|
typedef struct _ClutterActor ClutterActor;
|
|
|
|
typedef struct _ClutterStage ClutterStage;
|
|
|
|
typedef struct _ClutterContainer ClutterContainer; /* dummy */
|
|
|
|
typedef struct _ClutterChildMeta ClutterChildMeta;
|
2007-08-13 16:48:01 -04:00
|
|
|
|
2007-07-26 11:05:41 -04:00
|
|
|
/**
|
|
|
|
* ClutterGravity:
|
2007-07-29 05:19:37 -04:00
|
|
|
* @CLUTTER_GRAVITY_NONE: Do not apply any gravity
|
|
|
|
* @CLUTTER_GRAVITY_NORTH: Scale from topmost downwards
|
2008-09-17 06:40:40 -04:00
|
|
|
* @CLUTTER_GRAVITY_NORTH_EAST: Scale from the top right corner
|
|
|
|
* @CLUTTER_GRAVITY_EAST: Scale from the right side
|
|
|
|
* @CLUTTER_GRAVITY_SOUTH_EAST: Scale from the bottom right corner
|
2007-07-29 05:19:37 -04:00
|
|
|
* @CLUTTER_GRAVITY_SOUTH: Scale from the bottom upwards
|
2008-09-17 06:40:40 -04:00
|
|
|
* @CLUTTER_GRAVITY_SOUTH_WEST: Scale from the bottom left corner
|
|
|
|
* @CLUTTER_GRAVITY_WEST: Scale from the left side
|
|
|
|
* @CLUTTER_GRAVITY_NORTH_WEST: Scale from the top left corner
|
2007-07-29 05:19:37 -04:00
|
|
|
* @CLUTTER_GRAVITY_CENTER: Scale from the center.
|
2007-07-26 11:05:41 -04:00
|
|
|
*
|
2007-07-29 05:19:37 -04:00
|
|
|
* Gravity of the scaling operations. When a gravity different than
|
|
|
|
* %CLUTTER_GRAVITY_NONE is used, an actor is scaled keeping the position
|
|
|
|
* of the specified portion at the same coordinates.
|
2007-07-26 11:05:41 -04:00
|
|
|
*
|
|
|
|
* Since: 0.2
|
|
|
|
*/
|
2007-07-26 09:13:23 -04:00
|
|
|
typedef enum { /*< prefix=CLUTTER_GRAVITY >*/
|
|
|
|
CLUTTER_GRAVITY_NONE = 0,
|
|
|
|
CLUTTER_GRAVITY_NORTH,
|
|
|
|
CLUTTER_GRAVITY_NORTH_EAST,
|
|
|
|
CLUTTER_GRAVITY_EAST,
|
|
|
|
CLUTTER_GRAVITY_SOUTH_EAST,
|
|
|
|
CLUTTER_GRAVITY_SOUTH,
|
|
|
|
CLUTTER_GRAVITY_SOUTH_WEST,
|
|
|
|
CLUTTER_GRAVITY_WEST,
|
|
|
|
CLUTTER_GRAVITY_NORTH_WEST,
|
|
|
|
CLUTTER_GRAVITY_CENTER
|
|
|
|
} ClutterGravity;
|
|
|
|
|
|
|
|
typedef struct _ClutterGeometry ClutterGeometry;
|
|
|
|
typedef struct _ClutterKnot ClutterKnot;
|
|
|
|
typedef struct _ClutterVertex ClutterVertex;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ClutterGeometry:
|
|
|
|
* @x: X coordinate of the top left corner of an actor
|
|
|
|
* @y: Y coordinate of the top left corner of an actor
|
|
|
|
* @width: width of an actor
|
|
|
|
* @height: height of an actor
|
|
|
|
*
|
2008-02-15 09:39:25 -05:00
|
|
|
* The rectangle containing an actor's bounding box, measured in pixels.
|
2007-07-26 09:13:23 -04:00
|
|
|
*/
|
|
|
|
struct _ClutterGeometry
|
|
|
|
{
|
|
|
|
/*< public >*/
|
|
|
|
gint x;
|
|
|
|
gint y;
|
|
|
|
guint width;
|
|
|
|
guint height;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType clutter_geometry_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ClutterVertex:
|
|
|
|
* @x: X coordinate of the vertex
|
|
|
|
* @y: Y coordinate of the vertex
|
|
|
|
* @z: Z coordinate of the vertex
|
|
|
|
*
|
|
|
|
* Vertex of an actor in 3D space, expressed in device independent units.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
struct _ClutterVertex
|
|
|
|
{
|
|
|
|
ClutterUnit x;
|
|
|
|
ClutterUnit y;
|
|
|
|
ClutterUnit z;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType clutter_vertex_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ClutterKnot:
|
|
|
|
* @x: X coordinate of the knot
|
|
|
|
* @y: Y coordinate of the knot
|
|
|
|
*
|
|
|
|
* Point in a path behaviour.
|
|
|
|
*
|
|
|
|
* Since: 0.2
|
|
|
|
*/
|
|
|
|
struct _ClutterKnot
|
|
|
|
{
|
|
|
|
gint x;
|
|
|
|
gint y;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType clutter_knot_get_type (void) G_GNUC_CONST;
|
|
|
|
ClutterKnot *clutter_knot_copy (const ClutterKnot *knot);
|
|
|
|
void clutter_knot_free (ClutterKnot *knot);
|
|
|
|
gboolean clutter_knot_equal (const ClutterKnot *knot_a,
|
|
|
|
const ClutterKnot *knot_b);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ClutterRotateAxis:
|
2007-07-26 11:05:41 -04:00
|
|
|
* @CLUTTER_X_AXIS: Rotate around the X axis
|
|
|
|
* @CLUTTER_Y_AXIS: Rotate around the Y axis
|
|
|
|
* @CLUTTER_Z_AXIS: Rotate around the Z axis
|
2007-07-26 09:13:23 -04:00
|
|
|
*
|
2007-07-26 11:05:41 -04:00
|
|
|
* Axis of a rotation.
|
2007-07-26 09:13:23 -04:00
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
typedef enum { /*< prefix=CLUTTER >*/
|
|
|
|
CLUTTER_X_AXIS,
|
|
|
|
CLUTTER_Y_AXIS,
|
|
|
|
CLUTTER_Z_AXIS
|
|
|
|
} ClutterRotateAxis;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ClutterRotateDirection:
|
|
|
|
* @CLUTTER_ROTATE_CW: Clockwise rotation
|
|
|
|
* @CLUTTER_ROTATE_CCW: Counter-clockwise rotation
|
|
|
|
*
|
2007-07-26 11:05:41 -04:00
|
|
|
* Direction of a rotation.
|
2007-07-26 09:13:23 -04:00
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
typedef enum { /*< prefix=CLUTTER_ROTATE >*/
|
|
|
|
CLUTTER_ROTATE_CW,
|
|
|
|
CLUTTER_ROTATE_CCW
|
|
|
|
} ClutterRotateDirection;
|
|
|
|
|
2008-06-10 13:11:14 -04:00
|
|
|
/**
|
|
|
|
* ClutterRequestMode:
|
|
|
|
* @CLUTTER_REQUEST_HEIGHT_FOR_WIDTH: Height for width requests
|
|
|
|
* @CLUTTER_REQUEST_WIDTH_FOR_HEIGHT: Width for height requests
|
|
|
|
*
|
|
|
|
* Specifies the type of requests for a #ClutterActor.
|
|
|
|
*
|
|
|
|
* Since: 0.8
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
CLUTTER_REQUEST_HEIGHT_FOR_WIDTH,
|
|
|
|
CLUTTER_REQUEST_WIDTH_FOR_HEIGHT
|
|
|
|
} ClutterRequestMode;
|
|
|
|
|
2007-07-26 09:13:23 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __CLUTTER_TYPES_H__ */
|