Python TKinter在文本小部件中获得单击标记

时间:2015-11-27 09:36:25

标签: python tkinter

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

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

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

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

    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

有办法做到这一点吗?

最佳, 迈克尔

1 个答案:

答案 0 :(得分:2)

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

这是我的解决方案:

    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))