2009-10-27 15:27:45 +00:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
2009-08-04 20:08:59 +00:00
|
|
|
#ifndef __SHELL_GENERIC_CONTAINER_H__
|
|
|
|
#define __SHELL_GENERIC_CONTAINER_H__
|
|
|
|
|
2010-03-02 20:21:22 +00:00
|
|
|
#include "st.h"
|
2009-08-04 20:08:59 +00:00
|
|
|
|
2015-09-24 18:07:44 +00:00
|
|
|
#define SHELL_TYPE_GENERIC_CONTAINER (shell_generic_container_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (ShellGenericContainer, shell_generic_container,
|
|
|
|
SHELL, GENERIC_CONTAINER, StWidget)
|
2009-08-04 20:08:59 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2010-04-29 15:15:22 +00:00
|
|
|
guint shell_generic_container_get_n_skip_paint (ShellGenericContainer *self);
|
2010-02-22 21:22:38 +00:00
|
|
|
|
2010-04-29 15:15:22 +00:00
|
|
|
gboolean shell_generic_container_get_skip_paint (ShellGenericContainer *self,
|
2010-09-15 00:56:34 +00:00
|
|
|
ClutterActor *child);
|
2010-04-29 15:15:22 +00:00
|
|
|
void shell_generic_container_set_skip_paint (ShellGenericContainer *self,
|
2010-09-15 00:56:34 +00:00
|
|
|
ClutterActor *child,
|
2010-04-29 15:15:22 +00:00
|
|
|
gboolean skip);
|
2009-11-26 17:13:16 +00:00
|
|
|
|
2009-08-04 20:08:59 +00:00
|
|
|
#endif /* __SHELL_GENERIC_CONTAINER_H__ */
|