Exemplo n.º 1
0
 def __init__(self, master, flist, gui):
     if macosx.isAquaTk():
         ScrolledList.__init__(self, master)
     else:
         ScrolledList.__init__(self, master, width=80)
     self.flist = flist
     self.gui = gui
     self.stack = []
Exemplo n.º 2
0
 def __init__(self, master, flist, gui):
     if macosx.isAquaTk():
         # At least on with the stock AquaTk version on OSX 10.4 you'll
         # get a shaking GUI that eventually kills IDLE if the width
         # argument is specified.
         ScrolledList.__init__(self, master)
     else:
         ScrolledList.__init__(self, master, width=80)
     self.flist = flist
     self.gui = gui
     self.stack = []
Exemplo n.º 3
0
 def __init__(self, master, flist, gui):
     if macosx.isAquaTk():
         # At least on with the stock AquaTk version on OSX 10.4 you'll
         # get a shaking GUI that eventually kills IDLE if the width
         # argument is specified.
         ScrolledList.__init__(self, master)
     else:
         ScrolledList.__init__(self, master, width=80)
     self.flist = flist
     self.gui = gui
     self.stack = []
Exemplo n.º 4
0
 def popup_event(self, event):
     "override base method"
     if self.stack:
         return ScrolledList.popup_event(self, event)
Exemplo n.º 5
0
 def test_init(self):
     ScrolledList(self.root)
Exemplo n.º 6
0
 def popup_event(self, event):
     "override base method"
     if self.stack:
         return ScrolledList.popup_event(self, event)