You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/prompt_toolkit/widgets/__init__.py

45 lines
1.1 KiB

"""
Collection of reusable components for building full screen applications.
These are higher level abstractions on top of the `prompt_toolkit.layout`
module.
Most of these widgets implement the ``__pt_container__`` method, which makes it
possible to embed these in the layout like any other container.
"""
from __future__ import unicode_literals
from .base import TextArea, Label, Button, Frame, Shadow, Box, VerticalLine, HorizontalLine, RadioList, Checkbox, ProgressBar
from .dialogs import Dialog
from .menus import MenuContainer, MenuItem
from .toolbars import ArgToolbar, CompletionsToolbar, FormattedTextToolbar, SearchToolbar, SystemToolbar, ValidationToolbar
__all__ = [
# Base.
'TextArea',
'Label',
'Button',
'Frame',
'Shadow',
'Box',
'VerticalLine',
'HorizontalLine',
'RadioList',
'Checkbox',
'ProgressBar',
# Toolbars.
'ArgToolbar',
'CompletionsToolbar',
'FormattedTextToolbar',
'SearchToolbar',
'SystemToolbar',
'ValidationToolbar',
# Dialogs.
'Dialog',
# Menus.
'MenuContainer',
'MenuItem',
]