Sophie

Sophie

distrib > Mandriva > 2010.2 > i586 > media > contrib-backports > by-pkgid > c93db43b3e0e63e53aa645da566a833a > files > 91

python-urwid-1.0.1-1mdv2010.2.i586.rpm

<html>
<head>
<title>Urwid 1.0.1 Tutorial</title>
<style type="text/css">
    h1 { text-align: center; }
    h2 { margin: 40px 0 0 0; padding: 10px;  background: #6d96e8;}
    h3 { margin: 0 0 3px 0; padding: 12px 6px 6px 6px; background: #efef96;}
    .code { background: #dddddd; padding: 5px; margin: 7px 20px; }
    .l1 { margin: 12px 0 0 0; }
    .l2 { margin-left: 20px; }
    .shot { padding: 5px 20px 5px 0px; float: left; }
    .back { font-size:small; padding-left: 20px; }
</style>
<body>
<a name="top"></a>
<h1>Urwid 1.0.1 Tutorial</h1>

<div style="text-align: center;">
<a href="http://excess.org/urwid/">Urwid Home Page</a> /
<a href="http://excess.org/urwid/examples.html">Example Screenshots</a> /
<a href="http://excess.org/urwid/utf8examples.html">UTF-8 Screenshots</a> /
Tutorial /
<a href="reference.html">Reference</a>
</div>
<br>

<table width="100%"><tr><td width="50%" valign="top">

<div class="l1">1. Hello World Example</div>

<div class="l2"><a href="#min">1.1. Minimal Urwid Application</a></div>

<div class="l2"><a href="#input">1.2. Handling Input</a></div>

<div class="l2"><a href="#attr">1.3. AttrMap Widgets and Text Attributes</a></div>

<div class="l2"><a href="#highcolors">1.4. High Color Modes</a></div>

<div class="l1">2. Conversation Example</div>

<div class="l2"><a href="#edit">2.1. Edit Widgets</a></div>

<div class="l2"><a href="#frlb">2.2. Events and ListBox Widgets</a></div>

<div class="l2"><a href="#lbcont">2.3. Modifying ListBox Content</a></div>

<div class="l1">3. Zen of ListBox</div>

<div class="l2"><a href="#lbscr">3.1. ListBox Focus and Scrolling</a></div>

<div class="l2"><a href="#lbdyn">3.2. Dynamic ListBox with List Walker</a></div>

<div class="l2"><a href="#lbfocus">3.3. Setting the Focus</a></div>

</td><td width="50%" valign="top">

<div class="l1">4. Combining Widgets</div>

<div class="l2"><a href="#pile">4.1. Piling Widgets</a></div>

<div class="l2"><a href="#cols">4.2. Dividing into Columns</a></div>

<div class="l2"><a href="#grid">4.3. GridFlow Arrangement</a></div>

<div class="l2"><a href="#overlay">4.4. Overlay Widgets</a></div>

<div class="l1">5. Creating Custom Widgets</div>

<div class="l2"><a href="#wmod">5.1. Modifying Existing Widgets</a></div>

<div class="l2"><a href="#wanat">5.2. Anatomy of a Widget</a></div>

<div class="l2"><a href="#wsel">5.3. Creating Selectable Widgets</a></div>

<div class="l2"><a href="#wcur">5.4. Widgets Displaying the Cursor</a></div>

</td></tr></table>

<p>
The programs in this tutorial are available in your Urwid distribution. 
Run the command "./docgen_tutorial.py -s" to output the example scripts.
</p>


<h2>1. Hello World Example</h2>

<h3><a name="min">1.1. Minimal Urwid Application</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

This program displays the string "Hello World" in the top left corner
of the screen and will run until interrupted with CTRL+C (^C).

<pre class="code">import urwid

txt = urwid.Text(u&quot;Hello World&quot;)
fill = urwid.Filler(txt, 'top')
loop = urwid.MainLoop(fill)
loop.run()</pre>

<ul>
<li>The <a href="reference.html#Text">Text</a>
widget handles formatting blocks of text, wrapping to the next line when
necessary.  Widgets like this are called "flow widgets" because their
sizing can have a number of columns given, in this case the full screen
width, then they will flow to fill as many rows as necessary.
<li>The <a href="reference.html#Filler">Filler</a> is widget fills in blank
lines above or below flow widgets so that they can be displayed in a fixed
number of rows.  This Filler will align our Text to the top of the screen,
filling all the rows below with blank lines.  Widgets which are given both
the number of columns and number of rows they must be displayed in are called
"box widgets".  The "topmost" widget displayed on the screen must be 
a box widget.
<li>The <a href="reference.html#MainLoop">MainLoop</a> class handles displaying
our widgets as well as input from the user.  In this case our widgets can't
handle the input so we need to interrupt the program to exit with ^C.</ul>

<div align="center"><pre><span style="color:#000000;background:#e5e5e5">Hello World          </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
</pre></div>

<br clear="left">
<br>

<h3><a name="input">1.2. Handling Input</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

This program initially displays the string "Hello World", then it displays
each key pressed, exiting when the user presses Q.

<pre class="code">import urwid

txt = urwid.Text(u&quot;Hello World&quot;)
fill = urwid.Filler(txt, 'top')

def show_or_exit(input):
    if input in ('q', 'Q'):
        raise urwid.ExitMainLoop()
    txt.set_text(repr(input))

loop = urwid.MainLoop(fill, unhandled_input=show_or_exit)
loop.run()</pre>

<ul>
<li>The MainLoop class has an optional function parameter unhandled_input
This function will be called once for each keypress that is not handled
by the widgets being displayed.
<li>None of the widgets being displayed here handle input, so every key
the user presses will be passed to the show_or_exit function.
<li>The ExitMainLoop exception is used to 
exit cleanly from the MainLoop.run() function when the user presses Q.  All
other input is displayed by replacing the current Text widget's content.
</ul>

<div class="shot"><pre><span style="color:#000000;background:#e5e5e5">Hello World </span>
<span style="color:#000000;background:#e5e5e5">            </span>
<span style="color:#000000;background:#e5e5e5">            </span>
</pre></div>
<div class="shot"><pre><span style="color:#000000;background:#e5e5e5">'enter'     </span>
<span style="color:#000000;background:#e5e5e5">            </span>
<span style="color:#000000;background:#e5e5e5">            </span>
</pre></div>
<div class="shot"><pre><span style="color:#000000;background:#e5e5e5">'N'         </span>
<span style="color:#000000;background:#e5e5e5">            </span>
<span style="color:#000000;background:#e5e5e5">            </span>
</pre></div>
<div class="shot"><pre><span style="color:#000000;background:#e5e5e5">'O'         </span>
<span style="color:#000000;background:#e5e5e5">            </span>
<span style="color:#000000;background:#e5e5e5">            </span>
</pre></div>
<div class="shot"><pre><span style="color:#000000;background:#e5e5e5">'P'         </span>
<span style="color:#000000;background:#e5e5e5">            </span>
<span style="color:#000000;background:#e5e5e5">            </span>
</pre></div>

<br clear="left">
<br>

<h3><a name="attr">1.3. AttrMap Widgets and Text Attributes</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

This program displays the string "Hello World" in the center of the screen.
It uses different attributes for the text, the space on either side
of the text and the space above and below the text.  It waits for 
a keypress before exiting.

<pre class="code">import urwid

palette = [
    ('banner', 'black', 'light gray', 'standout,underline'),
    ('streak', 'black', 'dark red', 'standout'),
    ('bg', 'black', 'dark blue'),]

txt = urwid.Text(('banner', u&quot; Hello World &quot;), align='center')
map1 = urwid.AttrMap(txt, 'streak')
fill = urwid.Filler(map1)
map2 = urwid.AttrMap(fill, 'bg')

def exit_on_q(input):
    if input in ('q', 'Q'):
        raise urwid.ExitMainLoop()

loop = urwid.MainLoop(map2, palette, unhandled_input=exit_on_q)
loop.run()</pre>

<ul>
<li>Attributes are defined as part of a palette.  Valid foreground,
background and setting values are documented in the
<a href="reference.html#AttrSpec">AttrSpec class</a>.
A palette is a list of tuples containing:
  <ol>
  <li>Name of the attribute, typically a string
  <li>Foreground color and settings for 16-color (normal) mode
  <li>Background color for normal mode
  <li>Settings for monochrome mode (optional)
  <li>Foreground color and settings for 88 and 256-color modes (optional, see next example)
  <li>Background color for 88 and 256-color modes (optional)
  </ol>
<li>The palette is passed to MainLoop to make it available to our program
<li>A <a href="reference.html#Text">Text</a> widget is created containing
the string " Hello World " with attribute "banner". The attributes of text
in a Text widget is set by using a (attribute, text) tuple instead of a
simple text string.  Text attributes will flow with the text, and
multiple attributes may be specified by combining tuples into a
list.
<li>An <a href="reference.html#AttrMap">AttrMap</a> widget is created to
wrap the text widget with attribute "streak". AttrMap widgets allow you
to map any attribute to any other attribute, but by default they will 
set the attribute of everything that does not already have an
attribute. In this case the text has an attribute, so only 
the areas around the text used for alignment will be have the new attribute.
<li>A second AttrMap widget is created to
wrap the filler widget with attribute "bg".
</ul>

When this program is run you can now clearly
see the separation of the text, the alignment around the text, and
the filler above and below the text.  This is how these widgets
react to being resized:

<div class="shot"><pre><span style="color:#000000;background:#0000ee">                     </span>
<span style="color:#000000;background:#0000ee">                     </span>
<span style="color:#000000;background:#0000ee">                     </span>
<span style="color:#000000;background:#cd0000">    </span><span style="color:#000000;background:#e5e5e5"> Hello World </span><span style="color:#000000;background:#cd0000">    </span>
<span style="color:#000000;background:#0000ee">                     </span>
<span style="color:#000000;background:#0000ee">                     </span>
<span style="color:#000000;background:#0000ee">                     </span>
</pre></div>
<div class="shot"><pre><span style="color:#000000;background:#0000ee">          </span>
<span style="color:#000000;background:#0000ee">          </span>
<span style="color:#000000;background:#0000ee">          </span>
<span style="color:#000000;background:#cd0000">  </span><span style="color:#000000;background:#e5e5e5"> Hello</span><span style="color:#000000;background:#cd0000">  </span>
<span style="color:#000000;background:#cd0000">  </span><span style="color:#000000;background:#e5e5e5">World </span><span style="color:#000000;background:#cd0000">  </span>
<span style="color:#000000;background:#0000ee">          </span>
<span style="color:#000000;background:#0000ee">          </span>
<span style="color:#000000;background:#0000ee">          </span>
<span style="color:#000000;background:#0000ee">          </span>
</pre></div>
<div class="shot"><pre><span style="color:#000000;background:#0000ee">                              </span>
<span style="color:#000000;background:#cd0000">         </span><span style="color:#000000;background:#e5e5e5"> Hello World </span><span style="color:#000000;background:#cd0000">        </span>
<span style="color:#000000;background:#0000ee">                              </span>
</pre></div>
<div class="shot"><pre><span style="color:#000000;background:#cd0000"> </span><span style="color:#000000;background:#e5e5e5"> Hello World </span><span style="color:#000000;background:#cd0000"> </span>
<span style="color:#000000;background:#0000ee">               </span>
</pre></div>

<br clear="left">
<br>

<h3><a name="highcolors">1.4. High Color Modes</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

This program displays the string "Hello World" in the center of the screen.
It uses a number of 256-color-mode background attributes to decorate the
text, and will work in any terminal that supports 256-color mode.
It will exit when Q is pressed.

<pre class="code">import urwid

palette = [
    ('banner', '', '', '', '#ffa', '#60d'),
    ('streak', '', '', '', 'g50', '#60a'),
    ('inside', '', '', '', 'g38', '#808'),
    ('outside', '', '', '', 'g27', '#a06'),
    ('bg', '', '', '', 'g7', '#d06'),]

txt = urwid.Text(('banner', u&quot; Hello World &quot;), align='center')
map1 = urwid.AttrMap(txt, 'streak')
pile = urwid.Pile([
    urwid.AttrMap(urwid.Divider(), 'outside'),
    urwid.AttrMap(urwid.Divider(), 'inside'),
    map1,
    urwid.AttrMap(urwid.Divider(), 'inside'),
    urwid.AttrMap(urwid.Divider(), 'outside')])
fill = urwid.Filler(pile)
map2 = urwid.AttrMap(fill, 'bg')

def exit_on_q(input):
    if input in ('q', 'Q'):
        raise urwid.ExitMainLoop()

loop = urwid.MainLoop(map2, palette, unhandled_input=exit_on_q)
loop.screen.set_terminal_properties(colors=256)
loop.run()</pre>

<ul>
<li>This palette only defines values for the high color foreground
and backgrounds, because only the high colors will be used.
A real application should define values for all the modes in their
palette. Valid foreground,
background and setting values are documented in the
<a href="reference.html#AttrSpec">AttrSpec class</a>.
<li><a href="reference.html#Divider">Divider</a> widgets are used to
create blank lines, colored with AttrMap.
<li>A <a href="reference.html#Pile">Pile</a> widget arranges the
Divider widgets above and below our text.
<li>Behind the scenes our MainLoop class has created a 
raw_display.Screen object for drawing the screen.
The program is put into 256-color mode by using the screen
object's
<a href="reference.html#Screen-set_terminal_properties"
>set_terminal_properties</a> method.  This method works only when 
using the default raw_display Screen class in our MainLoop.
</ul>

<div align="center"><pre><span style="color:#121212;background:#d7005f">                          </span>
<span style="color:#121212;background:#d7005f">                          </span>
<span style="color:#444444;background:#af005f">                          </span>
<span style="color:#626262;background:#870087">                          </span>
<span style="color:#808080;background:#5f00af">       </span><span style="color:#ffffaf;background:#5f00d7"> Hello World </span><span style="color:#808080;background:#5f00af">      </span>
<span style="color:#626262;background:#870087">                          </span>
<span style="color:#444444;background:#af005f">                          </span>
<span style="color:#121212;background:#d7005f">                          </span>
<span style="color:#121212;background:#d7005f">                          </span>
</pre></div>

<br clear="left">
<br>

<h2>2. Conversation Example</h2>

<h3><a name="edit">2.1. Edit Widgets</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

This program asks for your name then responds "Nice to meet you, (your name)."

<pre class="code">import urwid

ask = urwid.Edit(u&quot;What is your name?\n&quot;)
fill = urwid.Filler( ask )

def do_reply(input):
    if input != 'enter':
        return
    if fill.body == ask:
        fill.body = urwid.Text(u&quot;Nice to meet you,\n&quot;+
            ask.edit_text+&quot;.&quot;)
        return True
    else:
        raise urwid.ExitMainLoop()

loop = urwid.MainLoop(fill, unhandled_input=do_reply)
loop.run()</pre>

<ul>
<li>An <a href="reference.html#Edit">Edit</a> widget is created with the
caption "What is your name?". A newline at the end of the caption makes
the user input start on the next row.
<li>Most keystrokes will be handled by the Edit widget, allowing
the user to enter their name.
<li>The unhandled_input function will replace the Edit widget inside
the Filler widget with a reply when the user presses ENTER.
<li>When the user presses ENTER again the unhandled_input function
will cause the program to exit.
</ul>

The Edit widget has many capabilities. It lets you make corrections and move
the cursor around with the HOME, END and arrow keys. It is based on the Text
widget so it supports the same wrapping and alignment modes.

<div class="shot"><pre><span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">What is your name?   </span>
<span style="color:#e5e5e5;background:#000000"> </span><span style="color:#000000;background:#e5e5e5">                    </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
</pre></div>
<div class="shot"><pre><span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">What is your name?   </span>
<span style="color:#000000;background:#e5e5e5">Arthur, King of the  </span>
<span style="color:#000000;background:#e5e5e5">Britons</span><span style="color:#e5e5e5;background:#000000"> </span><span style="color:#000000;background:#e5e5e5">             </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
</pre></div>
<div class="shot"><pre><span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">Nice to meet you,    </span>
<span style="color:#000000;background:#e5e5e5">Arthur, King of the  </span>
<span style="color:#000000;background:#e5e5e5">Britons.             </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
</pre></div>

<br clear="left">
<br>

<h3><a name="frlb">2.2. Events and ListBox Widgets</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

This program asks for your name and responds "Nice to meet you, (your name)"
<i>while</i> you type your name.  ENTER exits.

<pre class="code">import urwid

palette = [('I say', 'default,bold', 'default', 'bold'),]

ask = urwid.Edit(('I say', u&quot;What is your name?\n&quot;))
reply = urwid.Text(u&quot;&quot;)
content = urwid.SimpleListWalker([ask, reply])
listbox = urwid.ListBox(content)

def on_ask_change(edit, new_edit_text):
    assert edit is ask # we are passed our edit widget
    reply.set_text(('I say',
        u&quot;Nice to meet you, &quot; + new_edit_text))

urwid.connect_signal(ask, 'change', on_ask_change)

def exit_on_cr(input):
    if input == 'enter':
        raise urwid.ExitMainLoop()

loop = urwid.MainLoop(listbox, palette, unhandled_input=exit_on_cr)
loop.run()</pre>

<ul>
<li>An Edit widget and Text reply widget are created, like in the
previous example.
<li>A <a href="reference.html#SimpleListWalker">SimpleListWalker</a>
is then created to manage the contents and focus of our ListBox.
The SimpleListWalker behaves just like a list of widgets, and can
be modified like a regular list.
<li>A <a href="reference.html#ListBox">ListBox</a> is created
and passed the SimpleListWalker.  The ListBox is a box widget and
allows scrolling through its contents.  This example is simple enough
that we could have used a Pile widget and Filler widget instead, but
we will see how the ListBox can be useful in later examples.
<li>The <a href="reference.html#connect_signal">connect_signal</a>
function is used to attach our on_ask_change function to our Edit
widget's "change" event.  Now any time the content of the Edit
widget changes on_ask_change will be called and passed the new 
content.
<li>Now on_ask_change updates the reply text as the user enters their
name.
</ul>

<div class="shot"><pre><span style="color:#000000;background:#e5e5e5;font-weight:bold">What is your name?</span><span style="color:#000000;background:#e5e5e5">   </span>
<span style="color:#e5e5e5;background:#000000"> </span><span style="color:#000000;background:#e5e5e5">                    </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
</pre></div>
<div class="shot"><pre><span style="color:#000000;background:#e5e5e5;font-weight:bold">What is your name?</span><span style="color:#000000;background:#e5e5e5">   </span>
<span style="color:#000000;background:#e5e5e5">Tim t</span><span style="color:#e5e5e5;background:#000000"> </span><span style="color:#000000;background:#e5e5e5">               </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">Nice to meet you, Tim</span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">t</span><span style="color:#000000;background:#e5e5e5">                    </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
</pre></div>
<div class="shot"><pre><span style="color:#000000;background:#e5e5e5;font-weight:bold">What is your name?</span><span style="color:#000000;background:#e5e5e5">   </span>
<span style="color:#000000;background:#e5e5e5">Tim the Ench</span><span style="color:#e5e5e5;background:#000000"> </span><span style="color:#000000;background:#e5e5e5">        </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">Nice to meet you, Tim</span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">the Ench</span><span style="color:#000000;background:#e5e5e5">             </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
</pre></div>
<div class="shot"><pre><span style="color:#000000;background:#e5e5e5;font-weight:bold">What is your name?</span><span style="color:#000000;background:#e5e5e5">   </span>
<span style="color:#000000;background:#e5e5e5">Tim the Enchanter</span><span style="color:#e5e5e5;background:#000000"> </span><span style="color:#000000;background:#e5e5e5">   </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">Nice to meet you, Tim</span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">the Enchanter</span><span style="color:#000000;background:#e5e5e5">        </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
<span style="color:#000000;background:#e5e5e5">                     </span>
</pre></div>

<br clear="left">
<br>

<h3><a name="lbcont">2.3. Modifying ListBox Content</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

This program asks for your name and responds "Nice to meet you, (your name)."
It then asks again, and again. Old values may be changed and the responses
will be updated when you press ENTER.  ENTER on a blank line exits.
<br><br>
<pre class="code">import urwid

palette = [('I say', 'default,bold', 'default', 'bold'),]

def new_question():
    return urwid.Edit(('I say', u&quot;What is your name?\n&quot;))

def new_answer(name):
    return urwid.Text(('I say', u&quot;Nice to meet you, &quot;+name+&quot;\n&quot;))

content = urwid.SimpleListWalker([new_question()])
listbox = urwid.ListBox(content)

def update_on_cr(input):
    if input != 'enter':
        return
    focus_widget, position = listbox.get_focus()
    if not hasattr(focus_widget, 'edit_text'):
        return
    if not focus_widget.edit_text:
        raise urwid.ExitMainLoop()
    content[position+1:position+2] = [
        new_answer(focus_widget.edit_text)]
    if not content[position+2:position + 3]:
        content.append(new_question())
    listbox.set_focus(position + 2)
    return True

loop = urwid.MainLoop(listbox, palette, unhandled_input=update_on_cr)
loop.run()</pre>

<ul>
<li>When the user presses ENTER:
  <ul>
  <li>The widget in focus and its current position is retrieved by calling the
  <a href="reference.html#ListBox-get_focus">get_focus</a> function.
  <li>If the widget in focus does not have an edit_text attribute, then it
  is not one of the Edit widgets we are interested in. 
  One of the Text widgets might receive focus
  if it covers the entire visible area of the ListBox widget and there is
  no Edit widget to take focus. While this is unlikely, it should be handled
  or the program will fail when trying to access it.
  <li>If there is no edit text we exit the program.
  <li>The widget after the widget in focus (if any exists) is replaced
  with a response.
  <li>If there is no widget after that widget, a new Edit widget is
  created.
  <li>The focus is then moved to the next Edit widget by calling
  <a href="reference.html#ListBox-set_focus">set_focus</a>.
  </ul>
<li>All other keys are passed to the top widget to handle. The ListBox widget
does most of the hard work:
  <ul>
  <li>UP and DOWN will change the focus and/or scroll the widgets in the list
  box.
  <li>PAGE UP and PAGE DOWN will try to move the focus one screen up or down.
  <li>The cursor's column is maintained as best as possible when moving
  from one Edit widget to another.
  </ul>
</ul>

<div class="shot"><pre><span style="color:#000000;background:#e5e5e5;font-weight:bold">What is your name?</span><span style="color:#000000;background:#e5e5e5">     </span>
<span style="color:#000000;background:#e5e5e5">Abe                    </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">Nice to meet you, Abe</span><span style="color:#000000;background:#e5e5e5">  </span>
<span style="color:#000000;background:#e5e5e5">                       </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">What is your name?</span><span style="color:#000000;background:#e5e5e5">     </span>
<span style="color:#000000;background:#e5e5e5">Bob</span><span style="color:#e5e5e5;background:#000000"> </span><span style="color:#000000;background:#e5e5e5">                   </span>
<span style="color:#000000;background:#e5e5e5">                       </span>
<span style="color:#000000;background:#e5e5e5">                       </span>
<span style="color:#000000;background:#e5e5e5">                       </span>
<span style="color:#000000;background:#e5e5e5">                       </span>
<span style="color:#000000;background:#e5e5e5">                       </span>
<span style="color:#000000;background:#e5e5e5">                       </span>
<span style="color:#000000;background:#e5e5e5">                       </span>
</pre></div>
<div class="shot"><pre><span style="color:#000000;background:#e5e5e5">Abe                    </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">Nice to meet you, Abe</span><span style="color:#000000;background:#e5e5e5">  </span>
<span style="color:#000000;background:#e5e5e5">                       </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">What is your name?</span><span style="color:#000000;background:#e5e5e5">     </span>
<span style="color:#000000;background:#e5e5e5">Bob                    </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">Nice to meet you, Bob</span><span style="color:#000000;background:#e5e5e5">  </span>
<span style="color:#000000;background:#e5e5e5">                       </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">What is your name?</span><span style="color:#000000;background:#e5e5e5">     </span>
<span style="color:#000000;background:#e5e5e5">Carl                   </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">Nice to meet you, Carl</span><span style="color:#000000;background:#e5e5e5"> </span>
<span style="color:#000000;background:#e5e5e5">                       </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">What is your name?</span><span style="color:#000000;background:#e5e5e5">     </span>
<span style="color:#e5e5e5;background:#000000"> </span><span style="color:#000000;background:#e5e5e5">                      </span>
</pre></div>
<div class="shot"><pre><span style="color:#000000;background:#e5e5e5">Bob                    </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">Nice to meet you, Bob</span><span style="color:#000000;background:#e5e5e5">  </span>
<span style="color:#000000;background:#e5e5e5">                       </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">What is your name?</span><span style="color:#000000;background:#e5e5e5">     </span>
<span style="color:#000000;background:#e5e5e5">Carl                   </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">Nice to meet you, Carl</span><span style="color:#000000;background:#e5e5e5"> </span>
<span style="color:#000000;background:#e5e5e5">                       </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">What is your name?</span><span style="color:#000000;background:#e5e5e5">     </span>
<span style="color:#000000;background:#e5e5e5">Dave                   </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">Nice to meet you, Dave</span><span style="color:#000000;background:#e5e5e5"> </span>
<span style="color:#000000;background:#e5e5e5">                       </span>
<span style="color:#000000;background:#e5e5e5;font-weight:bold">What is your name?</span><span style="color:#000000;background:#e5e5e5">     </span>
<span style="color:#e5e5e5;background:#000000"> </span><span style="color:#000000;background:#e5e5e5">                      </span>
</pre></div>

<br clear="left">
<br>

<h2>3. Zen of ListBox</h2>

<h3><a name="lbscr">3.1. ListBox Focus and Scrolling</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

The 
<a href="reference.html#ListBox">ListBox</a> 
is a box widget that contains flow widgets.  Its contents
are displayed stacked vertically, and the ListBox allows the user to scroll
through its content.  One of the flow widgets displayed
in the ListBox is the focus widget.  The ListBox passes key presses to the
focus widget to allow the user to interact with it. If the
focus widget does not handle a keypress then the ListBox may handle the
keypress by scrolling and/or selecting another widget to become the focus
widget.
<br><br>
The ListBox tries to do the most sensible thing when scrolling and
changing focus.  When the widgets displayed are all Text widgets or
other unselectable widgets then the ListBox will behave like a web browser
does when the user presses UP, DOWN, PAGE UP and PAGE DOWN: new text is
immediately scrolled in from the top or bottom.  The ListBox chooses one of the
visible widgets as its focus widget when scrolling. When scrolling up the
ListBox chooses the topmost widget as the focus, and when scrolling down 
the ListBox chooses the bottommost widget as the focus.
<br><br>
When all the widgets displayed are not selectable the user would typically
have no way to tell which widget is in focus, but if we wrap the widgets with
AttrWrap we can see what is happening while the focus changes:

<pre class="code">import urwid

palette = [('header', 'white', 'black'),
    ('reveal focus', 'black', 'dark cyan', 'standout'),]
content = urwid.SimpleListWalker([
    urwid.AttrMap(w, None, 'reveal focus') for w in [
    urwid.Text(u&quot;This is a text string that is fairly long&quot;),
    urwid.Divider(u&quot;-&quot;),
    urwid.Text(u&quot;Short one&quot;),
    urwid.Text(u&quot;Another&quot;),
    urwid.Divider(u&quot;-&quot;),
    urwid.Text(u&quot;What could be after this?&quot;),
    urwid.Text(u&quot;The end.&quot;),]])
listbox = urwid.ListBox(content)
show_key = urwid.Text(u&quot;&quot;, wrap='clip')
head = urwid.AttrMap(show_key, 'header')
top = urwid.Frame(listbox, head)

def show_all_input(input, raw):
    show_key.set_text(u&quot;Pressed: &quot; + u&quot; &quot;.join([
        unicode(i) for i in input]))
    return input

def exit_on_cr(input):
    if input == 'enter':
        raise urwid.ExitMainLoop()

loop = urwid.MainLoop(top, palette,
    input_filter=show_all_input, unhandled_input=exit_on_cr)
loop.run()</pre>
<div class="shot"><pre><span style="color:#ffffff;background:#000000">               </span>
<span style="color:#000000;background:#00cdcd">This is a text </span>
<span style="color:#000000;background:#00cdcd">string that is </span>
<span style="color:#000000;background:#00cdcd">fairly long    </span>
<span style="color:#000000;background:#e5e5e5">---------------</span>
<span style="color:#000000;background:#e5e5e5">Short one      </span>
<span style="color:#000000;background:#e5e5e5">Another        </span>
</pre></div>
<div class="shot"><pre><span style="color:#ffffff;background:#000000">Pressed: down  </span>
<span style="color:#000000;background:#e5e5e5">string that is </span>
<span style="color:#000000;background:#e5e5e5">fairly long    </span>
<span style="color:#000000;background:#e5e5e5">---------------</span>
<span style="color:#000000;background:#e5e5e5">Short one      </span>
<span style="color:#000000;background:#e5e5e5">Another        </span>
<span style="color:#000000;background:#00cdcd">---------------</span>
</pre></div>
<div class="shot"><pre><span style="color:#ffffff;background:#000000">Pressed: down  </span>
<span style="color:#000000;background:#e5e5e5">fairly long    </span>
<span style="color:#000000;background:#e5e5e5">---------------</span>
<span style="color:#000000;background:#e5e5e5">Short one      </span>
<span style="color:#000000;background:#e5e5e5">Another        </span>
<span style="color:#000000;background:#e5e5e5">---------------</span>
<span style="color:#000000;background:#00cdcd">What could be  </span>
</pre></div>
<div class="shot"><pre><span style="color:#ffffff;background:#000000">Pressed: down  </span>
<span style="color:#000000;background:#e5e5e5">---------------</span>
<span style="color:#000000;background:#e5e5e5">Short one      </span>
<span style="color:#000000;background:#e5e5e5">Another        </span>
<span style="color:#000000;background:#e5e5e5">---------------</span>
<span style="color:#000000;background:#00cdcd">What could be  </span>
<span style="color:#000000;background:#00cdcd">after this?    </span>
</pre></div>
<div class="shot"><pre><span style="color:#ffffff;background:#000000">Pressed: up    </span>
<span style="color:#000000;background:#00cdcd">fairly long    </span>
<span style="color:#000000;background:#e5e5e5">---------------</span>
<span style="color:#000000;background:#e5e5e5">Short one      </span>
<span style="color:#000000;background:#e5e5e5">Another        </span>
<span style="color:#000000;background:#e5e5e5">---------------</span>
<span style="color:#000000;background:#e5e5e5">What could be  </span>
</pre></div>
<div class="shot"><pre><span style="color:#ffffff;background:#000000">Pressed: up    </span>
<span style="color:#000000;background:#00cdcd">string that is </span>
<span style="color:#000000;background:#00cdcd">fairly long    </span>
<span style="color:#000000;background:#e5e5e5">---------------</span>
<span style="color:#000000;background:#e5e5e5">Short one      </span>
<span style="color:#000000;background:#e5e5e5">Another        </span>
<span style="color:#000000;background:#e5e5e5">---------------</span>
</pre></div>
<br clear="left">

The ListBox remembers the location of the widget in focus as either an
"offset" or an "inset". An offset is the number of rows between the top
of the ListBox and the beginning of the focus widget. An offset of zero
corresponds to a widget with its top aligned with the top of the ListBox.
An inset is the fraction of rows of the focus widget
that are "above" the top of the ListBox and not visible. 
The ListBox uses this method of remembering the focus widget location
so that when the ListBox is resized the text displayed will stay 
roughly aligned with the top of the ListBox.
<br><br>
<div class="shot"><pre><span style="color:#ffffff;background:#000000">Pressed: window resi</span>
<span style="color:#000000;background:#00cdcd">string that is      </span>
<span style="color:#000000;background:#00cdcd">fairly long         </span>
<span style="color:#000000;background:#e5e5e5">--------------------</span>
<span style="color:#000000;background:#e5e5e5">Short one           </span>
<span style="color:#000000;background:#e5e5e5">Another             </span>
<span style="color:#000000;background:#e5e5e5">--------------------</span>
<span style="color:#000000;background:#e5e5e5">What could be after </span>
<span style="color:#000000;background:#e5e5e5">this?               </span>
</pre></div>
<div class="shot"><pre><span style="color:#ffffff;background:#000000">Pressed: window resize   </span>
<span style="color:#000000;background:#00cdcd">This is a text string    </span>
<span style="color:#000000;background:#00cdcd">that is fairly long      </span>
<span style="color:#000000;background:#e5e5e5">-------------------------</span>
<span style="color:#000000;background:#e5e5e5">Short one                </span>
<span style="color:#000000;background:#e5e5e5">Another                  </span>
<span style="color:#000000;background:#e5e5e5">-------------------------</span>
</pre></div>
<div class="shot"><pre><span style="color:#ffffff;background:#000000">Pressed: wi</span>
<span style="color:#000000;background:#00cdcd">This is a  </span>
<span style="color:#000000;background:#00cdcd">text string</span>
<span style="color:#000000;background:#00cdcd">that is    </span>
<span style="color:#000000;background:#00cdcd">fairly long</span>
<span style="color:#000000;background:#e5e5e5">-----------</span>
<span style="color:#000000;background:#e5e5e5">Short one  </span>
<span style="color:#000000;background:#e5e5e5">Another    </span>
<span style="color:#000000;background:#e5e5e5">-----------</span>
<span style="color:#000000;background:#e5e5e5">What could </span>
<span style="color:#000000;background:#e5e5e5">be after   </span>
<span style="color:#000000;background:#e5e5e5">this?      </span>
<span style="color:#000000;background:#e5e5e5">The end.   </span>
</pre></div>
<br clear="left">
<br><br>
When there are selectable widgets in the ListBox the focus will move
between the selectable widgets, skipping the unselectable widgets.
The ListBox will try to scroll all the rows of a selectable widget into
view so that the user can see the new focus widget in its entirety.
This behavior can be used to bring more than a single widget into view
by using composite widgets to combine a selectable widget with other
widgets that should be displayed at the same time.

<br clear="left">
<br>

<h3><a name="lbdyn">3.2. Dynamic ListBox with List Walker</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

While the ListBox stores the location of its focus widget, it
does not directly store the actual focus widget or other contents of the
ListBox. The storage of a ListBox's content is delegated to a "List Walker" 
object. If a list of widgets is passed to the ListBox constructor then it
creates a 
<a href="reference.html#SimpleListWalker">SimpleListWalker</a> 
object to manage the list.
<br><br>
When the ListBox is 
<a href="reference.html#ListBox-render">rendering a canvas</a> or 
<a href="reference.html#ListBox-keypress">handling input</a> it will:
<ol>
<li>Call the 
<a href="reference.html#List_Walker_interface_definition-get_focus">get_focus</a> 
method of its list walker object. 
This method will return the focus widget and a position object.  
<li>Optionally call the 
<a href="reference.html#List_Walker_interface_definition-get_prev">get_prev</a> 
method of its List Walker object 
one or more times, initially passing 
the focus position and then passing the new position returned on each 
successive call.  This method will return the widget and position object
"above" the position passed.
<li>Optionally call the 
<a href="reference.html#List_Walker_interface_definition-get_next">get_next</a> 
method of its List Walker object 
one or more times, similarly, to collect widgets and position objects 
"below" the focus position.
<li>Optionally call the 
<a href="reference.html#List_Walker_interface_definition-set_focus">set_focus</a> 
method passing one of the position 
objects returned in the previous steps.
</ol>
This is the only way the ListBox accesses its contents, and it will not
store copies of any of the widgets or position objects beyond the current
rendering or input handling operation.
<br><br>
The SimpleListWalker stores a list of widgets, and uses integer indexes into
this list as its position objects.  It stores the focus
position as an integer, so if you insert a widget into the list above the
focus position then you need to remember to increment the focus position in
the SimpleListWalker object or the contents of the ListBox will shift.
<br><br>
A custom List Walker object may be passed to the ListBox constructor instead
of a plain list of widgets. List Walker objects must implement the 
<a href="reference.html#List_Walker_interface_definition">List Walker interface</a>.
<br><br>
The 
<a href="fib.py.html">fib.py</a> 
example program demonstrates a custom list walker that doesn't
store any widgets. It uses a tuple of two successive Fibonacci numbers
as its position objects and it generates Text widgets to display the numbers
on the fly. 
The result is a ListBox that can scroll through an unending list of widgets.
<br><br>
The 
<a href="edit.py.html">edit.py</a> 
example program demonstrates a custom list walker that
loads lines from a text file only as the user scrolls them into view.  
This allows even huge files to be opened almost instantly.
<br><br>
The 
<a href="browse.py.html">browse.py</a>
example program demonstrates a custom list walker that
uses a tuple of strings as position objects, one for the parent directory
and one for the file selected. The widgets are cached in a separate class
that is accessed using a dictionary indexed by parent directory names.
This allows the directories to be read only as required. The custom list
walker also allows directories to be hidden from view when they are
"collapsed".

<br clear="left">
<br>

<h3><a name="lbfocus">3.3. Setting the Focus</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

The easiest way to change the current ListBox focus is to call the
<a href="reference.html#ListBox-set_focus">set_focus</a> method.
This method doesn't require that you know the ListBox's
current dimensions (maxcol, maxrow).  It will wait until the next call to
either keypress or render to complete setting the offset and inset values 
using the dimensions passed to that method.
<br><br>
The position object passed to set_focus must be compatible with the List
Walker object that the ListBox is using. For SimpleListWalker the position
is the integer index of the widget within the list.
<br><br>
The coming_from parameter should be set if you know that the old position
is "above" or "below" the previous position.  When the ListBox completes
setting the offset and inset values it tries to find the old widget among
the visible widgets. If the old widget is still visible, if will try to
avoid causing the ListBox contents to scroll up or down from its previous
position. If the widget is not visible, then the ListBox will:
<ul>
<li>Display the new focus at the bottom of the ListBox if coming_from is
"above".
<li>Display the new focus at the top of the ListBox if coming_from is "below".
<li>Display the new focus in the middle of the ListBox if coming_from is None.
</ul>
If you know exactly where you want to display the new focus widget within
the ListBox you may call 
<a href="reference.html#ListBox-set_focus_valign">set_focus_valign</a>. 
This method lets you specify the
"top", "bottom", "middle", a relative position or the exact number of rows
from the top or bottom of the ListBox.

<br clear="left">
<br>

<h2>4. Combining Widgets</h2>

<h3><a name="pile">4.1. Piling Widgets</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

<a href="reference.html#Pile">Pile</a>
 widgets are used to combine multiple widgets by stacking them
vertically. A Pile can manage selectable widgets by keeping track of which
widget is in focus and it can handle moving the focus between widgets when
the user presses the UP and DOWN keys. A Pile will also work well when used 
within a ListBox.
<br><br>
A Pile is selectable only if its focus widget is selectable. If you create
a Pile containing one Text widget and one Edit widget the Pile will
choose the Edit widget as its default focus widget.
To change the pile's focus widget you can call
<a href="reference.html#Pile-set_focus">set_focus</a>.

<br clear="left">
<br>

<h3><a name="cols">4.2. Dividing into Columns</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

<a href="reference.html#Columns">Columns</a>
widgets may be used to arrange either flow widgets or box widgets
horizontally into columns. Columns widgets will manage selectable widgets
by keeping track of which column is in focus and it can handle moving the
focus between columns when the user presses the LEFT and RIGHT keys.
Columns widgets also work well when used within a ListBox.
<br><br>
Columns widgets are selectable only if the column in focus is selectable.
If a focus column is not specified the first selectable widget will be
chosen as the focus column. The 
<a href="reference.html#Columns-set_focus">set_focus</a>
method may be used to select the focus column.

<br clear="left">
<br>

<h3><a name="grid">4.3. GridFlow Arrangement</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

The 
<a href="reference.html#GridFlow">GridFlow</a>
widget is a flow widget designed for use with
<a href="reference.html#Button">Button</a>,
<a href="reference.html#CheckBox">CheckBox</a> and
<a href="reference.html#RadioButton">RadioButton</a> widgets.
It renders all the widgets it contains the same width and it arranges them
from left to right and top to bottom.
<br><br>
The GridFlow widget uses Pile, Columns, Padding and Divider widgets to build
a display widget that will handle the keyboard input and rendering. When the
GridFlow widget is resized it regenerates the display widget to accommodate
the new space.

<br clear="left">
<br>

<h3><a name="overlay">4.4. Overlay Widgets</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

The <a href="reference.html#Overlay">Overlay</a> widget is a box widget that
contains two other box widgets.  The bottom widget is rendered the full size
of the Overlay widget and the top widget is placed on top, obscuring an area
of the bottom widget. This widget can be used to create effects such as
overlapping "windows" or pop-up menus.
<br><br>
The Overlay widget always treats the top widget as the one in focus. All
keyboard input will be passed to the top widget. 
<br><br>
If you want to use a flow
flow widget for the top widget, first wrap the flow widget with a
<a href="reference.html#Filler">Filler</a> widget.

<br clear="left">
<br>

<h2>5. Creating Custom Widgets</h2>

<h3><a name="wmod">5.1. Modifying Existing Widgets</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

The easiest way to create a custom widget is to modify an existing widget.
This can be done by either subclassing the original widget or by wrapping it.
Subclassing is appropriate when you need to interact at a very low level
with the original widget, such as if you are creating a custom edit widget
with different behavior than the usual Edit widgets.  If you are creating
a custom widget that doesn't need tight coupling with the original widget,
such as a widget that displays customer address information, then wrapping
is more appropriate.
<br><br>
The <a href="reference.html#WidgetWrap">WidgetWrap</a> class simplifies
wrapping existing widgets.  You can create a custom widget simply by 
creating a subclass of WidgetWrap and passing a widget into WidgetWrap's 
constructor. 
<br><br>
This is an example of a custom widget that uses WidgetWrap:

<pre class="code">class QuestionnaireItem(urwid.WidgetWrap):
    def __init__(self):
        self.options = []
        unsure = urwid.RadioButton(self.options, u&quot;Unsure&quot;)
        yes = urwid.RadioButton(self.options, u&quot;Yes&quot;)
        no = urwid.RadioButton(self.options, u&quot;No&quot;)
        display_widget = urwid.GridFlow([unsure, yes, no],
            15, 3, 1, 'left')
        urwid.WidgetWrap.__init__(self, display_widget)

    def get_state(self):
        for o in self.options:
            if o.get_state() is True:
                return o.get_label()</pre>

The above code creates a group of RadioButtons and provides a method to
query the state of the buttons.
<br><br>
Wrapped widgets may also override the standard widget methods. These methods
are described in following sections.

<br clear="left">
<br>

<h3><a name="wanat">5.2. Anatomy of a Widget</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

Any object that follows the 
<a href="reference.html#Widget_interface_definition">Widget interface definition</a>
may be used as a widget.  Box widgets must implement 
<a href="reference.html#Widget_interface_definition-selectable">selectable</a>
and 
<a href="reference.html#Widget_interface_definition-render">render</a>
methods, and flow widgets must implement selectable, render and 
<a href="reference.html#Widget_interface_definition-rows">rows</a>
methods.

<pre class="code">class Pudding(urwid.FlowWidget):
    def selectable(self):
        return False
    def rows(self, size, focus=False):
        return 1
    def render(self, size, focus=False):
        (maxcol,) = size
        num_pudding = maxcol / len(&quot;Pudding&quot;)
        return urwid.TextCanvas([&quot;Pudding&quot;*num_pudding],
            maxcol=maxcol)

class BoxPudding(urwid.BoxWidget):
    def selectable(self):
        return False
    def render(self, size, focus=False):
        (maxcol, maxrow) = size
        num_pudding = maxcol / len(&quot;Pudding&quot;)
        return urwid.TextCanvas(
            [&quot;Pudding&quot;*num_pudding] * maxrow,
            maxcol=maxcol)</pre>

The above code implements two widget classes. Pudding is a flow widget and 
BoxPudding is a box widget. Pudding will render as much "Pudding" as will
fit in a single row, and BoxPudding will render as much "Pudding" as will
fit into the entire area given.
<br><br>
It is not strictly necessary to inherit from
<a href="reference.html#FlowWidget">BoxWidget</a> or 
<a href="reference.html#FlowWidget">FlowWidget</a>, but doing so does add
some documentation to your code.  
<br><br>
Note that the rows and render methods' focus parameter must have a default
value of False.  Also note that for flow widgets the number of rows returned 
by the rows method must match the number of rows rendered by the render
method.
<br><br>
In most cases it is easier to let other widgets handle the rendering and 
row calculations for you:

<pre class="code">class NewPudding(urwid.FlowWidget):
    def selectable(self):
        return False
    def rows(self, size, focus=False):
        w = self.display_widget(size, focus)
        return w.rows(size, focus)
    def render(self, size, focus=False):
        w = self.display_widget(size, focus)
        return w.render(size, focus)
    def display_widget(self, size, focus):
        (maxcol,) = size
        num_pudding = maxcol / len(&quot;Pudding&quot;)
        return urwid.Text(&quot;Pudding&quot;*num_pudding)</pre>

The NewPudding class behaves the same way as the Pudding class above, but in
NewPudding you can change the way the widget appears by modifying only the
display_widget method, whereas in the Pudding class you may have to modify both
the render and rows methods.
<br><br>
To improve the efficiency of your Urwid application you should be careful
of how long your rows methods take to execute.  The rows methods may be called
many times as part of input handling and rendering operations.  If you are
using a display widget that is time consuming to create you should consider
caching it to reduce its impact on performance.
<br><br>
It is possible to create a widget that will behave as either a flow widget
or box widget depending on what is required:

<pre class="code">class MultiPudding(urwid.Widget):
    def selectable(self):
        return False
    def rows(self, size, focus=False):
        return 1
    def render(self, size, focus=False):
        if len(size) == 1:
            (maxcol,) = size
            maxrow = 1
        else:
            (maxcol, maxrow) = size
        num_pudding = maxcol / len(&quot;Pudding&quot;)
        return urwid.TextCanvas(
            [&quot;Pudding&quot;*num_pudding] * maxrow,
            maxcol=maxcol)</pre>

MultiPudding will work in place of either Pudding or BoxPudding above. The
number of elements in the size tuple determines whether the containing widget
is expecting a flow widget or a box widget.

<br clear="left">
<br>

<h3><a name="wsel">5.3. Creating Selectable Widgets</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

Selectable widgets such as Edit and Button widgets allow the user to
interact with the application.  A widget is selectable if its selectable
method returns True.  Selectable widgets must implement the
<a href="reference.html#Widget_interface_definition-keypress">keypress</a>
method to handle keyboard input.

<pre class="code">class SelectablePudding(urwid.FlowWidget):
    def __init__(self):
        self.pudding = &quot;pudding&quot;
    def selectable(self):
        return True
    def rows(self, size, focus=False):
        return 1
    def render(self, size, focus=False):
        (maxcol,) = size
        num_pudding = maxcol / len(self.pudding)
        pudding = self.pudding
        if focus:
            pudding = pudding.upper()
        return urwid.TextCanvas([pudding*num_pudding],
            maxcol=maxcol)
    def keypress(self, size, key):
        (maxcol,) = size
        if len(key)&gt;1:
            return key
        if key.lower() in self.pudding:
            # remove letter from pudding
            n = self.pudding.index(key.lower())
            self.pudding = self.pudding[:n]+self.pudding[n+1:]
            if not self.pudding:
                self.pudding = &quot;pudding&quot;
        else:
            return key</pre>

The SelectablePudding widget will display its contents in uppercase when it
is in focus, and it allows the user to "eat" the pudding by pressing each of
the letters P, U, D, D, I, N and G on the keyboard.  When the user has "eaten"
all the pudding the widget will reset to its initial state.
<br><br>
Note that keys that are unhandled in the keypress method are returned so that
another widget may be able to handle them.  This is a good convention to follow
unless you have a very good reason not to.  In this case the UP and DOWN keys
are returned so that if this widget is in a ListBox the ListBox will behave as
the user expects and change the focus or scroll the ListBox.

<br clear="left">
<br>

<h3><a name="wcur">5.4. Widgets Displaying the Cursor</a>
<span class="back">[<a href="#top">back to top</a>]</span></h3>

Widgets that display the cursor must implement the
<a href="reference.html#Widget_interface_definition-get_cursor_coords">get_cursor_coords</a> 
method. Similar to the rows method for flow widgets, this method lets other
widgets make layout decisions without rendering the entire widget.  The
ListBox widget in particular uses get_cursor_coords to make sure that the
cursor is visible within its focus widget.

<pre class="code">class CursorPudding(urwid.FlowWidget):
    def __init__(self):
        self.cursor_col = 0
    def selectable(self):
        return True
    def rows(self, size, focus=False):
        return 1
    def render(self, size, focus=False):
        (maxcol,) = size
        num_pudding = maxcol / len(&quot;Pudding&quot;)
        cursor = None
        if focus:
            cursor = self.get_cursor_coords(size)
        return urwid.TextCanvas(
            [&quot;Pudding&quot;*num_pudding], [], cursor, maxcol)
    def get_cursor_coords(self, size):
        (maxcol,) = size
        col = min(self.cursor_col, maxcol-1)
        return col, 0
    def keypress(self, size, key):
        (maxcol,) = size
        if key == 'left':
            col = self.cursor_col -1
        elif key == 'right':
            col = self.cursor_col +1
        else:
            return key
        self.cursor_x = max(0, min(maxcol-1, col))</pre>

CursorPudding will let the user move the cursor through the widget by 
pressing LEFT and RIGHT. The cursor must only be added to the canvas when
the widget is in focus. The get_cursor_coords method must always return
the same cursor coordinates that render does.

<br><br>A widget displaying a cursor may choose to implement
<a href="reference.html#Widget_interface_definition-get_pref_col">get_pref_col</a>.
This method returns the preferred column for the cursor, and is called when
the focus is moving up or down off this widget.
<br><br>
Another optional method is 
<a href="reference.html#Widget_interface_definition-move_cursor_to_coords">move_cursor_to_coords</a>.
This method allows other widgets to try to position the cursor within this
widget. The ListBox widget uses move_cursor_to_coords when changing focus and
when the user pressed PAGE UP or PAGE DOWN. This method must return True on
success and False on failure. If the cursor may be placed at any position
within the row specified (not only at the exact column specified) then this
method must move the cursor to that position and return True.


<pre class="code">    def get_pref_col(self, (maxcol,)):
        return self.cursor_x
    def move_cursor_to_coords(self, (maxcol,), col, row):
        assert row == 0
        self.cursor_x = col
        return True</pre>

<br clear="left">
<br>


</body>
</html>