简体   繁体   English

"如何在 tkinter Text 小部件中突出显示文本"

[英]How to highlight text in a tkinter Text widget

I want to know how to change the style of certain words and expressions based on certain patterns.我想知道如何根据某些模式改变某些单词和表达的风格。

I am using the Tkinter.Text<\/code> widget and I am not sure how to do such a thing (the same idea of syntax highlighting in text editors).我正在使用Tkinter.Text<\/code>小部件,但我不确定如何做这样的事情(与文本编辑器中的语法突出显示相同的想法)。 I am not sure even if this is the right widget to use for this purpose.即使这是用于此目的的正确小部件,我也不确定。

"

It's the right widget to use for these purposes.这是用于这些目的的正确小部件。 The basic concept is, you assign properties to tags, and you apply tags to ranges of text in the widget.基本概念是,您将属性分配给标签,并将标签应用于小部件中的文本范围。 You can use the text widget's search command to find strings that match your pattern, which will return you enough information apply a tag to the range that matched.您可以使用文本小部件的search命令来查找与您的模式匹配的字符串,这将为您返回足够的信息,将标签应用于匹配的范围。

For an example of how to apply tags to text, see my answer to the question Advanced Tkinter text box?有关如何将标签应用于文本的示例,请参阅我对问题Advanced Tkinter 文本框的回答? . . It's not exactly what you want to do but it shows the basic concept.这不完全是您想要做的,但它显示了基本概念。

Following is an example of how you can extend the Text class to include a method for highlighting text that matches a pattern.以下是如何扩展 Text 类以包含用于突出显示与模式匹配的文本的方法的示例。

In this code the pattern must be a string, it cannot be a compiled regular expression.在此代码中,模式必须是字符串,不能是已编译的正则表达式。 Also, the pattern must adhere to Tcl's syntax rules for regular expressions .此外,该模式必须遵守Tcl 的正则表达式语法规则

class CustomText(tk.Text):
    '''A text widget with a new method, highlight_pattern()

    example:

    text = CustomText()
    text.tag_configure("red", foreground="#ff0000")
    text.highlight_pattern("this should be red", "red")

    The highlight_pattern method is a simplified python
    version of the tcl code at http://wiki.tcl.tk/3246
    '''
    def __init__(self, *args, **kwargs):
        tk.Text.__init__(self, *args, **kwargs)

    def highlight_pattern(self, pattern, tag, start="1.0", end="end",
                          regexp=False):
        '''Apply the given tag to all text that matches the given pattern

        If 'regexp' is set to True, pattern will be treated as a regular
        expression according to Tcl's regular expression syntax.
        '''

        start = self.index(start)
        end = self.index(end)
        self.mark_set("matchStart", start)
        self.mark_set("matchEnd", start)
        self.mark_set("searchLimit", end)

        count = tk.IntVar()
        while True:
            index = self.search(pattern, "matchEnd","searchLimit",
                                count=count, regexp=regexp)
            if index == "": break
            if count.get() == 0: break # degenerate pattern which matches zero-length strings
            self.mark_set("matchStart", index)
            self.mark_set("matchEnd", "%s+%sc" % (index, count.get()))
            self.tag_add(tag, "matchStart", "matchEnd")

Are you using tkinter.ttk?你在使用 tkinter.ttk 吗? If so, import tkinter.ttk first then tkinter in your import statement list.如果是这样,请先导入 tkinter.ttk,然后在导入语句列表中导入 tkinter。 That worked for me.这对我有用。 Here's a picture这是一张图片

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM