Module albow.layout.Row
Source code
from typing import List
from albow.core.ui.Widget import Widget
from albow.layout.RowOrColumn import RowOrColumn
class Row(RowOrColumn):
"""
A Row is a container widget that arranges its contents in a horizontal row. In an OpenGL window,
it may contain 3D subwidgets.
.. Note::
The layout is only performed when the widget is initially created; it is not updated if you add or remove
widgets later or change their sizes.
"""
def __init__(self, items: List[Widget], width=None, **kwds):
"""
Args:
items: The widgets to add as items
width: If a width is specified, then expand may be a widget or an index into the items, and the
specified widget has its width adjusted to fill the remaining space. Otherwise, the initial size
of the Row is calculated from its contents.
**kwds:
"""
self.d = (1, 0)
self.minor_axis = 'h'
self.axis = 'h'
self.longways = 'width'
self.crossways = 'height'
self.align_map = {
't': (0, 'topleft', 'topright'),
'c': (1, 'midleft', 'midright'),
'b': (2, 'bottomleft', 'bottomright'),
}
super().__init__(width, items, kwds)
Classes
class Row (items, width=None, **kwds)
-
A Row is a container widget that arranges its contents in a horizontal row. In an OpenGL window, it may contain 3D subwidgets.
Note
The layout is only performed when the widget is initially created; it is not updated if you add or remove widgets later or change their sizes.
Args
items
- The widgets to add as items
width
- If a width is specified, then expand may be a widget or an index into the items, and the
specified widget has its width adjusted to fill the remaining space. Otherwise, the initial size of the Row is calculated from its contents.
**kwds:
Source code
class Row(RowOrColumn): """ A Row is a container widget that arranges its contents in a horizontal row. In an OpenGL window, it may contain 3D subwidgets. .. Note:: The layout is only performed when the widget is initially created; it is not updated if you add or remove widgets later or change their sizes. """ def __init__(self, items: List[Widget], width=None, **kwds): """ Args: items: The widgets to add as items width: If a width is specified, then expand may be a widget or an index into the items, and the specified widget has its width adjusted to fill the remaining space. Otherwise, the initial size of the Row is calculated from its contents. **kwds: """ self.d = (1, 0) self.minor_axis = 'h' self.axis = 'h' self.longways = 'width' self.crossways = 'height' self.align_map = { 't': (0, 'topleft', 'topright'), 'c': (1, 'midleft', 'midright'), 'b': (2, 'bottomleft', 'bottomright'), } super().__init__(width, items, kwds)
Ancestors
Inherited members
RowOrColumn
:add
add_anchor
add_centered
anchor
attention_lost
augment_mouse_event
bg_color
bg_image
border_color
border_width
call_handler
call_parent_handler
defer_drawing
dismiss
draw
draw_over
fg_color
focus
focus_switch
font
get_cursor
get_focus
get_margin_rect
get_root
get_top_widget
get_visible
global_to_local
has_focus
inherited
invalidate
is_gl_container
key_down
key_up
local_to_global
margin
menu_bar
parent
parent_resized
present
rect
relative_mode
remove
remove_anchor
resized
scale_bg
sel_color
set_parent
set_size_for_text
tab_stop
visible