Package schrodinger :: Package ui :: Package widget :: Module tkinterwidget :: Class PhotoImage
[hide private]
[frames] | no frames]

Class PhotoImage

       schroWidget --+
                     |
 Tkinter.Image --+   |
                 |   |
Tkinter.PhotoImage --+
                     |
                    PhotoImage

Class that mimics the Tkinter.PhotoImage class.

Instance Methods [hide private]
 
__init__(self, *args, **kwargs)
The initialization function simply retrieves the defaults for the given widget type, and intializes the widget with the specified initialization function, using a combination of user-specified options and those set in defaults (NOTE: Defaults will override user-specified options.

Inherited from schroWidget: grid, pack

Inherited from Tkinter.PhotoImage: __getitem__, blank, cget, copy, get, put, subsample, write, zoom

Inherited from Tkinter.Image: __del__, __setitem__, __str__, config, configure, height, type, width

Class Variables [hide private]

Inherited from Tkinter.Image (private): _last_id

Method Details [hide private]

__init__(self, *args, **kwargs)
(Constructor)

 

The initialization function simply retrieves the defaults for the given widget type, and intializes the widget with the specified initialization function, using a combination of user-specified options and those set in defaults (NOTE: Defaults will override user-specified options. If defaults must be overridden, simply configure the widget after initialization: <widget>.config(<options>))

Overrides: Tkinter.Image.__init__