Lines Matching refs:CallTip
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)
159 text.bind("<<calltip-hide>>", self.calltip_hide)
165 self.calltip.showtip("Hello world")
168 self.calltip.hidetip()