Blame platform-demos/pt_BR/photo-wall.c.page

Packit 1470ea
Packit 1470ea
<page xmlns="http://projectmallard.org/1.0/" xmlns:its="http://www.w3.org/2005/11/its" type="topic" id="photo-wall.c" xml:lang="pt-BR">
Packit 1470ea
  <info>
Packit 1470ea
    <title type="text">Photo wall (C)</title>
Packit 1470ea
    <link type="guide" xref="c#examples"/>
Packit 1470ea
Packit 1470ea
    <desc>A Clutter image viewer</desc>
Packit 1470ea
Packit 1470ea
    <revision pkgversion="0.1" version="0.1" date="2011-03-22" status="review"/>
Packit 1470ea
    <credit type="author">
Packit 1470ea
      <name>Chris Kühl</name>
Packit 1470ea
      <email its:translate="no">chrisk@openismus.com</email>
Packit 1470ea
    </credit>
Packit 1470ea
    <credit type="author">
Packit 1470ea
      <name>Johannes Schmid</name>
Packit 1470ea
      <email its:translate="no">jhs@gnome.org</email>
Packit 1470ea
    </credit>
Packit 1470ea
    <credit type="editor">
Packit 1470ea
      <name>Marta Maria Casetti</name>
Packit 1470ea
      <email its:translate="no">mmcasetti@gmail.com</email>
Packit 1470ea
      <years>2013</years>
Packit 1470ea
    </credit>
Packit 1470ea
  
Packit 1470ea
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
Packit 1470ea
      <mal:name>Rafael Ferreira</mal:name>
Packit 1470ea
      <mal:email>rafael.f.f1@gmail.com</mal:email>
Packit 1470ea
      <mal:years>2013</mal:years>
Packit 1470ea
    </mal:credit>
Packit 1470ea
  </info>
Packit 1470ea
Packit 1470ea
<title>Photo wall</title>
Packit 1470ea
Packit 1470ea
<synopsis>
Packit 1470ea
  

For this example we will build a simple image viewer using Clutter. You will learn:

Packit 1470ea
  <list>
Packit 1470ea
    <item>

How to size and position ClutterActors

</item>
Packit 1470ea
    <item>

How to place an image in a ClutterActor

</item>
Packit 1470ea
    <item>

How to do simple transitions using Clutter's animation framework

</item>
Packit 1470ea
    <item>

How to make ClutterActors respond to mouse events

</item>
Packit 1470ea
    <item>

How to get file names from a directory

</item>
Packit 1470ea
  </list>
Packit 1470ea
</synopsis>
Packit 1470ea
Packit 1470ea
<section id="intro">
Packit 1470ea
  <title>Introduction</title>
Packit 1470ea
  

Packit 1470ea
    Clutter is a library for creating dynamic user interfaces using OpenGL for hardware acceleration. This example demonstrates a small, but central, part of the Clutter library to create a simple but attractive image viewing program.
Packit 1470ea
  

Packit 1470ea
  

Packit 1470ea
    To help us reach our goal we will be utilising a few other common pieces of GLib as well. Most importantly, we'll use one GPtrArray, a dynamic array of pointers, to hold the file path names. We will also use GDir, a utility for working with directories, to access our image directory and gather file paths.
Packit 1470ea
  

Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
<section id="anjuta">
Packit 1470ea
  <title>Create a project in Anjuta</title>
Packit 1470ea
  

Before you start coding, you'll need to set up a new project in Anjuta. This will create all of the files you need to build and run the code later on. It's also useful for keeping everything together.

Packit 1470ea
  <steps>
Packit 1470ea
    <item>
Packit 1470ea
    

Start Anjuta and click <guiseq><gui>File</gui><gui>New</gui><gui>Project</gui></guiseq> to open the project wizard.

Packit 1470ea
    </item>
Packit 1470ea
    <item>
Packit 1470ea
    

Choose <gui>GTK+ (simple)</gui> from the <gui>C</gui> tab, click <gui>Continue</gui>, and fill out your details on the next few pages. Use <file>photo-wall</file> as project name and directory.

Packit 1470ea
   	</item>
Packit 1470ea
    <item>
Packit 1470ea
    

Make sure that <gui>Use GtkBuilder for user interface</gui> is disabled as we will

Packit 1470ea
    create the UI manually in this tutorial. Check the <link xref="guitar-tuner.c">Guitar-Tuner</link>
Packit 1470ea
    tutorial using the interface builder.

Packit 1470ea
    </item>
Packit 1470ea
    <item>
Packit 1470ea
    

Enable <gui>Configure external packages</gui>. On the next page, select

Packit 1470ea
       clutter-1.0 from the list to include the Clutter library in your project.

Packit 1470ea
    </item>
Packit 1470ea
    <item>
Packit 1470ea
    

Click <gui>Apply</gui> and the project will be created for you. Open <file>src/main.c</file> from the <gui>Project</gui> or <gui>File</gui> tabs. You should see some code which starts with the lines:

Packit 1470ea
    
Packit 1470ea
#include <config.h>
Packit 1470ea
#include <gtk/gtk.h>]]>
Packit 1470ea
    </item>
Packit 1470ea
  </steps>
Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
<section id="look">
Packit 1470ea
  <title>A look at Photo Wall</title>
Packit 1470ea
  

Packit 1470ea
    Our image viewer presents the user with a wall of images.
Packit 1470ea
  

Packit 1470ea
  <media type="image" mime="image/png" src="media/photo-wall.png"/>
Packit 1470ea
  

When an image is clicked, it is animated to fill the viewing area. When the image having focus is clicked it is returned to its original position using an animation with the same duration of 500 milliseconds.

Packit 1470ea
  

Packit 1470ea
  <media type="image" mime="image/png" src="media/photo-wall-focused.png"/>
Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
<section id="setup">
Packit 1470ea
  <title>Initial setup</title>
Packit 1470ea
  

Packit 1470ea
    The following code segment contains many of the defines and variables we will be using in the following sections. Use this as a reference for later sections. Copy this code to the beginning of <file>src/main.c</file>:
Packit 1470ea
  

Packit 1470ea
Packit 1470ea
#include <gdk-pixbuf/gdk-pixbuf.h>
Packit 1470ea
#include <clutter/clutter.h>
Packit 1470ea
Packit 1470ea
#define STAGE_WIDTH  800
Packit 1470ea
#define STAGE_HEIGHT 600
Packit 1470ea
Packit 1470ea
#define THUMBNAIL_SIZE 200
Packit 1470ea
#define ROW_COUNT (STAGE_HEIGHT / THUMBNAIL_SIZE)
Packit 1470ea
#define COL_COUNT (STAGE_WIDTH  / THUMBNAIL_SIZE)
Packit 1470ea
#define THUMBNAIL_COUNT (ROW_COUNT * COL_COUNT)
Packit 1470ea
Packit 1470ea
#define ANIMATION_DURATION_MS 500
Packit 1470ea
Packit 1470ea
#define IMAGE_DIR_PATH "./berlin_images/"
Packit 1470ea
Packit 1470ea
static GPtrArray *img_paths;
Packit 1470ea
Packit 1470ea
static ClutterPoint unfocused_pos;
Packit 1470ea
]]>
Packit 1470ea
Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
<section id="code">
Packit 1470ea
  <title>Jumping into the code</title>
Packit 1470ea
  

We will start by taking a look at the main() function as a whole. Then we'll discuss the other code sections in detail.

Packit 1470ea
  Change the <file>src/main.c</file> to contain this main() function. You can delete the
Packit 1470ea
  create_window() function as we don't need it in this example.

Packit 1470ea
  
Packit 1470ea
int
Packit 1470ea
main(int argc, char *argv[])
Packit 1470ea
{
Packit 1470ea
    ClutterColor stage_color = { 16, 16, 16, 255 };
Packit 1470ea
    ClutterActor *stage = NULL;
Packit 1470ea
Packit 1470ea
    if (clutter_init (&argc, &argv) != CLUTTER_INIT_SUCCESS)
Packit 1470ea
        return 1;
Packit 1470ea
Packit 1470ea
    stage = clutter_stage_new();
Packit 1470ea
    clutter_actor_set_size(stage, STAGE_WIDTH, STAGE_HEIGHT);
Packit 1470ea
    clutter_actor_set_background_color(stage, &stage_color);
Packit 1470ea
    clutter_stage_set_title(CLUTTER_STAGE (stage), "Photo Wall");
Packit 1470ea
    g_signal_connect(stage, "destroy", G_CALLBACK(clutter_main_quit), NULL);
Packit 1470ea
Packit 1470ea
    load_image_path_names();
Packit 1470ea
Packit 1470ea
    guint row = 0;
Packit 1470ea
    guint col = 0;
Packit 1470ea
    for(row=0; row < ROW_COUNT; ++row)
Packit 1470ea
    {
Packit 1470ea
        for(col=0; col < COL_COUNT; ++col)
Packit 1470ea
        {
Packit 1470ea
            const char *img_path = g_ptr_array_index(img_paths, (row * COL_COUNT) + col);
Packit 1470ea
            GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file_at_size(img_path, STAGE_HEIGHT, STAGE_HEIGHT, NULL);
Packit 1470ea
            ClutterContent *image = clutter_image_new ();
Packit 1470ea
            ClutterActor *actor = clutter_actor_new ();
Packit 1470ea
Packit 1470ea
            if (pixbuf != NULL)
Packit 1470ea
            {
Packit 1470ea
                clutter_image_set_data(CLUTTER_IMAGE(image),
Packit 1470ea
                                       gdk_pixbuf_get_pixels(pixbuf),
Packit 1470ea
                                       gdk_pixbuf_get_has_alpha(pixbuf)
Packit 1470ea
                                           ? COGL_PIXEL_FORMAT_RGBA_8888
Packit 1470ea
                                           : COGL_PIXEL_FORMAT_RGB_888,
Packit 1470ea
                                       gdk_pixbuf_get_width(pixbuf),
Packit 1470ea
                                       gdk_pixbuf_get_height(pixbuf),
Packit 1470ea
                                       gdk_pixbuf_get_rowstride(pixbuf),
Packit 1470ea
                                       NULL);
Packit 1470ea
            }
Packit 1470ea
Packit 1470ea
            clutter_actor_set_content(actor, image);
Packit 1470ea
            g_object_unref(image);
Packit 1470ea
            g_object_unref(pixbuf);
Packit 1470ea
Packit 1470ea
            initialize_actor(actor, row, col);
Packit 1470ea
            clutter_actor_add_child(stage, actor);
Packit 1470ea
        }
Packit 1470ea
    }
Packit 1470ea
Packit 1470ea
    /* Show the stage. */
Packit 1470ea
    clutter_actor_show(stage);
Packit 1470ea
Packit 1470ea
    /* Start the clutter main loop. */
Packit 1470ea
    clutter_main();
Packit 1470ea
Packit 1470ea
    g_ptr_array_unref(img_paths);
Packit 1470ea
Packit 1470ea
    return 0;
Packit 1470ea
}]]>
Packit 1470ea
  <list>
Packit 1470ea
    <item>

Line 4: ClutterColor is defined by setting the red, green, blue and transparency (alpha) values. The values range from 0-255. For transparency a value of 255 is opaque.

</item>
Packit 1470ea
    <item>

Line 7: You must initialize Clutter. If you forget to do this, you will get very strange errors. Be warned.

</item>
Packit 1470ea
    <item>

Lines 10‒14: Here we create a new ClutterStage . We then set the size using the defines from the previous section and the address of the ClutterColor we just defined.

Packit 1470ea
      <note>

A ClutterStage is the top-level ClutterActor onto which other ClutterActors are placed.

</note>
Packit 1470ea
</item>
Packit 1470ea
    <item>

Line 16: Here we call our function for getting the image file paths. We'll look at this in a bit.

</item>
Packit 1470ea
    <item>

Lines 18‒49: This is where we set up the ClutterActors, load the images and place them into their spot in the image wall. We will look at this in detail in the next section.

</item>
Packit 1470ea
    <item>

Line 52: Show the stage and all its children, meaning our images.

</item>
Packit 1470ea
    <item>

Line 55: Start the Clutter main loop.

</item>
Packit 1470ea
  </list>
Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
<section id="actors">
Packit 1470ea
  <title>Setting up our image actors</title>
Packit 1470ea
 <note>

In Clutter, an actor is the most basic visual element. Basically, everything you see is an actor.

</note>
Packit 1470ea

Packit 1470ea
In this section, we are going to take a closer look at the loop used for setting up the ClutterActors that will display our images.
Packit 1470ea

Packit 1470ea
  
Packit 1470ea
guint row = 0;
Packit 1470ea
guint col = 0;
Packit 1470ea
for(row=0; row < ROW_COUNT; ++row)
Packit 1470ea
{
Packit 1470ea
    for(col=0; col < COL_COUNT; ++col)
Packit 1470ea
    {
Packit 1470ea
        const char *img_path = g_ptr_array_index(img_paths, (row * COL_COUNT) + col);
Packit 1470ea
        GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file_at_size(img_path, STAGE_HEIGHT, STAGE_HEIGHT, NULL);
Packit 1470ea
        ClutterContent *image = clutter_image_new ();
Packit 1470ea
        ClutterActor *actor = clutter_actor_new ();
Packit 1470ea
Packit 1470ea
        if (pixbuf != NULL)
Packit 1470ea
        {
Packit 1470ea
            clutter_image_set_data(CLUTTER_IMAGE(image),
Packit 1470ea
                                   gdk_pixbuf_get_pixels(pixbuf),
Packit 1470ea
                                   gdk_pixbuf_get_has_alpha(pixbuf)
Packit 1470ea
                                       ? COGL_PIXEL_FORMAT_RGBA_8888
Packit 1470ea
                                       : COGL_PIXEL_FORMAT_RGB_888,
Packit 1470ea
                                   gdk_pixbuf_get_width(pixbuf),
Packit 1470ea
                                   gdk_pixbuf_get_height(pixbuf),
Packit 1470ea
                                   gdk_pixbuf_get_rowstride(pixbuf),
Packit 1470ea
                                   NULL);
Packit 1470ea
        }
Packit 1470ea
Packit 1470ea
        clutter_actor_set_content(actor, image);
Packit 1470ea
        g_object_unref(image);
Packit 1470ea
        g_object_unref(pixbuf);
Packit 1470ea
Packit 1470ea
        initialize_actor(actor, row, col);
Packit 1470ea
        clutter_actor_add_child(stage, actor);
Packit 1470ea
    }
Packit 1470ea
}
Packit 1470ea
]]>
Packit 1470ea
Packit 1470ea
<list>
Packit 1470ea
  <item>

Line 7: Here we want to get the path at the nth location in the GPtrArray that is holding our image path names. The nth position is calculated based on row and col.

Packit 1470ea
  </item>
Packit 1470ea
  <item>

Line 8‒23: This is where we actually create the ClutterActor and place the image into the actor. The first argument is the path which we access through our GSList node. The second argument is for error reporting but we are ignoring that to keep things short.

Packit 1470ea
  </item>
Packit 1470ea
  <item>

Line 47: This adds the ClutterActor to the stage, which is a container. It also assumes ownership of the ClutterActor which is something you'll want to look into as you get deeper into GNOME development. See the <link href="http://library.gnome.org/devel/gobject/stable/gobject-memory.html">GObject documentation</link> for the gory details.

Packit 1470ea
  </item>
Packit 1470ea
</list>
Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
<section id="load">
Packit 1470ea
  <title>Loading the images</title>
Packit 1470ea
  

Let's take a short break from Clutter to see how we can get the file names from our image directory.

Packit 1470ea
  
Packit 1470ea
static void
Packit 1470ea
load_image_path_names()
Packit 1470ea
{
Packit 1470ea
    /* Ensure we can access the directory. */
Packit 1470ea
    GError *error = NULL;
Packit 1470ea
    GDir *dir = g_dir_open(IMAGE_DIR_PATH, 0, &error);
Packit 1470ea
    if(error)
Packit 1470ea
    {
Packit 1470ea
        g_warning("g_dir_open() failed with error: %s\n", error->message);
Packit 1470ea
        g_clear_error(&error);
Packit 1470ea
        return;
Packit 1470ea
    }
Packit 1470ea
Packit 1470ea
    img_paths = g_ptr_array_new_with_free_func (g_free);
Packit 1470ea
Packit 1470ea
    const gchar *filename = g_dir_read_name(dir);
Packit 1470ea
    while(filename)
Packit 1470ea
    {
Packit 1470ea
        if(g_str_has_suffix(filename, ".jpg") || g_str_has_suffix(filename, ".png"))
Packit 1470ea
        {
Packit 1470ea
            gchar *path = g_build_filename(IMAGE_DIR_PATH, filename, NULL);
Packit 1470ea
            g_ptr_array_add (img_paths, path);
Packit 1470ea
        }
Packit 1470ea
        filename = g_dir_read_name(dir);
Packit 1470ea
    }
Packit 1470ea
}]]>
Packit 1470ea
  <list>
Packit 1470ea
    <item>

Lines 5 and 12: This opens our directory or, if an error occurred, returns after printing an error message.

</item>
Packit 1470ea
    <item>

Lines 16‒25: The first line gets another file name from the GDir we opened earlier. If there was an image file (which we check by looking at its extension, ".png" or ".jpg") in the directory we proceed to prepend the image directory path to the filename and prepend that to the list we set up earlier. Lastly we attempt to get the next path name and reenter the loop if another file was found.

</item>
Packit 1470ea
  </list>
Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
<section id="actors2">
Packit 1470ea
  <title>Set up the actors</title>
Packit 1470ea
  

Packit 1470ea
     We now take a look at the sizing and  positioning of ClutterActors and also readying the ClutterActor for user interaction.
Packit 1470ea
  

Packit 1470ea
  
Packit 1470ea
/* This function handles setting up and placing the rectangles. */
Packit 1470ea
static void
Packit 1470ea
initialize_actor(ClutterActor *actor, guint row, guint col)
Packit 1470ea
{
Packit 1470ea
    clutter_actor_set_size(actor, THUMBNAIL_SIZE, THUMBNAIL_SIZE);
Packit 1470ea
    clutter_actor_set_position(actor, col * THUMBNAIL_SIZE, row * THUMBNAIL_SIZE);
Packit 1470ea
    clutter_actor_set_reactive(actor, TRUE);
Packit 1470ea
Packit 1470ea
    g_signal_connect(actor,
Packit 1470ea
                     "button-press-event",
Packit 1470ea
                     G_CALLBACK(actor_clicked_cb),
Packit 1470ea
                     NULL);
Packit 1470ea
}]]>
Packit 1470ea
  <list>
Packit 1470ea
    <item>
Packit 1470ea
      

Line 7: Setting an actor reactive means that it reacts to events, such as button-press-event in our case. For Photo Wall, all ClutterActors in the wall should initially be reactive.

Packit 1470ea
    </item>
Packit 1470ea
    <item>
Packit 1470ea
      

Line 9‒12: Now we connect the button-press-event to the actor_clicked_cb callback which we will look at next.

Packit 1470ea
    </item>
Packit 1470ea
  </list>
Packit 1470ea
  

At this point we've got a wall of images that are ready to be viewed.

Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
<section id="click">
Packit 1470ea
  <title>Reacting to the clicks</title>
Packit 1470ea
  

Packit 1470ea
Packit 1470ea
  

Packit 1470ea
  
Packit 1470ea
static gboolean
Packit 1470ea
actor_clicked_cb(ClutterActor *actor,
Packit 1470ea
                 ClutterEvent *event,
Packit 1470ea
                 gpointer      user_data)
Packit 1470ea
{
Packit 1470ea
    /* Flag to keep track of our state. */
Packit 1470ea
    static gboolean is_focused = FALSE;
Packit 1470ea
    ClutterActorIter iter;
Packit 1470ea
    ClutterActor *child;
Packit 1470ea
Packit 1470ea
    /* Reset the focus state on all the images */
Packit 1470ea
    clutter_actor_iter_init (&iter, clutter_actor_get_parent(actor));
Packit 1470ea
    while (clutter_actor_iter_next(&iter, &child))
Packit 1470ea
      clutter_actor_set_reactive(child, is_focused);
Packit 1470ea
Packit 1470ea
    clutter_actor_save_easing_state(actor);
Packit 1470ea
    clutter_actor_set_easing_duration(actor, ANIMATION_DURATION_MS);
Packit 1470ea
Packit 1470ea
    if(is_focused)
Packit 1470ea
    {
Packit 1470ea
        /* Restore the old location and size. */
Packit 1470ea
        clutter_actor_set_position(actor, unfocused_pos.x, unfocused_pos.y);
Packit 1470ea
        clutter_actor_set_size(actor, THUMBNAIL_SIZE, THUMBNAIL_SIZE);
Packit 1470ea
    }
Packit 1470ea
    else
Packit 1470ea
    {
Packit 1470ea
        /* Save the current location before animating. */
Packit 1470ea
        clutter_actor_get_position(actor, &unfocused_pos.x, &unfocused_pos.y);
Packit 1470ea
        /* Only the currently focused image should receive events. */
Packit 1470ea
        clutter_actor_set_reactive(actor, TRUE);
Packit 1470ea
Packit 1470ea
        /* Put the focused image on top. */
Packit 1470ea
        clutter_actor_set_child_above_sibling(clutter_actor_get_parent(actor), actor, NULL);
Packit 1470ea
Packit 1470ea
        clutter_actor_set_position(actor, (STAGE_WIDTH - STAGE_HEIGHT) / 2.0, 0);
Packit 1470ea
        clutter_actor_set_size(actor, STAGE_HEIGHT, STAGE_HEIGHT);
Packit 1470ea
    }
Packit 1470ea
Packit 1470ea
    clutter_actor_restore_easing_state(actor);
Packit 1470ea
Packit 1470ea
    /* Toggle our flag. */
Packit 1470ea
    is_focused = !is_focused;
Packit 1470ea
Packit 1470ea
    return TRUE;
Packit 1470ea
}]]>
Packit 1470ea
  <list>
Packit 1470ea
    <item>

Lines 1‒4: We have to make sure our callback function matches the signature required for the button_clicked_event signal. For our example, we will only use the first argument, the ClutterActor that is actually clicked.

Packit 1470ea
<note>
Packit 1470ea
  

A few words on the arguments we are not using in this example. The ClutterEvent is different depending on what event is being handled. For example, a key event produces a ClutterKeyEvent from which you can get the key being pressed among other information. For mouse click events you get a ClutterButtonEvent from which you can get the x and y values. See the Clutter documentation for other ClutterEvent types.

Packit 1470ea
  

Packit 1470ea
    The user_data is what one uses to pass data into the function. A pointer to any data type can be passed in. If you need multiple data to be passed into the callback, you can place the data into a struct and pass its address in.
Packit 1470ea
  

Packit 1470ea
</note></item>
Packit 1470ea
    <item>

Line 7: We set up a static flag to track which state we are in: wall mode or focus mode. We start out in wall mode so no image has focus. Thus, we set the flag to FALSE initially.

</item>
Packit 1470ea
    <item>

Line 12‒14: These set the image actors to receive events if they are focused.

</item>
Packit 1470ea
    <item>

Line 16‒17: Here we set the animation duration and save the current state.

</item>
Packit 1470ea
    <item>

Lines 21‒23: Reaching this code means that one image currently has focus and we want to return to wall mode. Setting a position on a ClutterActor begins an animation with the duration that we set in line 17.

Packit 1470ea
    </item>
Packit 1470ea
    <item>

Line 24: Reaching this line of code means we are currently in the wall state and are about to give a ClutterActor focus. Here we save the starting position so that we can return to it later.

</item>
Packit 1470ea
    <item>

Line 25: Setting the ClutterActor's reactive property to TRUE makes this ClutterActor react to events. In this focused state the only ClutterActor that we want to receive events will be the ClutterActor being viewed. Clicking on the ClutterActor will return it to its starting position.

</item>
Packit 1470ea
    <item>

Lines 27‒36: This is where we save the current position of the image, set it to receive events and then make it appear above the other images and start animating it to fill the stage.

</item>
Packit 1470ea
    <item>

Line 39: Here we restore the easing state to what was set before we changed it in line 16.

</item>
Packit 1470ea
    <item>

Line 42: Here we toggle the is_focused flag to the current state.

</item>
Packit 1470ea
<item>

As mentioned previously, the ClutterActors with higher depth values receive events but can allow ClutterActors below them to also receive events. Returning TRUE will stop events from being passed down, while FALSE will pass events down.

Packit 1470ea
 <note>
Packit 1470ea
   

Remember, however, that to receive events the ClutterActors must be set reactive.

Packit 1470ea
 </note>
Packit 1470ea
</item>
Packit 1470ea
 </list>
Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
<section id="run">
Packit 1470ea
  <title>Build and run the application</title>
Packit 1470ea
  

All of the code should now be ready to go.

Packit 1470ea
  All you need now is some pictures to load. By default, the pictures are loaded from a <file>berlin_images</file> directory. If you want, you can change the #define IMAGE_DIR_PATH line near the top to refer to your photo directory, or create a <file>berlin_images</file> directory by clicking <guiseq><gui>Project</gui><gui>New Directory...</gui></guiseq> and creating a <file>berlin_images</file> directory as a subdirectory of the <file>photo-wall</file> directory. Make sure to put at least twelve images in the directory! 

Packit 1470ea
  

When you have done that, click <guiseq><gui>Build</gui><gui>Build Project</gui></guiseq> to build everything again, then <guiseq><gui>Run</gui><gui>Execute</gui></guiseq> to start the application.

Packit 1470ea
  

If you haven't already done so, choose the <file>Debug/src/photo-wall</file> application in the dialog that appears. Finally, hit <gui>Run</gui> and enjoy!

Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
<section id="impl">
Packit 1470ea
 <title>Reference Implementation</title>
Packit 1470ea
 

If you run into problems with the tutorial, compare your code with this <link href="photo-wall/photo-wall.c">reference code</link>.

Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
</page>