/usr/share/doc/python-pmw-doc/examples/Dialog.py is in python-pmw-doc 1.3.2-6build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | title = 'Pmw.Dialog demonstration'
# Import Pmw from this directory tree.
import sys
sys.path[:0] = ['../../..']
import Tkinter
import Pmw
class Demo:
def __init__(self, parent):
# Create two buttons to launch the dialog.
w = Tkinter.Button(parent, text = 'Show application modal dialog',
command = self.showAppModal)
w.pack(padx = 8, pady = 8)
w = Tkinter.Button(parent, text = 'Show global modal dialog',
command = self.showGlobalModal)
w.pack(padx = 8, pady = 8)
w = Tkinter.Button(parent, text = 'Show dialog with "no grab"',
command = self.showDialogNoGrab)
w.pack(padx = 8, pady = 8)
w = Tkinter.Button(parent, text =
'Show toplevel window which\n' +
'will not get a busy cursor',
command = self.showExcludedWindow)
w.pack(padx = 8, pady = 8)
# Create the dialog.
self.dialog = Pmw.Dialog(parent,
buttons = ('OK', 'Apply', 'Cancel', 'Help'),
defaultbutton = 'OK',
title = 'My dialog',
command = self.execute)
self.dialog.withdraw()
# Add some contents to the dialog.
w = Tkinter.Label(self.dialog.interior(),
text = 'Pmw Dialog\n(put your widgets here)',
background = 'black',
foreground = 'white',
pady = 20)
w.pack(expand = 1, fill = 'both', padx = 4, pady = 4)
# Create the window excluded from showbusycursor.
self.excluded = Pmw.MessageDialog(parent,
title = 'I still work',
message_text =
'This window will not get\n' +
'a busy cursor when modal dialogs\n' +
'are activated. In addition,\n' +
'you can still interact with\n' +
'this window when a "no grab"\n' +
'modal dialog is displayed.')
self.excluded.withdraw()
Pmw.setbusycursorattributes(self.excluded.component('hull'),
exclude = 1)
def showAppModal(self):
self.dialog.activate(geometry = 'centerscreenalways')
def showGlobalModal(self):
self.dialog.activate(globalMode = 1)
def showDialogNoGrab(self):
self.dialog.activate(globalMode = 'nograb')
def showExcludedWindow(self):
self.excluded.show()
def execute(self, result):
print 'You clicked on', result
if result not in ('Apply', 'Help'):
self.dialog.deactivate(result)
######################################################################
# Create demo in root window for testing.
if __name__ == '__main__':
root = Tkinter.Tk()
Pmw.initialise(root)
root.title(title)
exitButton = Tkinter.Button(root, text = 'Exit', command = root.destroy)
exitButton.pack(side = 'bottom')
widget = Demo(root)
root.mainloop()
|