Suvarna Garge (Editor)

Clutter (software)

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Developer(s)
  
The GNOME Project

Written in
  
C

Clutter (software)

Original author(s)
  
Emmanuele Bassi, OpenedHand Ltd

Initial release
  
June 22, 2006; 10 years ago (2006-06-22)

Stable release
  
1.26.0 / March 21, 2016; 11 months ago (2016-03-21)

Preview release
  
1.25.6 / February 18, 2016; 12 months ago (2016-02-18)

Clutter is a GObject-based graphics library for creating hardware-accelerated user interfaces. Clutter is an OpenGL-based 'interactive canvas' library and does not contain any graphical control elements. It relies upon OpenGL (1.4+) or OpenGL ES (1.1 or 2.0) for rendering,. It also supports media playback using GStreamer and 2D graphics rendering using Cairo.

Contents

Clutter was authored by OpenedHand Ltd, now part of Intel. Clutter is free and open-source software, subject to the requirements of the GNU Lesser General Public License (LGPL), version 2.1.

Adoption

Popular programs that adopt Clutter are GNOME Videos (a.k.a. Totem), GNOME Shell, Pitivi, Cinnamon Desktop and GNOME Ease.

Mx is a widget toolkit based on Clutter originally designed for the graphical shell of Moblin/MeeGo netbook, but evolved into an independent project.

The widget toolkits Netbook Toolkit (nbtk) and Mx are based on Clutter. Often Clutter is seen analogous to GTK+ but this is inaccurate. Only Clutter together with Mx or Nbtk can match the extent of the GTK+. This is also the reason why Clutter is used together with GTK+.

Clutter supports multi-touch gestures.

  • Clayland is a Wayland compositor utilizing Clutter.
  • Snappy is a lighweight media player based on Clutter and GStreamer.
  • Pinpoint is a simple light-weight presentation program
  • GNOME Maps uses ClutterActor
  • More of a proof of concept for casual gaming are PillPopper (a Pac-Man-clone) and HappyWombats (an Angry Birds-clone) PillPopper & HappyWombats.
  • Software architecture

    Clutter is a scene graph-based canvas working in retained mode. Every object on the scene is usually a 2D surface inside a 3D space.

    Clutter abstracts the native windowing environment behind a backend, which is also responsible for creating the main container for the scene graph; this top level container is called the stage. Items on the stage are called actors.

    Instead of operating on matrices, as does OpenGL, the Clutter developer changes properties of each actor. Clutter will then notice the changes, and render the scene accordingly.

    Clutter is currently being developed by OpenedHand to provide visually rich graphical user interfaces on desktop and embedded hardware. The main target are media center-like applications, small devices UIs and base drawing API for GL- and GL/ES-based UI toolkits. Clutter uses Pango for text rendering (with a special GL/GLES renderer) and GdkPixbuf for loading images into GL textures. Interaction with other GNOME platform libraries is done through multiple integration libraries, e.g.: clutter-gst (GStreamer), clutter-gtk (for embedding the stage into a GTK+ application), clutter-cairo (for using cairo to draw into a texture). It's API and ABI are kept stable within micro releases, but can break API during minor releases—until it reaches 1.0, then it will be API and ABI stable until the following major release.

    ClutterActor

    ClutterActor is the basic element of Clutter's scene graph, it encapsulates the position, size, and transformations of a node in the graph.

  • A ClutterActor can receive and handle input device events, for instance pointer events and key events.
  • Animation is a core concept of modern user interfaces; Clutter provides a complete and powerful animation framework that automatically tweens the actor's state without requiring direct, frame by frame manipulation from your application code.
  • Supported platforms

    Clutter is developed for the X Window System using GLX as well as Wayland using EGL. Clutter can also use the framebuffer. As of release 0.6, native support for Mac OS X has been added. A native Microsoft Windows backend is supported since the 0.8 release and Windows pre-compiled DLLs are available, however, it is possible to build the latest DLL for Windows with MinGW and Bash shell for Windows.

    Since version 1.19.4 from June 2014, Clutter's evdev input backend depends on libinput 0.4.0.

    Programming language bindings

    Clutter is implemented using the C programming language with a design based on the GObject object system. Bindings are available for these languages:

  • C++ ([1] cluttermm)
  • Perl (perl-Clutter)
  • Python (PyClutter)
  • Haskell (clutterhs)
  • JavaScript (Seed and GJS)
  • C# (clutter-sharp (aka Clutter#)) ?
  • Ruby (rbclutter) ?
  • Vala (clutter-vala) ?
  • Integration libraries

    Clutter can be integrated with other libraries and toolkits, for instance:

  • GTK+ applications can embed Clutter stages using a special widget.
  • Clutter applications can embed GTK+ widgets using the 'client-side windows' feature since GTK+ 2.18.
  • Clutter applications can use GStreamer to play videos directly into a Clutter texture actor.
  • Clutter applications can use Cairo to draw onto a texture.
  • Video Acceleration API
  • Example

    This example will add a label on the stage (written in C).

    Interface builder

    Clutter can build user interfaces using a specialized JSON dialect. The entire scene graph is defined using JSON types and built at run time through the ClutterScript class.

    Example

    This definition will create the main window and place a label with the text Hello, world! inside it.

    The definition can be saved into a file or as a string, and loaded using:

    Animation

    Clutter allows implicit animations of every item on the canvas using special objects called behaviours: each behaviour can be applied to multiple actors, and multiple behaviours can be composed on the same actor. Behaviours handle animations implicitly: the developer specifies the initial and final states, the time (or number of frames) needed to complete the animation, the function of time to be used (linear, sine wave, exponential, etc.), and the behaviour will take care of the tweening. Clutter provides a generic base class for developers to implement custom behaviours, and various simple classes handling simple properties, like opacity, position on the Z axis (depth), position along a path, rotation, etc.

    Since Clutter 1.0, it is also possible to create simple, one-off animations using the ClutterAnimation class and the clutter_actor_animate() convenience function. The clutter_actor_animate() function animates an actor properties between their current state and the specified final state.

    Example

    This example will scale the label from its size to a factor of 2 in 2 seconds, using a linear function of time and behaviours:

    These statements will create a timeline with a duration of 2 seconds; an alpha, binding the timeline to a linear easing mode; a behaviour, which will scale any actor to which it is applied between factor 1.0 and factor 2.0 (both horizontally and vertically). Finally, it applies the behaviour to an actor.

    The equivalent code using the implicit animations API is:

    This statement will create an implicit ClutterAnimation object, which will animate the provided GObject properties between their current value and the specified final value.

    COGL

    Cogl is a small open source software library for using 3D graphics hardware to draw pretty pictures. The API departs from the flat state machine style of OpenGL and is designed to make it easy to write orthogonal components that can render without stepping on each other's toes. Cogl currently supports OpenGL ES 1.1/2.0 and OpenGL > 1.3 (or 1.2 if you have the GL_ARB_multitexture extension), and having Gallium3D or D3D back-ends are options for the future.

    libchamplain

    libchamplain is a C library providing a ClutterActor to display maps. It also provides a Gtk+ widget to display maps in Gtk+ applications. libchamplain is named after Samuel de Champlain, a French navigator, explorer and cartographer.

  • https://git.gnome.org/browse/libchamplain
  • https://wiki.gnome.org/Projects/libchamplain
  • References

    Clutter (software) Wikipedia