layout: Add LayoutManager::get_child_meta_type()
In order to inspect a LayoutManager using LayoutMeta we need a virtual function that returns the GType of the LayoutMeta used.
This commit is contained in:
parent
95d78acb4c
commit
e6dff59b27
@ -166,6 +166,12 @@ layout_manager_real_create_child_meta (ClutterLayoutManager *manager,
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static GType
|
||||||
|
layout_manager_real_get_child_meta_type (ClutterLayoutManager *manager)
|
||||||
|
{
|
||||||
|
return G_TYPE_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
clutter_layout_manager_class_init (ClutterLayoutManagerClass *klass)
|
clutter_layout_manager_class_init (ClutterLayoutManagerClass *klass)
|
||||||
{
|
{
|
||||||
@ -176,6 +182,7 @@ clutter_layout_manager_class_init (ClutterLayoutManagerClass *klass)
|
|||||||
klass->get_preferred_height = layout_manager_real_get_preferred_height;
|
klass->get_preferred_height = layout_manager_real_get_preferred_height;
|
||||||
klass->allocate = layout_manager_real_allocate;
|
klass->allocate = layout_manager_real_allocate;
|
||||||
klass->create_child_meta = layout_manager_real_create_child_meta;
|
klass->create_child_meta = layout_manager_real_create_child_meta;
|
||||||
|
klass->get_child_meta_type = layout_manager_real_get_child_meta_type;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ClutterLayoutManager::layout-changed:
|
* ClutterLayoutManager::layout-changed:
|
||||||
|
@ -77,6 +77,8 @@ struct _ClutterLayoutManager
|
|||||||
* on the #ClutterContainer using the layout manager. The implementation
|
* on the #ClutterContainer using the layout manager. The implementation
|
||||||
* should not take a reference on the container, but just take a weak
|
* should not take a reference on the container, but just take a weak
|
||||||
* reference, to avoid potential leaks due to reference cycles
|
* reference, to avoid potential leaks due to reference cycles
|
||||||
|
* @get_child_meta_type: virtual function; override to return the #GType
|
||||||
|
* of the #ClutterLayoutMeta sub-class used by the #ClutterLayoutManager
|
||||||
* @create_child_meta: virtual function; override to create a
|
* @create_child_meta: virtual function; override to create a
|
||||||
* #ClutterChildMeta instance associated to a #ClutterContainer and a
|
* #ClutterChildMeta instance associated to a #ClutterContainer and a
|
||||||
* child #ClutterActor, used to maintain layout manager specific properties
|
* child #ClutterActor, used to maintain layout manager specific properties
|
||||||
@ -112,6 +114,7 @@ struct _ClutterLayoutManagerClass
|
|||||||
void (* set_container) (ClutterLayoutManager *manager,
|
void (* set_container) (ClutterLayoutManager *manager,
|
||||||
ClutterContainer *container);
|
ClutterContainer *container);
|
||||||
|
|
||||||
|
GType (* get_child_meta_type) (ClutterLayoutManager *manager);
|
||||||
ClutterLayoutMeta *(* create_child_meta) (ClutterLayoutManager *manager,
|
ClutterLayoutMeta *(* create_child_meta) (ClutterLayoutManager *manager,
|
||||||
ClutterContainer *container,
|
ClutterContainer *container,
|
||||||
ClutterActor *actor);
|
ClutterActor *actor);
|
||||||
|
Loading…
Reference in New Issue
Block a user