git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9595
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
def __init__(self, parent, ID):
wxStyledTextCtrl.__init__(self, parent, ID)
def __init__(self, parent, ID):
wxStyledTextCtrl.__init__(self, parent, ID)
+ self.CmdKeyAssign(ord('B'), wxSTC_SCMOD_CTRL, wxSTC_CMD_ZOOMIN)
+ self.CmdKeyAssign(ord('N'), wxSTC_SCMOD_CTRL, wxSTC_CMD_ZOOMOUT)
+
self.SetLexer(wxSTC_LEX_PYTHON)
self.SetKeyWords(0, string.join(keyword.kwlist))
self.SetLexer(wxSTC_LEX_PYTHON)
self.SetKeyWords(0, string.join(keyword.kwlist))