~ubuntu-branches/ubuntu/vivid/clutter-1.0/vivid-proposed

« back to all changes in this revision

Viewing changes to clutter/clutter-bind-constraint.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2012-05-01 23:50:39 UTC
  • mfrom: (4.1.22 experimental)
  • Revision ID: package-import@ubuntu.com-20120501235039-7wehcmtr33nqhv67
Tags: 1.10.4-2
Upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
typedef struct _ClutterBindConstraint           ClutterBindConstraint;
49
49
typedef struct _ClutterBindConstraintClass      ClutterBindConstraintClass;
50
50
 
51
 
/**
52
 
 * ClutterBindCoordinate:
53
 
 * @CLUTTER_BIND_X: Bind the X coordinate
54
 
 * @CLUTTER_BIND_Y: Bind the Y coordinate
55
 
 * @CLUTTER_BIND_WIDTH: Bind the width
56
 
 * @CLUTTER_BIND_HEIGHT: Bind the height
57
 
 * @CLUTTER_BIND_POSITION: Equivalent to to %CLUTTER_BIND_X and
58
 
 *   %CLUTTER_BIND_Y
59
 
 * @CLUTTER_BIND_SIZE: Equivalent to %CLUTTER_BIND_WIDTH and
60
 
 *   %CLUTTER_BIND_HEIGHT
61
 
 *
62
 
 * Specifies which property should be used in a binding
63
 
 *
64
 
 * Since: 1.4
65
 
 */
66
 
typedef enum { /*< prefix=CLUTTER_BIND >*/
67
 
  CLUTTER_BIND_X,
68
 
  CLUTTER_BIND_Y,
69
 
  CLUTTER_BIND_WIDTH,
70
 
  CLUTTER_BIND_HEIGHT,
71
 
  CLUTTER_BIND_POSITION,
72
 
  CLUTTER_BIND_SIZE
73
 
} ClutterBindCoordinate;
74
 
 
75
51
GType clutter_bind_constraint_get_type (void) G_GNUC_CONST;
76
52
 
77
53
ClutterConstraint *   clutter_bind_constraint_new            (ClutterActor          *source,