After ToolTip.py, which uses ideas gleaned from PySol
Used by the CallTips IDLE extension.
-
"""
-from tkinter import *
+from tkinter import Toplevel, Label, LEFT, SOLID, TclError
HIDE_VIRTUAL_EVENT_NAME = "<<calltipwindow-hide>>"
HIDE_SEQUENCES = ("<Key-Escape>", "<FocusOut>")
return bool(self.tipwindow)
-def _calltip_window(parent):
+def _calltip_window(parent): # htest #
+ import re
+ from tkinter import Tk, Text, LEFT, BOTH
+
root = Tk()
root.title("Test calltips")
width, height, x, y = list(map(int, re.split('[x+]', parent.geometry())))
root.geometry("+%d+%d"%(x, y + 150))
- class MyEditWin: # comparenceptually an editor_window
+ class MyEditWin: # conceptually an editor_window
def __init__(self):
text = self.text = Text(root)
text.pack(side=LEFT, fill=BOTH, expand=1)
def calltip_hide(self, event):
self.calltip.hidetip()
- editwin = MyEditWin()
+ MyEditWin()
if __name__=='__main__':
from idlelib.idle_test.htest import run
import tkinter.messagebox as tkMessageBox
import tkinter.colorchooser as tkColorChooser
import tkinter.font as tkFont
-import copy
from idlelib.configHandler import idleConf
from idlelib.dynOptionMenuWidget import DynOptionMenu
if self.listBindings.curselection():
reselect=1
listIndex=self.listBindings.index(ANCHOR)
- keySet=idleConf.GetKeySet(keySetName)
+ # keySet=idleConf.GetKeySet(keySetName) # unused, delete?
bindNames = list(keySet.keys())
bindNames.sort()
self.listBindings.delete(0,END)
import os
import sys
-from configparser import ConfigParser, NoOptionError, NoSectionError
+from configparser import ConfigParser
class InvalidConfigType(Exception): pass
class InvalidConfigSet(Exception): pass