forked from AuroraMiddleware/gtk
e7b2c530c5
Layout managers may need to get access to data attached to the root of a scene graph.
17 lines
465 B
C
17 lines
465 B
C
#pragma once
|
|
|
|
#include "gtklayoutmanager.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
void gtk_layout_manager_set_widget (GtkLayoutManager *manager,
|
|
GtkWidget *widget);
|
|
|
|
void gtk_layout_manager_remove_layout_child (GtkLayoutManager *manager,
|
|
GtkWidget *widget);
|
|
|
|
void gtk_layout_manager_set_root (GtkLayoutManager *manager,
|
|
GtkRoot *root);
|
|
|
|
G_END_DECLS
|