HomeSort by relevance Sort by last modified time
    Searched refs:CallTip (Results 1 - 4 of 4) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CallTipWindow.py 1 """A CallTip window class for Tkinter/IDLE.
17 class CallTip:
49 """Show the calltip, bind events which will close it and reposition it.
51 # truncate overly long calltip
68 # remove border on calltip window
154 self.calltip = CallTip(text)
156 text.event_add("<<calltip-show>>", "(")
157 text.event_add("<<calltip-hide>>", ")")
158 text.bind("<<calltip-show>>", self.calltip_show
    [all...]
CallTips.py 21 ("Show call tip", "<<force-open-calltip>>"),
31 self.calltip = None
39 return CallTipWindow.CallTip(self.text)
42 if self.calltip:
43 self.calltip.hidetip()
44 self.calltip = None
47 """Happens when the user really wants to open a CallTip, even if a
53 """Happens when it would be nice to open a CallTip, but not really
60 """If there is already a calltip window, check if it is still needed,
63 if self.calltip and self.calltip.is_active()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CallTipWindow.py 1 """A CallTip window class for Tkinter/IDLE.
17 class CallTip:
49 """Show the calltip, bind events which will close it and reposition it.
51 # truncate overly long calltip
68 # remove border on calltip window
154 self.calltip = CallTip(text)
156 text.event_add("<<calltip-show>>", "(")
157 text.event_add("<<calltip-hide>>", ")")
158 text.bind("<<calltip-show>>", self.calltip_show
    [all...]
CallTips.py 21 ("Show call tip", "<<force-open-calltip>>"),
31 self.calltip = None
39 return CallTipWindow.CallTip(self.text)
42 if self.calltip:
43 self.calltip.hidetip()
44 self.calltip = None
47 """Happens when the user really wants to open a CallTip, even if a
53 """Happens when it would be nice to open a CallTip, but not really
60 """If there is already a calltip window, check if it is still needed,
63 if self.calltip and self.calltip.is_active()
    [all...]

Completed in 97 milliseconds