5 lines
214 B

import wx
class BasicTextConsole(wx.TextCtrl):
def __init__(self, parent):
super(BasicTextConsole, self).__init__(parent, -1, "", style=wx.TE_MULTILINE | wx.TE_READONLY | wx.TE_RICH | wx.TE_AUTO_URL )