March 2018
Beginner to intermediate
422 pages
10h 33m
English
The following is a list of miscellaneous widgets offered by Pmw:
Pmw provides the Balloon widget implementation, which will be used in the current example. Begin by importing Pmw into the namespace, as follows (see code 5.09—view.py):
import Pmw
Next, instantiate the Balloon widget within the create_gui method, as follows:
self.balloon = Pmw.Balloon(self.root)
Finally, ...