forked from AuroraMiddleware/gtk
3389ddf6fc
The GtkWidget::parent-set signal was removed in ff6cd8f7
.
Instead of removing GtkLayoutChild instances associated to a widget
using notifications when the widget's parent changes, we can have
gtk_widget_unparent() call a method on GtkLayoutManager to remove any
eventual GtkLayoutChild instances associated to the widget.
14 lines
344 B
C
14 lines
344 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);
|
|
|
|
G_END_DECLS
|