Pmw functions

Pmw.aboutcontact(value)

Pmw.aboutcopyright(value)

Pmw.aboutversion(value)

Pmw.aligngrouptags(groups)

Pmw.alignlabels(widgets, sticky = None)

Adjust the size of the labels of all the widgets to be equal, so that the body of each widget lines up vertically. This assumes that each widget is a megawidget with a label component in column 0 (ie, the labelpos option was set to 'w', 'wn' or 'ws'). If sticky is set to a combination of 'n', 's', 'e' and 'w', the label will be positioned within its cell accordingly. For example to make labels right justified, set sticky to 'e', 'ne' or 'se'.

Pmw.busycallback(command, updateFunction = None)

Create a wrapper function which displays a busy cursor while executing command and return the wrapper. When the wrapper function is called, it first calls Pmw.showbusycursor(), then the command (passing any arguments to it), then Pmw.hidebusycursor(). The return value of command is returned from the wrapper.

If updateFunction is specified, it is called just before the call to Pmw.hidebusycursor(). This is intended to be the Tkinter update() method, in which case it will clear any events that may have occurred while command was executing. An example of this usage is in the ShowBusy demonstration: run the demonstration, click on the entry widget then click on the button and type some characters while the busy cursor is displayed. No characters should appear in the entry widget.

Note that the Tkinter update() method should only be called when it is known that it can be safely called. One case where a problem has been found is when a filehandler has been created (on a non-blocking Oracle database connection), but the filehandler does not read from the connection. The connection is read (by a call to the Oracle fetch function ofen) in a loop which also contains a call to _tkinter.dooneevent(). If update() is called from dooneevent() and there is data to be read on the connection, then the filehandler will be called continuously, thus hanging the application.

Pmw.clearbusycursor()

Pmw.datestringtojdn(text, format)

Convert the date in text into the corresponding Julian Day Number, which is defined to be the number of days since 1 Jan 4713 BC. The date must be specified as three integers separated by / characters. The integers must be in the order specified by format, which must be one of dmy, mdy or ymd, giving the order of the day, month and year fields. Examples of valid input are:

 'dmy':  31/01/99  31/1/1999  31/1/99
 'mdy':  01/31/99  1/31/1999  1/31/99
 'ymd':  99/01/31  1999/1/31  99/1/31

If the application's pivot year (default 50) is not None and the year specified in text has only one or two digits, then the year is converted to a four digit year. If it is less than or equal to the pivot year, then it is incremented by the application's century value (default 2000). If it is more than the pivot year then it is incremented by the century value less 100.

The function Pmw.setyearpivot() can be used to change the default values for the application's pivot and century.

Pmw.displayerror(text)

This is a general purpose method for displaying background errors to the user. The errors would normally be programming errors and may be caused by errors in Tk callbacks or functions called by other asynchronous events. The error messages are shown in a text window. If further errors occur while the window is displayed, the window is raised and these new errors are queued. The queued errors may be viewed by the user or ignored by dismissing the window.

Pmw.fontexists(widget, fontName)

Pmw.forwardmethods(fromClass, toClass, toPart, exclude = [])

Forward methods from one class to another.

This function adds methods to the class fromClass. The names of the methods added are the names of the methods of the class toClass (and its base classes) except those which are already defined by fromClass or are found in the exclude list. Special methods with one or more leading or trailing underscores are also excluded.

When one of the added methods is called, the method of the same name is called on an instance defined by toPart and the return value passed back. If toPart is a string, then it specifies the name of an attribute (not a component) of the fromClass object. The class of this attribute should be toClass. If toPart is not a string, it must be a function taking a fromClass object and returning a toClass object.

This function must be called outside of and after the definition of fromClass.

For example:

class MyClass:
    def __init__(self):
        ...
        self.__target = TargetClass()
        ...

    def foo(self):
        pass

    def findtarget(self):
        return self.__target

Pmw.forwardmethods(MyClass, TargetClass, '__target',
        ['dangerous1', 'dangerous2'])

# ...or...

Pmw.forwardmethods(MyClass, TargetClass, MyClass.findtarget, 
        ['dangerous1', 'dangerous2'])

In both cases, all TargetClass methods will be forwarded from MyClass except for dangerous1, dangerous2, special methods like __str__, and pre-existing methods like foo.

Pmw.hidebusycursor()

Pmw.hulltomegawidget(tkWidget)

Pmw.initialise(root = None, size = None, fontScheme = None, useTkOptionDb = 0)

Initialise Pmw. This performs several functions:

It is not absolutely necessary to call this function to be able to use Pmw. However, some functionality will be lost. Most importantly, Pmw megawidgets will not be notified when their hull widget is destroyed. This may prevent the megawidget from cleaning up timers which will try to access the widget, hence causing a background error to occur.

Pmw.installedversions(alpha = 0)

If alpha is not set, return the list of base versions of Pmw that are currently installed and available for use. If alpha is set, return the list of alpha versions.

Pmw.jdntoymd(jdn, julian = -1, papal = 1)

Pmw.logicalfont(name = 'Helvetica', sizeIncr = 0, **kw)

Pmw.logicalfontnames()

Pmw.maxfontwidth(widget, fontName)

Pmw.reporterrorstofile(file = None)

If file is None, or if Pmw.reporterrorstofile() has not been called, future Tk background errors will be displayed in an error window (by calling Pmw.displayerror()). If file is not None, future Tk background errors will be written to the file. file may be any object with a write() method, such as sys.stderr.

Pmw.setalphaversions(*alpha_versions)

Set the list of alpha versions of Pmw to use for this session to the arguments. When searching for Pmw classes and functions, these alpha versions will be searched, in the order given, before the base version. This must be called before any other Pmw class or function, except functions setting or querying versions.

Pmw.setversion(version)

Set the version of Pmw to use for this session to version. If Pmw.setversion() is not called, the latest installed version of Pmw will be used. This must be called before any other Pmw class or function, except functions setting or querying versions.

Pmw.setyearpivot(pivot, century = None)

Set the pivot year and century for the application's date processing. These values are used in the datestringtojdn() method. The default values of pivot and century are 50 and 2000 repectively.

Pmw.showbusycursor()

Block events to and display a busy cursor on all windows in this application that are in the state normal or iconic. If a window and its contents have just been created, update_idletasks() may have to be called before Pmw.showbusycursor(). Windows created or deiconified after calling Pmw.showbusycursor() will not be blocked. The busy cursor will only be displayed if the BLT extension to Tk is present.

Pmw.timestringtoseconds(text)

Pmw.tracetk(root, on, withStackTrace = 0, file = None)

Pmw.version(alpha = 0)

If alpha is not set, return the base version of Pmw being used for this session. If Pmw.setversion() has not been called, this will be the latest installed version of Pmw. If alpha is set, return the list of alpha versions of Pmw being used for this session, in search order. If Pmw.setalphaversions() has not been called, this will be the empty list.

Pmw.ymdtojdn(y, m, d, julian = -1, papal = 1)

Home. Pmw 0.6.2 Maintainer gregm@iname.com. 23 Feb 1998