Exemplo n.º 1
0
 def __init__(self):
     PopupWindow.__init__(self, 'mixin', 'Popup')
     content.__init__(self)
Exemplo n.º 2
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()
Exemplo 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()
Exemplo n.º 4
0
 def __init__(self):
     PopupWindow.__init__(self, 'mixin', 'Popup')
     content.__init__(self)
Exemplo n.º 5
0
 def __init__(self):
     PopupWindow.__init__(self, 'Popup', 'subclass')
     content.__init__(self)
Exemplo n.º 6
0
 def __init__(self):
     PopupWindow.__init__(self, 'Mixin', 'Main')
     content.__init__(self)
Exemplo n.º 7
0
 def __init__(self, config=ClockConfig, name=''):
     PopupWindow.__init__(self, appname, name)
     clock = Clock(config, self)
     clock.pack(expand=YES, fill=BOTH)