4c22f122e1
Layout properties work similarly to child properties, with the added headache that they require the 3-tuple: ( layout manager, container, actor ) to be valid in order to be inspected, parsed and applied. This means using the newly added back-pointer from the container to the layout manager and then rejigging a bit how the ScriptParser handles the unresolved properties. Similarly to the child properties, which use the "child::" prefix, the layout manager properties use the "layout::" prefix and are defined with the child of a container holding a layout manager.
26 lines
557 B
Makefile
26 lines
557 B
Makefile
NULL =
|
|
|
|
json_files = \
|
|
test-script-animation.json \
|
|
test-script-child.json \
|
|
test-script-implicit-alpha.json \
|
|
test-script.json \
|
|
test-script-named-object.json \
|
|
test-script-object-property.json \
|
|
test-script-single.json \
|
|
test-script-model.json \
|
|
test-animator-1.json \
|
|
test-animator-2.json \
|
|
test-animator-3.json \
|
|
test-state-1.json \
|
|
test-script-layout-property.json \
|
|
$(NULL)
|
|
|
|
png_files = \
|
|
redhand.png \
|
|
redhand_alpha.png \
|
|
light0.png \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = $(json_files) $(png_files) clutter-1.0.suppressions
|