2009-10-27 11:27:45 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
2009-08-04 16:08:59 -04:00
|
|
|
#ifndef __SHELL_GENERIC_CONTAINER_H__
|
|
|
|
#define __SHELL_GENERIC_CONTAINER_H__
|
|
|
|
|
|
|
|
#include <clutter/clutter.h>
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#define SHELL_TYPE_GENERIC_CONTAINER (shell_generic_container_get_type ())
|
|
|
|
#define SHELL_GENERIC_CONTAINER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SHELL_TYPE_GENERIC_CONTAINER, ShellGenericContainer))
|
|
|
|
#define SHELL_GENERIC_CONTAINER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SHELL_TYPE_GENERIC_CONTAINER, ShellGenericContainerClass))
|
|
|
|
#define SHELL_IS_GENERIC_CONTAINER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SHELL_TYPE_GENERIC_CONTAINER))
|
|
|
|
#define SHELL_IS_GENERIC_CONTAINER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SHELL_TYPE_GENERIC_CONTAINER))
|
|
|
|
#define SHELL_GENERIC_CONTAINER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SHELL_TYPE_GENERIC_CONTAINER, ShellGenericContainerClass))
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
float min_size;
|
|
|
|
float natural_size;
|
|
|
|
|
|
|
|
/* <private> */
|
|
|
|
guint _refcount;
|
|
|
|
} ShellGenericContainerAllocation;
|
|
|
|
|
|
|
|
#define SHELL_TYPE_GENERIC_CONTAINER_ALLOCATION (shell_generic_container_allocation_get_type ())
|
|
|
|
GType shell_generic_container_allocation_get_type (void);
|
|
|
|
|
|
|
|
typedef struct _ShellGenericContainer ShellGenericContainer;
|
|
|
|
typedef struct _ShellGenericContainerClass ShellGenericContainerClass;
|
|
|
|
|
|
|
|
typedef struct _ShellGenericContainerPrivate ShellGenericContainerPrivate;
|
|
|
|
|
|
|
|
struct _ShellGenericContainer
|
|
|
|
{
|
|
|
|
ClutterGroup parent;
|
|
|
|
|
|
|
|
ShellGenericContainerPrivate *priv;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _ShellGenericContainerClass
|
|
|
|
{
|
|
|
|
ClutterGroupClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType shell_generic_container_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2009-11-26 12:13:16 -05:00
|
|
|
void shell_generic_container_set_skip_paint (ShellGenericContainer *container,
|
|
|
|
ClutterActor *actor,
|
|
|
|
gboolean skip);
|
|
|
|
|
2009-08-04 16:08:59 -04:00
|
|
|
#endif /* __SHELL_GENERIC_CONTAINER_H__ */
|