Python TKinter 获取文本小部件中的点击标签

IDo*_*now 2 python tkinter

我在文本小部件中有一些标签,并将单击功能绑定到所有标签。

我的例句是“我可爱的小猫”。“可爱”和“小”是带有标签 adj 的标签词。

在这个点击函数中,我无法弄清楚如何获取我点击的字符串。当我单击可爱时,我想将可爱打印到控制台。

这是我到目前为止所拥有的,我没有包括如何应用标签,因为这有效。点击函数被正确调用。

    def __init__(self, master):
        # skipped some stuff here
        self.MT.tag_config('adj', foreground='orange')
        # here i bind the click function
        self.MT.tag_bind('adj', '<Button-1>', self.click)

    def click(self, event):
        print(dir(event))
        # i want to print the clicked tag text here
Run Code Online (Sandbox Code Playgroud)

有没有办法做到这一点?

最好的,迈克尔

IDo*_*now 5

我设法从光标位置提取单击标签的文本。我将其转换为索引并检查覆盖该索引的标签。

这是我的解决方案:

    def click(self, event):
        # get the index of the mouse click
        index = self.MT.index("@%s,%s" % (event.x, event.y))

        # get the indices of all "adj" tags
        tag_indices = list(self.MT.tag_ranges('adj'))

        # iterate them pairwise (start and end index)
        for start, end in zip(tag_indices[0::2], tag_indices[1::2]):
            # check if the tag matches the mouse click index
            if self.MT.compare(start, '<=', index) and self.MT.compare(index, '<', end):
                # return string between tag start and end
                return (start, end, self.MT.get(start, end))
Run Code Online (Sandbox Code Playgroud)