如何在StyledTextCtrl中创建查找对话框?

2024-06-24 11:34:19 发布

您现在位置:Python中文网/ 问答频道 /正文

关于这个主题有一个现存的问题:Find text dialog with wxpython,但它在textcrl中。所以我将textcrl更改为StyledTextCtrl,并对其进行了测试。但我有个错误:

in wxStyledTextCtrl::SetStyle(): not implemented

如何将SetStyle改为选择,以便您可以单击离开?这是我的代码:

^{pr2}$

Tags: textin主题错误withwxpythonnotfind
1条回答
网友
1楼 · 发布于 2024-06-24 11:34:19

StyledTextCtrl看起来像一个非常复杂的野兽,我只能假设您必须仔细阅读scintilla文档http://www.scintilla.org/
我评论中的链接指向使用SetStyling函数而不是AddSelection
这就是我用它来管理的:

import wx
import wx.stc as stc

class MyFrame(wx.Frame):
    def __init__(self, *args, **kwds):
        kwds["style"] = wx.DEFAULT_FRAME_STYLE
        wx.Frame.__init__(self, *args, **kwds)
        self.tc = stc.StyledTextCtrl(self, style=wx.TE_MULTILINE | wx.TE_WORDWRAP)
        self.bt_find = wx.Button(self, -1, "find")

        self.Bind(wx.EVT_BUTTON, self.on_button, self.bt_find)
        self.Bind(wx.EVT_FIND, self.on_find)

        self.pos = 0
        self.size = 0
        #
        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(self.tc, 1, wx.EXPAND, 0)
        sizer.Add(self.bt_find, 0, wx.ALIGN_CENTER_HORIZONTAL, 0)
        self.SetSizer(sizer)
        sizer.Fit(self)
        self.Layout()

    def on_button(self, event):
        self.txt = self.tc.GetValue()
        self.data = wx.FindReplaceData()   # initializes and holds search parameters
        dlg = wx.FindReplaceDialog(self.tc, self.data, 'Find')
        dlg.Show()

    def on_find(self, event):
        self.tc.StartStyling(pos=0, mask=0xFF)
        self.tc.SetStyling(length=len(self.txt), style=0)
        fstring = event.GetFindString()
        self.size = len(fstring)
        while True:
            self.pos = self.txt.find(fstring, self.pos)
            if self.pos < 0:
                break
            self.tc.StyleSetSpec(1, "fore:#FF0000,back:#000000")
            self.tc.StartStyling(pos=self.pos, mask=0xFF)
            self.tc.SetStyling(length=self.size, style=1)
            self.pos += 1
        self.pos = 0

if __name__ == "__main__":

    app = wx.App()
    frame_1 = MyFrame(None, wx.ID_ANY, "")
    frame_1.Show()
    app.MainLoop()

enter image description here

相关问题 更多 >