mirror of
https://github.com/brl/mutter.git
synced 2025-06-13 16:59:30 +00:00
[layout] Initial implementation of FlowLayout
FlowLayout is a layout manager that arranges its children in a reflowing line; the orientation controls the major axis for the layout: horizontal, for reflow on the Y axis, and vertical, for reflow on the X axis.
This commit is contained in:
@ -81,6 +81,7 @@
|
||||
|
||||
<xi:include href="xml/clutter-fixed-layout.xml"/>
|
||||
<xi:include href="xml/clutter-bin-layout.xml"/>
|
||||
<xi:include href="xml/clutter-flow-layout.xml"/>
|
||||
</chapter>
|
||||
|
||||
</part>
|
||||
|
@ -1847,3 +1847,37 @@ CLUTTER_LAYOUT_META_GET_CLASS
|
||||
<SUBSECTION Private>
|
||||
clutter_layout_meta_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>clutter-flow-layout</FILE>
|
||||
<TITLE>ClutterFlowLayout</TITLE>
|
||||
ClutterFlowOrientation
|
||||
ClutterFlowLayout
|
||||
ClutterFlowLayoutClass
|
||||
clutter_flow_layout_new
|
||||
clutter_flow_layout_set_orientation
|
||||
clutter_flow_layout_get_orientation
|
||||
clutter_flow_layout_set_wrap
|
||||
clutter_flow_layout_get_wrap
|
||||
|
||||
<SUBSECTION>
|
||||
clutter_flow_layout_set_column_spacing
|
||||
clutter_flow_layout_get_column_spacing
|
||||
clutter_flow_layout_set_row_spacing
|
||||
clutter_flow_layout_get_row_spacing
|
||||
clutter_flow_layout_set_column_width
|
||||
clutter_flow_layout_get_column_width
|
||||
clutter_flow_layout_set_row_height
|
||||
clutter_flow_layout_get_row_height
|
||||
|
||||
<SUBSECTION Standard>
|
||||
CLUTTER_TYPE_FLOW_LAYOUT
|
||||
CLUTTER_FLOW_LAYOUT
|
||||
CLUTTER_FLOW_LAYOUT_CLASS
|
||||
CLUTTER_IS_FLOW_LAYOUT
|
||||
CLUTTER_IS_FLOW_LAYOUT_CLASS
|
||||
CLUTTER_FLOW_LAYOUT_GET_CLASS
|
||||
<SUBSECTION Private>
|
||||
ClutterFlowLayoutPrivate
|
||||
clutter_flow_layout_get_type
|
||||
</SECTION>
|
||||
|
@ -38,3 +38,4 @@ clutter_layout_manager_get_type
|
||||
clutter_layout_meta_get_type
|
||||
clutter_fixed_layout_get_type
|
||||
clutter_bin_layout_get_type
|
||||
clutter_flow_layout_get_type
|
||||
|
Reference in New Issue
Block a user