doc: revisions to uix/boxlayout.py

This commit is contained in:
Richard Larkin 2013-09-07 22:42:52 +02:00
parent 719ef95d42
commit 4d35e9a8cb
1 changed files with 10 additions and 10 deletions

View File

@ -32,10 +32,10 @@ example, we use 10 pixel spacing between children; the first button covers
layout.add_widget(btn1)
layout.add_widget(btn2)
Position hint are also partially working, depending the orientation:
Position hints are partially working, depending on the orientation:
* If the orientation is `vertical`: `x`, `right` and `center_x` will be used
* If the orientation is `horizontal`: `y`, `top` and `center_y` will be used
* If the orientation is `vertical`: `x`, `right` and `center_x` will be used.
* If the orientation is `horizontal`: `y`, `top` and `center_y` will be used.
You can check the `examples/widgets/boxlayout_poshint.py` for a live example.
@ -50,7 +50,7 @@ You can check the `examples/widgets/boxlayout_poshint.py` for a live example.
btn3 = Button(text='World', size_hint=(.5, 1))
The first button will be 200px wide as specified, the second and third
will be 300px each, e.g., (800-200)*0.5
will be 300px each, e.g. (800-200) * 0.5
.. versionchanged:: 1.4.1
@ -71,8 +71,8 @@ class BoxLayout(Layout):
spacing = NumericProperty(0)
'''Spacing between children, in pixels.
:data:`spacing` is a :class:`~kivy.properties.NumericProperty`, default to
0.
:data:`spacing` is a :class:`~kivy.properties.NumericProperty` and defaults
to 0.
'''
padding = VariableListProperty([0, 0, 0, 0])
@ -86,16 +86,16 @@ class BoxLayout(Layout):
Replaced NumericProperty with VariableListProperty.
:data:`padding` is a :class:`~kivy.properties.VariableListProperty`, default to
[0, 0, 0, 0].
:data:`padding` is a :class:`~kivy.properties.VariableListProperty` and
defaults to [0, 0, 0, 0].
'''
orientation = OptionProperty('horizontal', options=(
'horizontal', 'vertical'))
'''Orientation of the layout.
:data:`orientation` is an :class:`~kivy.properties.OptionProperty`, default
to 'horizontal'. Can be 'vertical' or 'horizontal'.
:data:`orientation` is an :class:`~kivy.properties.OptionProperty` and
defaults to 'horizontal'. Can be 'vertical' or 'horizontal'.
'''
def __init__(self, **kwargs):