File: clutter-overview.xml

package info (click to toggle)
clutter-1.0 1.26.4%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 34,352 kB
  • sloc: ansic: 128,533; sh: 5,580; xml: 1,641; makefile: 1,613; ruby: 149; perl: 142; sed: 16
file content (62 lines) | stat: -rw-r--r-- 2,704 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<part id="clutter-overview">
  <partinfo>
    <author>
      <firstname>Emmanuele</firstname>
      <surname>Bassi</surname>
      <affiliation>
        <address>
          <email>ebassi@openedhand.com</email>
        </address>
      </affiliation>
    </author>
  </partinfo>

  <title>Overview</title>

  <partintro>

    <para>Clutter is a GObject based library for creating fast, visually
    rich, graphical user interfaces.</para>

    <para>Clutter works by manipulating a scene-graph of 2D surfaces, or
    'actors', inside a 3D space.</para>

    <para>#ClutterActor is the base class for such surfaces. All
    #ClutterActor<!-- -->s can be positioned, scaled and rotated in 3D space.
    In addition, other properties can be set, such as 2D clipping, children and
    opacity. Tranforms applied to a parent actor also apply to any children.
    Actors are also able to receive events.</para>

    <para>Subclasses of #ClutterActor include #ClutterStage, #ClutterTexture,
    #ClutterText, #ClutterRectangle, #ClutterCairoTexture, #ClutterGroup and
    #ClutterBox. #ClutterActor<!-- -->s are added to a parent, transformed
    and then made visible.</para>

    <para>#ClutterStage is the top level #ClutterActor - it's the
    representation of a window, or framebuffer. It is created automatically
    when Clutter is initialised. #ClutterStage is a #ClutterGroup, a class
    implementing the #ClutterContainer interface.</para>

    <para>Clutter allows explicit positioning and sizing through the
    #ClutterFixedLayout layout manager; and implicit positioning and sizing
    through fluid layout managers like #ClutterBoxLayout, #ClutterFlowLayout
    and #ClutterTableLayout. Actors inside fixed layout managers like
    #ClutterGroup and #ClutterStage can also be positioned and sized implicitly
    using the #ClutterConstraint sub-classes.</para>

    <para>#ClutterTimeline<!-- -->s provide the basis for Clutter's animation
    utilities. #ClutterActor<!-- -->s can be animated using explicit animations
    through the various #ClutterBehaviour implementations, or implicit
    animations, through the clutter_actor_animate() function. Animations can
    also be defined as named states through the #ClutterState class.</para>

    <para>Clutter further contains a number of utilities, including;
    #ClutterScript - for loading 'UI definition' files formatted in
    <ulink type="http" url="http://json.org">JSON</ulink>; #ClutterShader - a
    class for applying GPU shaders to actors, #ClutterModel - a utility class
    for MVC list type implementations; #ClutterAction<!-- -->s,
    #ClutterConstraint<!-- -->s and #ClutterEffect<!-- -->s.</para>

  </partintro>

</part>