ANN: xdialog 0.2 released

Christopher Arndt chris.arndt@web.de
Thu, 21 Mar 2002 01:48:25 +0100 (CET)


NAME:
    xdialog.py - Wrapper classes for the Xdialog program

SYNOPSIS:
    import xdialog

DESCRIPTION:
    This module eases the use of the dialogs provided by the Xdialog
    program with Python. It wraps every dialog in a python class, that hides
    the details of calling Xdialog and getting the return status and possibly
    output.

USAGE:
    import xdialog

    box = xdialog.YesNo("Do you really want to shoot your computer now?",
      title="Confirm kill")
    stat, out = box.show()
    if stat == 0:
        print "Bang!"
    elif stat == 1:
        print "I'll have mercy on you, for now!"
    else:
        print "Someone closed the box, you lucky bastard!"

    See the source and/or the docs for Xdialog for available
    dialogs and options.

HOMEPAGE:
    You can get information about xdialog and my other software on:

    <http://www.chrisarndt.de/software_en.html>

DOWNLOAD:
    Get your copy at:

    <http://www.chrisarndt.de/software/xdialog-0.2.tar.bz2>

AUTHOR:
    Christopher Arndt <chris.arndt@web.de>

NOTES:
    This is the initial public release. Version 0.1, which is almost the
    same, was never announced to the public. I fixed some bugs now and
    am releasing the module to get some feedback. Have fun!