![]() |
![]() |
![]() |
![]() |
ShellGenericContainer is mainly a workaround for the current lack of GObject subclassing + vfunc overrides in gjs. We implement the container interface, but proxy the virtual functions into signals, which gjs can catch.
ShellGenericContainer is an StWidget, and automatically takes its borders and padding into account during size request and allocation.
guint
shell_generic_container_get_n_skip_paint
(ShellGenericContainer *self
);
gboolean shell_generic_container_get_skip_paint (ShellGenericContainer *self
,ClutterActor *child
);
Gets whether or not actor
is skipped when painting.
void shell_generic_container_set_skip_paint (ShellGenericContainer *self
,ClutterActor *child
,gboolean skip
);
Set whether or not we should skip painting actor
. Workaround for
lack of gjs ability to override _paint vfunc.