def __init__(self):
     PopupWindow.__init__(self, 'mixin', 'Popup')
     content.__init__(self)
 def __init__(self):
     PopupWindow.__init__(self, 'popup', 'subclass')
     Button(self, text='Pine', command=self.quit).pack()
     Button(self, text='Sing', command=self.destroy).pack()
Esempio n. 3
0
 def __init__(self):
     PopupWindow.__init__(self, 'popup', 'subclass')
     Button(self, text='Pine', command=self.quit).pack()
     Button(self, text='Sing', command=self.destroy).pack()
Esempio n. 4
0
 def __init__(self):
     PopupWindow.__init__(self, 'mixin', 'Popup')
     content.__init__(self)
Esempio n. 5
0
 def __init__(self):
     PopupWindow.__init__(self, 'Popup', 'subclass')
     content.__init__(self)
Esempio n. 6
0
 def __init__(self):
     PopupWindow.__init__(self, 'Mixin', 'Main')
     content.__init__(self)
Esempio n. 7
0
 def __init__(self, config=ClockConfig, name=''):
     PopupWindow.__init__(self, appname, name)
     clock = Clock(config, self)
     clock.pack(expand=YES, fill=BOTH)