
Ideally we'd be able to override _paint, but given that we can't at the moment, this method gives a way to implement containers which don't happen to paint all of their children. https://bugzilla.gnome.org/show_bug.cgi?id=603522
50 lines
1.9 KiB
C
50 lines
1.9 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
#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;
|
|
|
|
void shell_generic_container_set_skip_paint (ShellGenericContainer *container,
|
|
ClutterActor *actor,
|
|
gboolean skip);
|
|
|
|
#endif /* __SHELL_GENERIC_CONTAINER_H__ */
|