X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/88535d8ed59e42ca5a8465355526052f19ed4174..68fc5c8025e38b9d827383fbfe7ce509ae331c1f:/wxPython/demo/RichTextCtrl.py diff --git a/wxPython/demo/RichTextCtrl.py b/wxPython/demo/RichTextCtrl.py index c31b5aa48d..5cf36b7f4d 100644 --- a/wxPython/demo/RichTextCtrl.py +++ b/wxPython/demo/RichTextCtrl.py @@ -17,7 +17,7 @@ class RichTextFrame(wx.Frame): self.rtc = rt.RichTextCtrl(self, style=wx.VSCROLL|wx.HSCROLL|wx.NO_BORDER); wx.CallAfter(self.rtc.SetFocus) - + self.rtc.Freeze() self.rtc.BeginSuppressUndo() self.rtc.BeginParagraphSpacing(0, 20) @@ -86,12 +86,12 @@ class RichTextFrame(wx.Frame): self.rtc.BeginLeftIndent(100, -40) self.rtc.Newline() - self.rtc.WriteText("It was in January, the most down-trodden month of an Edinburgh winteself.rtc. An attractive woman came into the cafe, which is nothing remarkable.") + self.rtc.WriteText("It was in January, the most down-trodden month of an Edinburgh winter. An attractive woman came into the cafe, which is nothing remarkable.") self.rtc.EndLeftIndent() self.rtc.Newline() - self.rtc.WriteText("Numbered bullets are possible, again using subindents:") + self.rtc.WriteText("Numbered bullets are possible, again using sub-indents:") self.rtc.BeginNumberedBullet(1, 100, 60) self.rtc.Newline() @@ -172,7 +172,8 @@ class RichTextFrame(wx.Frame): self.rtc.EndParagraphSpacing() self.rtc.EndSuppressUndo() - + self.rtc.Thaw() + def OnFileOpen(self, evt): # TODO: Use RichTextBuffer.GetExtWildcard to get the wildcard string @@ -202,7 +203,8 @@ class RichTextFrame(wx.Frame): path = dlg.GetPath() if path: self.rtc.SaveFile(path) - + dlg.Destroy() + def OnFileViewHTML(self, evt): pass