|
- Method resolution order:
- Main
- pyviblib.gui.widgets.BaseWidget
- __builtin__.object
Methods defined here:
- __init__(self, master, startfiles=None)
- Constructor of the class.
Positional arguments :
master -- must be a reference to the root Tkinter.Tk object
Keyword arguments :
startfiles -- list of files to be opened at startup (default None)
- activate(self, window=None)
- Activate a window.
Keyword arguments :
window -- window to be activated (default None)
if None, activate oneself
Note : this won't under KDE, but works fine e.g. under IceWM (or Windows).
- register_window(self, window)
- Register a new window in the Windows menu.
Positional arguments :
window -- the window to be registered
must be a subclass of pyviblib.gui.windows.BaseWindow
- remove_thumbnail(self, thmb)
- Remove a thumbnail from the thumbnail pane.
Positional arguments :
thmb -- thumbnail to be removed
- unregister_window(self, window)
- Remove a window from the Windows menu.
Positional arguments :
window -- the window to be registered
must be a subclass of pyviblib.gui.windows.BaseWindow
Data and other attributes inherited from pyviblib.gui.widgets.BaseWidget:
- __dict__ = <dictproxy object>
- dictionary for instance variables (if defined)
- __weakref__ = <attribute '__weakref__' of 'BaseWidget' objects>
- list of weak references to the object (if defined)
|