コード例 #1
0
ファイル: idlelibdebugger.py プロジェクト: kusaku/wot_scripts
 def __init__(self, master, flist, gui):
     if macosxSupport.isAquaTk():
         ScrolledList.__init__(self, master)
     else:
         ScrolledList.__init__(self, master, width=80)
     self.flist = flist
     self.gui = gui
     self.stack = []
コード例 #2
0
ファイル: debugger.py プロジェクト: webiumsk/WOT-0.9.15.1
 def __init__(self, master, flist, gui):
     if macosxSupport.isAquaTk():
         ScrolledList.__init__(self, master)
     else:
         ScrolledList.__init__(self, master, width=80)
     self.flist = flist
     self.gui = gui
     self.stack = []
コード例 #3
0
ファイル: Debugger.py プロジェクト: JasonZhou0/JsLib
 def __init__(self, master, flist, gui):
     if macosxSupport.isAquaTk():
         # At least on with the stock AquaTk version on OSX 10.4 you'll
         # get an 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 = []
コード例 #4
0
ファイル: Debugger.py プロジェクト: ChowZenki/kbengine
 def __init__(self, master, flist, gui):
     if macosxSupport.runningAsOSXApp():
         # At least on with the stock AquaTk version on OSX 10.4 you'll
         # get an 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 = []
コード例 #5
0
ファイル: Debugger.py プロジェクト: JasonZhou0/JsLib
 def popup_event(self, event):
     "override base method"
     if self.stack:
         return ScrolledList.popup_event(self, event)
コード例 #6
0
ファイル: Debugger.py プロジェクト: ChowZenki/kbengine
 def popup_event(self, event):
     "override base method"
     if self.stack:
         return ScrolledList.popup_event(self, event)
コード例 #7
0
 def popup_event(self, event):
     return ScrolledList.popup_event(self, event) if self.stack else None