Lock wx.stc.StyledTextCtrl

145 Views Asked by At

I want to lock my wx.stc.StyledTextCtrl and to not allow writing into it. Someone knows a function that can do that? something like messagetxt.Lock() In addition, I want to add text where the insertion point, from the code when it is in ReadOnly

import wx
from wx.stc import StyledTextCtrl`

app = wx.App()
frame = wx.Frame(None, -1, title='2', pos=(0, 0), size=(500, 500))
frame.Show(True)
messageTxt = StyledTextCtrl(frame, id=wx.ID_ANY, pos=(0, 0), size=(100 * 3, 100),
                            style=wx.TE_MULTILINE, name="File")
app.SetTopWindow(frame)
app.MainLoop()
1

There are 1 best solutions below

3
On BEST ANSWER

Use SetReadOnly(True) is one way,
as in:

import wx
from wx.stc import StyledTextCtrl

app = wx.App()
frame = wx.Frame(None, -1, title='2', pos=(0, 0), size=(500, 500))
frame.Show(True)
messageTxt = StyledTextCtrl(frame, id=wx.ID_ANY, pos=(0, 0), size=(100 * 3, 100), style=wx.TE_MULTILINE, name="File")
messageTxt.SetText("This styled text is read only")
messageTxt.SetReadOnly(True)
app.SetTopWindow(frame)
app.MainLoop()

Edit: Toggling the SetReadOnly flag will allow the program to alter the text, rather than the user.
i.e.:

import wx
from wx.stc import StyledTextCtrl

class MyFrame(wx.Frame):
    def __init__(self, parent, id=wx.ID_ANY, title="", pos=wx.DefaultPosition, size=(400,500), style=wx.DEFAULT_FRAME_STYLE, name="MyFrame"):
        super(MyFrame, self).__init__(parent, id, title, pos, size, style, name)

        self.messageTxt = StyledTextCtrl(self, id=wx.ID_ANY, pos=(10,10), size=(300,100), style=wx.TE_MULTILINE)
        self.messageTxt.SetText("This styled text is read only")
        self.messageTxt.SetReadOnly(True)
        self.timer = wx.Timer(self)
        self.Bind(wx.EVT_TIMER, self.onTimer, self.timer)
        self.timer.StartOnce(5000)


    def onTimer(self, event):
        print("timer")
        self.messageTxt.SetReadOnly(False)
        self.messageTxt.AppendText("\nThis styled text was briefly read only")
        self.messageTxt.AppendText("\nNow it's read only again!")
        self.messageTxt.SetReadOnly(True)

app = wx.App()
frame = MyFrame(None, title="The Main Frame")
frame.Show(True)
app.MainLoop()