2009-09-01 12:42:50 -04:00
|
|
|
#if !defined(__CLUTTER_H_INSIDE__) && !defined(CLUTTER_COMPILATION)
|
|
|
|
#error "Only <clutter/clutter.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __CLUTTER_BOX_H__
|
|
|
|
#define __CLUTTER_BOX_H__
|
|
|
|
|
|
|
|
#include <clutter/clutter-actor.h>
|
|
|
|
#include <clutter/clutter-container.h>
|
|
|
|
#include <clutter/clutter-layout-manager.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define CLUTTER_TYPE_BOX (clutter_box_get_type ())
|
|
|
|
#define CLUTTER_BOX(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CLUTTER_TYPE_BOX, ClutterBox))
|
|
|
|
#define CLUTTER_IS_BOX(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CLUTTER_TYPE_BOX))
|
|
|
|
#define CLUTTER_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CLUTTER_TYPE_BOX, ClutterBoxClass))
|
|
|
|
#define CLUTTER_IS_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CLUTTER_TYPE_BOX))
|
|
|
|
#define CLUTTER_BOX_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CLUTTER_TYPE_BOX, ClutterBoxClass))
|
|
|
|
|
|
|
|
typedef struct _ClutterBox ClutterBox;
|
|
|
|
typedef struct _ClutterBoxPrivate ClutterBoxPrivate;
|
|
|
|
typedef struct _ClutterBoxClass ClutterBoxClass;
|
|
|
|
|
|
|
|
struct _ClutterBox
|
|
|
|
{
|
|
|
|
ClutterActor parent_instance;
|
|
|
|
|
|
|
|
ClutterBoxPrivate *priv;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _ClutterBoxClass
|
|
|
|
{
|
|
|
|
ClutterActorClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType clutter_box_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2009-09-14 06:28:34 -04:00
|
|
|
ClutterActor * clutter_box_new (ClutterLayoutManager *manager);
|
|
|
|
|
2009-09-16 10:48:28 -04:00
|
|
|
void clutter_box_set_layout_manager (ClutterBox *box,
|
2009-09-18 10:29:09 -04:00
|
|
|
ClutterLayoutManager *manager);
|
2009-09-14 06:28:34 -04:00
|
|
|
ClutterLayoutManager *clutter_box_get_layout_manager (ClutterBox *box);
|
2009-09-01 12:42:50 -04:00
|
|
|
|
2009-09-17 13:21:51 -04:00
|
|
|
void clutter_box_set_color (ClutterBox *box,
|
|
|
|
const ClutterColor *color);
|
|
|
|
void clutter_box_get_color (ClutterBox *box,
|
|
|
|
ClutterColor *color);
|
|
|
|
|
2009-09-16 06:10:45 -04:00
|
|
|
void clutter_box_pack (ClutterBox *box,
|
2009-09-15 18:20:51 -04:00
|
|
|
ClutterActor *actor,
|
|
|
|
const gchar *first_property,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
2009-09-16 06:10:45 -04:00
|
|
|
void clutter_box_packv (ClutterBox *box,
|
2009-09-15 18:20:51 -04:00
|
|
|
ClutterActor *actor,
|
|
|
|
guint n_properties,
|
|
|
|
const gchar * const properties[],
|
|
|
|
const GValue *values);
|
|
|
|
|
2009-12-04 11:54:22 -05:00
|
|
|
void clutter_box_pack_after (ClutterBox *box,
|
|
|
|
ClutterActor *actor,
|
|
|
|
ClutterActor *sibling,
|
|
|
|
const gchar *first_property,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
|
|
|
void clutter_box_pack_before (ClutterBox *box,
|
|
|
|
ClutterActor *actor,
|
|
|
|
ClutterActor *sibling,
|
|
|
|
const gchar *first_property,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
|
|
|
void clutter_box_pack_at (ClutterBox *box,
|
|
|
|
ClutterActor *actor,
|
|
|
|
gint position,
|
|
|
|
const gchar *first_property,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
|
|
|
|
2009-09-01 12:42:50 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __CLUTTER_BOX_H__ */
|