2006-11-15 18:37:53 -05:00
|
|
|
/*
|
|
|
|
* Clutter.
|
|
|
|
*
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
*
|
|
|
|
* Authored By Matthew Allum <mallum@openedhand.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 OpenedHand
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2006-11-17 13:24:28 -05:00
|
|
|
/**
|
|
|
|
* SECTION:clutter-behaviour-opacity
|
2007-11-19 11:35:46 -05:00
|
|
|
* @short_description: A behaviour controlling opacity
|
2006-11-17 13:24:28 -05:00
|
|
|
*
|
|
|
|
* #ClutterBehaviourPath interpolates actors opacity between two values.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-11-15 18:37:53 -05:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "clutter-actor.h"
|
|
|
|
#include "clutter-behaviour.h"
|
|
|
|
#include "clutter-behaviour-opacity.h"
|
|
|
|
#include "clutter-enum-types.h"
|
|
|
|
#include "clutter-main.h"
|
2006-11-21 Emmanuele Bassi <ebassi@openedhand.com>
* configure.ac: Enable debug messages also when
--enable-debug is set to "minimum".
* clutter/Makefile.am:
* clutter/clutter-debug.h: Move all debugging macros inside
this private header; make all debug macros depend on the
CLUTTER_ENABLE_DEBUG compile time define, controlled by
the --enable-debug configure switch; add G_LOG_DOMAIN define.
* clutter/clutter-main.c: Clean up the debug stuff; add
command line argument parsing using GOption; the debug
messages now are triggered like this:
CLUTTER_DEBUG=section:section:... clutter-app
or like this:
clutter-app --clutter-debug=section:section:...
where "section" is one of the sections listed in clutter-main.c,
or "all", for all sections; each section is bound to a flag,
which can be used to define a domain when adding a debug note
using the CLUTTER_NOTE() macro; the old CLUTTER_DBG() macro is
just a wrapper around that, under the CLUTTER_DEBUG_MISC domain;
CLUTTER_NOTE() is used like this:
CLUTTER_NOTE (DOMAIN, log-function);
where log function is g_printerr(), g_message(), g_warning(),
g_critical() or directly g_log() - for instance:
CLUTTER_NOTE (PANGO, g_warning ("Cache miss: %d", glyph));
will print the warning only if the "pango" flag has been
set to the CLUTTER_DEBUG envvar or passed to the --clutter-debug
command line argument.
similar to CLUTTER_SHOW_FPS, there's also the --clutter-show-fps
command line switch; also, the --display and --screen command
line switches have been added: the first overrides the DISPLAY
envvar and the second controls the X screen used by Clutter to
get the root window on the display.
* clutter/clutter-main.h:
* clutter/clutter-main.c: Add extended support for GOption
in Clutter; use clutter_init_with_args() to let Clutter
parse your own command line arguments; use instead
clutter_get_option_group() to get the GOptionGroup used by
Clutter if you want to do the parsing yourself with
g_option_context_parse(). The init sequence has been verified,
updated and moved into common functions where possible.
* clutter/pango/pangoclutter-render.c:
* clutter/*.c: Include "clutter-debug.h" where needed; use
CLUTTER_NOTE() instead of CLUTTER_DBG().
* examples/super-oh.c: Use the new clutter_init_with_args()
function, and add a --num-hands command line switch to
the SuperOH example code controlling the number of hands at
runtime.
2006-11-21 16:27:53 -05:00
|
|
|
#include "clutter-private.h"
|
|
|
|
#include "clutter-debug.h"
|
2006-11-15 18:37:53 -05:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
2006-11-17 13:45:31 -05:00
|
|
|
/**
|
|
|
|
* SECTION:clutter-behaviour-opacity
|
|
|
|
* @short_description: Behaviour controlling the opacity
|
|
|
|
*
|
|
|
|
* #ClutterBehaviourOpacity controls the opacity of a set of actors.
|
2006-11-17 14:17:40 -05:00
|
|
|
*
|
|
|
|
* Since: 0.2
|
2006-11-17 13:45:31 -05:00
|
|
|
*/
|
|
|
|
|
2006-11-15 18:37:53 -05:00
|
|
|
G_DEFINE_TYPE (ClutterBehaviourOpacity,
|
|
|
|
clutter_behaviour_opacity,
|
|
|
|
CLUTTER_TYPE_BEHAVIOUR);
|
|
|
|
|
|
|
|
struct _ClutterBehaviourOpacityPrivate
|
|
|
|
{
|
|
|
|
guint8 opacity_start;
|
|
|
|
guint8 opacity_end;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define CLUTTER_BEHAVIOUR_OPACITY_GET_PRIVATE(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), \
|
|
|
|
CLUTTER_TYPE_BEHAVIOUR_OPACITY, \
|
|
|
|
ClutterBehaviourOpacityPrivate))
|
|
|
|
|
2006-11-17 14:17:40 -05:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
|
|
|
|
PROP_OPACITY_START,
|
|
|
|
PROP_OPACITY_END
|
|
|
|
};
|
|
|
|
|
2007-01-04 14:56:01 -05:00
|
|
|
static void
|
|
|
|
alpha_notify_foreach (ClutterBehaviour *behaviour,
|
|
|
|
ClutterActor *actor,
|
|
|
|
gpointer data)
|
|
|
|
{
|
2007-07-09 17:39:03 -04:00
|
|
|
clutter_actor_set_opacity (actor, GPOINTER_TO_UINT(data));
|
2007-01-04 14:56:01 -05:00
|
|
|
}
|
|
|
|
|
2006-11-15 18:37:53 -05:00
|
|
|
static void
|
2006-12-08 11:12:52 -05:00
|
|
|
clutter_behaviour_alpha_notify (ClutterBehaviour *behave,
|
|
|
|
guint32 alpha_value)
|
2006-11-15 18:37:53 -05:00
|
|
|
{
|
|
|
|
ClutterBehaviourOpacityPrivate *priv;
|
2007-07-11 08:01:03 -04:00
|
|
|
guint8 opacity;
|
2006-11-15 18:37:53 -05:00
|
|
|
|
2006-12-08 11:12:52 -05:00
|
|
|
priv = CLUTTER_BEHAVIOUR_OPACITY (behave)->priv;
|
2007-01-06 19:36:41 -05:00
|
|
|
|
2007-07-11 08:01:03 -04:00
|
|
|
opacity = alpha_value
|
|
|
|
* (priv->opacity_end - priv->opacity_start)
|
|
|
|
/ CLUTTER_ALPHA_MAX_ALPHA
|
|
|
|
+ priv->opacity_start;
|
2007-01-06 19:36:41 -05:00
|
|
|
|
2007-08-15 09:29:43 -04:00
|
|
|
CLUTTER_NOTE (BEHAVIOUR, "alpha: %u, opacity: %u",
|
|
|
|
alpha_value,
|
|
|
|
opacity);
|
2006-11-15 18:37:53 -05:00
|
|
|
|
2007-01-04 14:56:01 -05:00
|
|
|
clutter_behaviour_actors_foreach (behave,
|
|
|
|
alpha_notify_foreach,
|
2007-07-09 17:39:03 -04:00
|
|
|
GUINT_TO_POINTER ((guint) opacity));
|
2006-11-15 18:37:53 -05:00
|
|
|
}
|
|
|
|
|
2006-11-17 14:17:40 -05:00
|
|
|
static void
|
|
|
|
clutter_behaviour_opacity_set_property (GObject *gobject,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
ClutterBehaviourOpacity *opacityb = CLUTTER_BEHAVIOUR_OPACITY (gobject);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_OPACITY_START:
|
|
|
|
opacityb->priv->opacity_start = g_value_get_uint (value);
|
|
|
|
break;
|
|
|
|
case PROP_OPACITY_END:
|
|
|
|
opacityb->priv->opacity_end = g_value_get_uint (value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (gobject, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-11-15 18:37:53 -05:00
|
|
|
|
|
|
|
static void
|
2006-11-17 14:17:40 -05:00
|
|
|
clutter_behaviour_opacity_get_property (GObject *gobject,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2006-11-15 18:37:53 -05:00
|
|
|
{
|
2006-11-17 14:17:40 -05:00
|
|
|
ClutterBehaviourOpacity *opacityb = CLUTTER_BEHAVIOUR_OPACITY (gobject);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_OPACITY_START:
|
|
|
|
g_value_set_uint (value, opacityb->priv->opacity_start);
|
|
|
|
break;
|
|
|
|
case PROP_OPACITY_END:
|
|
|
|
g_value_set_uint (value, opacityb->priv->opacity_end);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (gobject, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-11-15 18:37:53 -05:00
|
|
|
|
2006-11-17 14:17:40 -05:00
|
|
|
static void
|
|
|
|
clutter_behaviour_opacity_class_init (ClutterBehaviourOpacityClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
ClutterBehaviourClass *behave_class = CLUTTER_BEHAVIOUR_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->set_property = clutter_behaviour_opacity_set_property;
|
|
|
|
gobject_class->get_property = clutter_behaviour_opacity_get_property;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ClutterBehaviourOpacity:opacity-start:
|
|
|
|
*
|
|
|
|
* Initial opacity level of the behaviour.
|
|
|
|
*
|
|
|
|
* Since: 0.2
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_OPACITY_START,
|
|
|
|
g_param_spec_uint ("opacity-start",
|
|
|
|
"Opacity Start",
|
|
|
|
"Initial opacity level",
|
|
|
|
0, 255,
|
|
|
|
0,
|
2007-11-20 11:05:56 -05:00
|
|
|
CLUTTER_PARAM_READWRITE));
|
2006-11-17 14:17:40 -05:00
|
|
|
/**
|
|
|
|
* ClutterBehaviourOpacity:opacity-end:
|
|
|
|
*
|
|
|
|
* Final opacity level of the behaviour.
|
|
|
|
*
|
|
|
|
* Since: 0.2
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_OPACITY_END,
|
|
|
|
g_param_spec_uint ("opacity-end",
|
|
|
|
"Opacity End",
|
|
|
|
"Final opacity level",
|
|
|
|
0, 255,
|
|
|
|
0,
|
2007-11-20 11:05:56 -05:00
|
|
|
CLUTTER_PARAM_READWRITE));
|
2006-11-15 18:37:53 -05:00
|
|
|
|
|
|
|
behave_class->alpha_notify = clutter_behaviour_alpha_notify;
|
|
|
|
|
|
|
|
g_type_class_add_private (klass, sizeof (ClutterBehaviourOpacityPrivate));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_behaviour_opacity_init (ClutterBehaviourOpacity *self)
|
|
|
|
{
|
|
|
|
self->priv = CLUTTER_BEHAVIOUR_OPACITY_GET_PRIVATE (self);
|
2007-11-20 11:05:56 -05:00
|
|
|
|
|
|
|
self->priv->opacity_start = 0;
|
|
|
|
self->priv->opacity_end = 0;
|
2006-11-15 18:37:53 -05:00
|
|
|
}
|
|
|
|
|
2006-11-17 13:24:28 -05:00
|
|
|
/**
|
2006-11-17 13:45:31 -05:00
|
|
|
* clutter_behaviour_opacity_new:
|
|
|
|
* @alpha: a #ClutterAlpha instance, or %NULL
|
|
|
|
* @opacity_start: minimum level of opacity
|
|
|
|
* @opacity_end: maximum level of opacity
|
2006-11-17 13:24:28 -05:00
|
|
|
*
|
2006-11-17 13:45:31 -05:00
|
|
|
* Creates a new #ClutterBehaviourOpacity object, driven by @alpha
|
|
|
|
* which controls the opacity property of every actor, making it
|
|
|
|
* change in the interval between @opacity_start and @opacity_end.
|
2006-11-17 13:24:28 -05:00
|
|
|
*
|
|
|
|
* Return value: the newly created #ClutterBehaviourOpacity
|
2006-11-17 14:17:40 -05:00
|
|
|
*
|
|
|
|
* Since: 0.2
|
2006-11-17 13:24:28 -05:00
|
|
|
*/
|
2006-11-17 13:45:31 -05:00
|
|
|
ClutterBehaviour *
|
2006-11-15 18:37:53 -05:00
|
|
|
clutter_behaviour_opacity_new (ClutterAlpha *alpha,
|
|
|
|
guint8 opacity_start,
|
|
|
|
guint8 opacity_end)
|
|
|
|
{
|
2006-11-17 14:17:40 -05:00
|
|
|
return g_object_new (CLUTTER_TYPE_BEHAVIOUR_OPACITY,
|
|
|
|
"alpha", alpha,
|
|
|
|
"opacity-start", opacity_start,
|
|
|
|
"opacity-end", opacity_end,
|
|
|
|
NULL);
|
2006-11-15 18:37:53 -05:00
|
|
|
}
|
|
|
|
|
2008-01-18 06:02:34 -05:00
|
|
|
/**
|
|
|
|
* clutter_behaviour_opacity_set_bounds:
|
|
|
|
* @behaviour: a #ClutterBehaviourOpacity
|
|
|
|
* @opacity_start: minimum level of opacity
|
|
|
|
* @opacity_end: maximum level of opacity
|
|
|
|
*
|
|
|
|
* Sets the initial and final levels of the opacity applied by @behaviour
|
|
|
|
* on each actor it controls.
|
|
|
|
*
|
|
|
|
* Since: 0.6
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clutter_behaviour_opacity_set_bounds (ClutterBehaviourOpacity *behaviour,
|
|
|
|
guint8 opacity_start,
|
|
|
|
guint8 opacity_end)
|
|
|
|
{
|
|
|
|
ClutterBehaviourOpacityPrivate *priv;
|
|
|
|
|
|
|
|
g_return_if_fail (CLUTTER_IS_BEHAVIOUR_OPACITY (behaviour));
|
|
|
|
|
|
|
|
priv = behaviour->priv;
|
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (behaviour));
|
|
|
|
|
|
|
|
if (priv->opacity_start != opacity_start)
|
|
|
|
{
|
|
|
|
priv->opacity_start = opacity_start;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (behaviour), "opacity-start");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->opacity_end != opacity_end)
|
|
|
|
{
|
|
|
|
priv->opacity_end = opacity_end;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (behaviour), "opacity-end");
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (behaviour));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_behaviour_opacity_get_bounds:
|
|
|
|
* @behaviour: a #ClutterBehaviourOpacity
|
|
|
|
* @opacity_start: return location for the minimum level of opacity, or %NULL
|
|
|
|
* @opacity_end: return location for the maximum level of opacity, or %NULL
|
|
|
|
*
|
|
|
|
* Gets the initial and final levels of the opacity applied by @behaviour
|
|
|
|
* on each actor it controls.
|
|
|
|
*
|
|
|
|
* Since: 0.6
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clutter_behaviour_opacity_get_bounds (ClutterBehaviourOpacity *behaviour,
|
|
|
|
guint8 *opacity_start,
|
|
|
|
guint8 *opacity_end)
|
|
|
|
{
|
|
|
|
g_return_if_fail (CLUTTER_IS_BEHAVIOUR_OPACITY (behaviour));
|
|
|
|
|
|
|
|
if (opacity_start)
|
|
|
|
*opacity_start = behaviour->priv->opacity_start;
|
|
|
|
|
|
|
|
if (opacity_end)
|
|
|
|
*opacity_end = behaviour->priv->opacity_end;
|
|
|
|
}
|