subiquity/subiquitycore/ui/anchors.py

80 lines
2.4 KiB
Python
Raw Normal View History

# Copyright 2015 Canonical, Ltd.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from urwid import WidgetWrap, Pile, Text, ProgressBar
from subiquitycore.ui.utils import Padding, Color
from subiquitycore.ui.lists import SimpleList
class Header(WidgetWrap):
""" Header Widget
This widget uses the style key `frame_header`
:param str title: Title of Header
:returns: Header()
"""
def __init__(self, title=None, excerpt=None):
widgets = [Text("")]
if title is not None:
widgets.append(
2017-09-07 10:47:56 +00:00
Padding.center_79(Text(title)))
widgets.append(Text(""))
2017-10-20 01:06:57 +00:00
widgets = [Color.frame_header(Pile(widgets))]
if excerpt is not None:
2017-10-20 01:06:57 +00:00
widgets.extend([
2017-09-07 10:47:56 +00:00
Text(""),
Padding.center_79(Text(excerpt)),
2017-10-20 01:06:57 +00:00
])
super().__init__(Pile(widgets))
class StepsProgressBar(ProgressBar):
def get_text(self):
return "{} / {}".format(self.current, self.done)
class Footer(WidgetWrap):
""" Footer widget
Style key: `frame_footer`
"""
def __init__(self, message, current, complete):
if isinstance(message, str):
message_widget = Padding.center_79(Text(message))
else:
message_widget = Padding.center_79(message)
progress_bar = Padding.center_60(
StepsProgressBar(normal='progress_incomplete',
complete='progress_complete',
current=current, done=complete))
2017-01-13 02:08:17 +00:00
status = [
progress_bar,
Padding.line_break(""),
2017-01-13 02:08:17 +00:00
message_widget,
]
2017-09-07 10:47:56 +00:00
super().__init__(Color.frame_footer(Pile(status)))
class Body(WidgetWrap):
""" Body widget
"""
def __init__(self):
2017-01-13 02:08:17 +00:00
super().__init__(SimpleList([Text("")]))