我想制作一个具有自动完成功能的文本编辑器。我需要的是以某种方式获取鼠标选择的文本(案例#1)或光标下的单词(案例#2)将其与我想要自动完成的单词列表进行比较。通过get我的意思是返回一个字符串值。
可以用tkinter完成吗?我不熟悉qt,但如果可以用它实现这个功能,我会尝试使用它。
答案 0 :(得分:3)
要获取光标下的字符位置,请使用"@x,y"
形式的索引。您将从事件或鼠标的当前位置获取x和y坐标。
特殊索引"sel.first"
和"sel.last"
(或Tkinter模块常量SEL_FIRST
,SEL_LAST
)为您提供当前选择中第一个和最后一个字符的索引。
这是一个人为的例子。运行代码,然后移动鼠标以查看状态栏上打印的内容。
import Tkinter as tk
class Example(tk.Frame):
def __init__(self, parent):
tk.Frame.__init__(self, parent)
self.status = tk.Label(anchor="w", text="woot")
self.text = tk.Text(wrap="word", width=60, height=10)
self.status.pack(side="bottom", fill="x")
self.text.pack(side="top", fill="both", expand=True)
self.text.insert("1.0", "Move your cursor around to see what " +
"index is under the cursor, and what " +
"text is selected\n")
self.text.tag_add("sel", "1.10", "1.16")
# when the cursor moves, show the index of the character
# under the cursor
self.text.bind("<Any-Motion>", self.on_mouse_move)
def on_mouse_move(self, event):
index = self.text.index("@%s,%s" % (event.x, event.y))
ch = self.text.get(index)
pos = "%s/%s %s '%s'" % (event.x, event.y, index, ch)
try:
sel = "%s-%s" % (self.text.index("sel.first"), self.text.index("sel.last"))
except Exception, e:
sel = "<none>"
self.status.configure(text="cursor: %s selection: %s" % (pos, sel))
if __name__ == "__main__":
root = tk.Tk()
Example(root).pack(fill="both", expand=True)
root.mainloop()
答案 1 :(得分:0)
您可以使用QTextEdit::cursorForPosition
获取鼠标位置的光标。之后,您可以使用QTextCursor::select
拨打QTextCursor::WordUnderCursor
来选择单词,然后QTextCursor::selectedText
来获取该字词。