~oem-solutions-group/unity-2d/clutter-1.0

« back to all changes in this revision

Viewing changes to clutter/clutter-types.h

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2010-03-21 13:27:56 UTC
  • mto: (2.1.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20100321132756-nf8yd30yxo3zzwcm
Tags: upstream-1.2.2
ImportĀ upstreamĀ versionĀ 1.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
typedef struct _ClutterStage            ClutterStage;
44
44
typedef struct _ClutterContainer        ClutterContainer; /* dummy */
45
45
typedef struct _ClutterChildMeta        ClutterChildMeta;
 
46
typedef struct _ClutterLayoutMeta       ClutterLayoutMeta;
 
47
typedef struct _ClutterAnimator         ClutterAnimator;
 
48
 
 
49
typedef union _ClutterEvent             ClutterEvent;
46
50
 
47
51
/**
48
52
 * ClutterGravity:
152
156
                                                  gfloat                 y);
153
157
void             clutter_actor_box_from_vertices (ClutterActorBox       *box,
154
158
                                                  const ClutterVertex    verts[]);
 
159
void             clutter_actor_box_interpolate   (const ClutterActorBox *initial,
 
160
                                                  const ClutterActorBox *final,
 
161
                                                  gdouble                progress,
 
162
                                                  ClutterActorBox       *result);
 
163
void             clutter_actor_box_clamp_to_pixel (ClutterActorBox       *box);
155
164
 
156
165
/**
157
166
 * ClutterGeometry:
381
390
  CLUTTER_FONT_HINTING    = (1 << 1),
382
391
} ClutterFontFlags;
383
392
 
 
393
/**
 
394
 * ClutterTextDirection:
 
395
 * @CLUTTER_TEXT_DIRECTION_DEFAULT: Use the default setting, as returned
 
396
 *   by clutter_get_default_text_direction()
 
397
 * @CLUTTER_TEXT_DIRECTION_LTR: Use left-to-right text direction
 
398
 * @CLUTTER_TEXT_DIRECTION_RTL: Use right-to-left text direction
 
399
 *
 
400
 * The text direction to be used by #ClutterActor<!-- -->s
 
401
 *
 
402
 * Since: 1.2
 
403
 */
 
404
typedef enum {
 
405
  CLUTTER_TEXT_DIRECTION_DEFAULT,
 
406
  CLUTTER_TEXT_DIRECTION_LTR,
 
407
  CLUTTER_TEXT_DIRECTION_RTL
 
408
} ClutterTextDirection;
 
409
 
384
410
G_END_DECLS
385
411
 
386
412
#endif /* __CLUTTER_TYPES_H__ */