Created
May 19, 2012 22:08
-
-
Save pazz/2732548 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| # | |
| # Urwid tour. It slices, it dices.. | |
| # Copyright (C) 2004-2011 Ian Ward | |
| # | |
| # This library is free software; you can redistribute it and/or | |
| # modify it under the terms of the GNU Lesser General Public | |
| # License as published by the Free Software Foundation; either | |
| # version 2.1 of the License, or (at your option) any later version. | |
| # | |
| # This library 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 | |
| # Lesser General Public License for more details. | |
| # | |
| # You should have received a copy of the GNU Lesser General Public | |
| # License along with this library; if not, write to the Free Software | |
| # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| # | |
| # Urwid web site: http://excess.org/urwid/ | |
| """ | |
| Urwid tour. Shows many of the standard widget types and features. | |
| """ | |
| import urwid | |
| import urwid.raw_display | |
| import urwid.web_display | |
| def main(): | |
| text_header = (u"Welcome to the urwid tour! " | |
| u"UP / DOWN / PAGE UP / PAGE DOWN scroll. F8 exits.") | |
| text_intro = [('important', u"Text"), | |
| u" widgets are the most common in " | |
| u"any urwid program. This Text widget was created " | |
| u"without setting the wrap or align mode, so it " | |
| u"defaults to left alignment with wrapping on space " | |
| u"characters. ", | |
| ('important', u"Change the window width"), | |
| u" to see how the widgets on this page react. " | |
| u"This Text widget is wrapped with a ", | |
| ('important', u"Padding"), | |
| u" widget to keep it indented on the left and right."] | |
| text_right = (u"This Text widget is right aligned. Wrapped " | |
| u"words stay to the right as well. ") | |
| text_center = u"This one is center aligned." | |
| text_clip = (u"Text widgets may be clipped instead of wrapped.\n" | |
| u"Extra text is discarded instead of wrapped to the next line. " | |
| u"65-> 70-> 75-> 80-> 85-> 90-> 95-> 100>\n" | |
| u"Newlines embedded in the string are still respected.") | |
| text_right_clip = (u"This is a right aligned and clipped Text widget.\n" | |
| u"<100 <-95 <-90 <-85 <-80 <-75 <-70 <-65 " | |
| u"Text will be cut off at the left of this widget.") | |
| text_center_clip = (u"Center aligned and clipped widgets will have " | |
| u"text cut off both sides.") | |
| text_any = (u"The 'any' wrap mode will wrap on any character. This " | |
| u"mode will not collapse space characters at the end of the " | |
| u"line but it still honors embedded newline characters.\n" | |
| u"Like this one.") | |
| text_padding = (u"Padding widgets have many options. This " | |
| u"is a standard Text widget wrapped with a Padding widget " | |
| u"with the alignment set to relative 20% and with its width " | |
| u"fixed at 40.") | |
| text_divider = [u"The ", ('important', u"Divider"), | |
| u" widget repeats the same character across the whole line. " | |
| u"It can also add blank lines above and below."] | |
| text_edit = [u"The ", ('important', u"Edit"), | |
| u" widget is a simple text editing widget. It supports cursor " | |
| u"movement and tries to maintain the current column when focus " | |
| u"moves to another edit widget. It wraps and aligns the same " | |
| u"way as Text widgets." ] | |
| text_edit_cap1 = ('editcp', u"This is a caption. Edit here: ") | |
| text_edit_text1 = u"editable stuff" | |
| text_edit_cap2 = ('editcp', u"This one supports newlines: ") | |
| text_edit_text2 = (u"line one starts them all\n" | |
| u"== line 2 == with some more text to edit.. words.. whee..\n" | |
| u"LINE III, the line to end lines one and two, unless you " | |
| u"change something.") | |
| text_edit_cap3 = ('editcp', u"This one is clipped, try " | |
| u"editing past the edge: ") | |
| text_edit_text3 = u"add some text here -> -> -> ...." | |
| text_edit_alignments = u"Different Alignments:" | |
| text_edit_left = u"left aligned (default)" | |
| text_edit_center = u"center aligned" | |
| text_edit_right = u"right aligned" | |
| text_intedit = ('editcp', [('important', u"IntEdit"), | |
| u" allows only numbers: "]) | |
| text_edit_padding = ('editcp', u"Edit widget within a Padding widget ") | |
| text_columns1 = [('important', u"Columns"), | |
| u" are used to share horizontal screen space. " | |
| u"This one splits the space into two parts with " | |
| u"three characters between each column. The " | |
| u"contents of each column is a single widget."] | |
| text_columns2 = [u"When you need to put more than one " | |
| u"widget into a column you can use a ",('important', | |
| u"Pile"), u" to combine two or more widgets."] | |
| text_col_columns = u"Columns may be placed inside other columns." | |
| text_col_21 = u"Col 2.1" | |
| text_col_22 = u"Col 2.2" | |
| text_col_23 = u"Col 2.3" | |
| text_column_widths = (u"Columns may also have uneven relative " | |
| u"weights or fixed widths. Use a minimum width so that " | |
| u"columns don't become too small.") | |
| text_weight = u"Weight %d" | |
| text_fixed_9 = u"<Fixed 9>" # should be 9 columns wide | |
| text_fixed_14 = u"<--Fixed 14-->" # should be 14 columns wide | |
| text_edit_col_cap1 = ('editcp', u"Edit widget within Columns") | |
| text_edit_col_text1 = u"here's\nsome\ninfo" | |
| text_edit_col_cap2 = ('editcp', u"and within Pile ") | |
| text_edit_col_text2 = u"more" | |
| text_edit_col_cap3 = ('editcp', u"another ") | |
| text_edit_col_text3 = u"still more" | |
| text_gridflow = [u"A ",('important', u"GridFlow"), u" widget " | |
| u"may be used to display a list of flow widgets with equal " | |
| u"widths. Widgets that don't fit on the first line will " | |
| u"flow to the next. This is useful for small widgets that " | |
| u"you want to keep together such as ", ('important', u"Button"), | |
| u", ",('important', u"CheckBox"), u" and ", | |
| ('important', u"RadioButton"), u" widgets." ] | |
| text_button_list = [u"Yes", u"No", u"Perhaps", u"Certainly", u"Partially", | |
| u"Tuesdays Only", u"Help"] | |
| text_cb_list = [u"Wax", u"Wash", u"Buff", u"Clear Coat", u"Dry", | |
| u"Racing Stripe"] | |
| text_rb_list = [u"Morning", u"Afternoon", u"Evening", u"Weekend"] | |
| text_listbox = [u"All these widgets have been diplayed " | |
| u"with the help of a ", ('important', u"ListBox"), u" widget. " | |
| u"ListBox widgets handle scrolling and changing focus. A ", | |
| ('important', u"Frame"), u" widget is used to keep the " | |
| u"instructions at the top of the screen."] | |
| def button_press(button): | |
| frame.footer = urwid.AttrWrap(urwid.Text( | |
| [u"Pressed: ", button.get_label()]), 'header') | |
| radio_button_group = [] | |
| blank = urwid.Divider() | |
| listbox_content = [ | |
| urwid.Columns([ | |
| ('flow', urwid.Text(text_col_columns)), | |
| ('flow', urwid.Columns([ | |
| urwid.Text(text_col_21), | |
| urwid.Text(text_col_22), | |
| urwid.Text(text_col_23), | |
| ], 1)), | |
| ], 2), | |
| ] | |
| listbox = urwid.ListBox(listbox_content) | |
| frame = urwid.Frame(listbox) | |
| # use appropriate Screen class | |
| if urwid.web_display.is_web_request(): | |
| screen = urwid.web_display.Screen() | |
| else: | |
| screen = urwid.raw_display.Screen() | |
| def unhandled(key): | |
| if key == 'f8': | |
| raise urwid.ExitMainLoop() | |
| urwid.MainLoop(frame, | |
| unhandled_input=unhandled).run() | |
| def setup(): | |
| urwid.web_display.set_preferences("Urwid Tour") | |
| # try to handle short web requests quickly | |
| if urwid.web_display.handle_short_request(): | |
| return | |
| main() | |
| if '__main__'==__name__ or urwid.web_display.is_web_request(): | |
| setup() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment