2010-05-11 12:09:13 -04:00
|
|
|
/*
|
|
|
|
* Clutter.
|
|
|
|
*
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Intel Corporation.
|
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Author:
|
|
|
|
* Emmanuele Bassi <ebassi@linux.intel.com>
|
|
|
|
*/
|
|
|
|
|
2015-07-07 10:51:13 -04:00
|
|
|
#ifndef __CLUTTER_ACTION_H__
|
|
|
|
#define __CLUTTER_ACTION_H__
|
|
|
|
|
2010-05-11 12:09:13 -04:00
|
|
|
#if !defined(__CLUTTER_H_INSIDE__) && !defined(CLUTTER_COMPILATION)
|
|
|
|
#error "Only <clutter/clutter.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <clutter/clutter-actor-meta.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2019-07-15 06:08:33 -04:00
|
|
|
#define CLUTTER_TYPE_ACTION (clutter_action_get_type ())
|
2010-05-11 12:09:13 -04:00
|
|
|
|
2019-07-15 06:08:33 -04:00
|
|
|
CLUTTER_EXPORT
|
|
|
|
G_DECLARE_DERIVABLE_TYPE (ClutterAction, clutter_action,
|
|
|
|
CLUTTER, ACTION, ClutterActorMeta);
|
2010-05-11 12:09:13 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ClutterActionClass:
|
|
|
|
*
|
2014-03-18 10:14:22 -04:00
|
|
|
* The ClutterActionClass structure contains only private data
|
2010-05-11 12:09:13 -04:00
|
|
|
*
|
|
|
|
* Since: 1.4
|
|
|
|
*/
|
|
|
|
struct _ClutterActionClass
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
ClutterActorMetaClass parent_class;
|
|
|
|
|
|
|
|
void (* _clutter_action1) (void);
|
|
|
|
void (* _clutter_action2) (void);
|
|
|
|
void (* _clutter_action3) (void);
|
|
|
|
void (* _clutter_action4) (void);
|
|
|
|
void (* _clutter_action5) (void);
|
|
|
|
void (* _clutter_action6) (void);
|
|
|
|
void (* _clutter_action7) (void);
|
|
|
|
void (* _clutter_action8) (void);
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ClutterActor API */
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2010-05-20 06:19:51 -04:00
|
|
|
void clutter_actor_add_action (ClutterActor *self,
|
|
|
|
ClutterAction *action);
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2010-05-20 06:19:51 -04:00
|
|
|
void clutter_actor_add_action_with_name (ClutterActor *self,
|
|
|
|
const gchar *name,
|
|
|
|
ClutterAction *action);
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2010-05-20 06:19:51 -04:00
|
|
|
void clutter_actor_remove_action (ClutterActor *self,
|
|
|
|
ClutterAction *action);
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2010-05-20 06:19:51 -04:00
|
|
|
void clutter_actor_remove_action_by_name (ClutterActor *self,
|
|
|
|
const gchar *name);
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2010-05-20 06:19:51 -04:00
|
|
|
ClutterAction *clutter_actor_get_action (ClutterActor *self,
|
|
|
|
const gchar *name);
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2010-05-20 06:19:51 -04:00
|
|
|
GList * clutter_actor_get_actions (ClutterActor *self);
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2010-05-20 06:19:51 -04:00
|
|
|
void clutter_actor_clear_actions (ClutterActor *self);
|
2010-05-11 12:09:13 -04:00
|
|
|
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2014-03-17 14:19:52 -04:00
|
|
|
gboolean clutter_actor_has_actions (ClutterActor *self);
|
2011-09-29 12:34:12 -04:00
|
|
|
|
2010-05-11 12:09:13 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __CLUTTER_ACTION_H__ */
|