Beispiel #1
0
 def __init__(self, parent, model, actions=()):
     wxID_ZOPEHTMLSOURCEVIEW = wx.NewId()
     EditorStyledTextCtrl.__init__(
         self, parent, wxID_ZOPEHTMLSOURCEVIEW, model,
         (('Refresh', self.OnRefresh, '-', 'Refresh'), ) + actions, -1)
     ZopeHTMLStyledTextCtrlMix.__init__(self, wxID_ZOPEHTMLSOURCEVIEW)
     self.active = True
Beispiel #2
0
 def __init__(self, parent, model):
     EditorStyledTextCtrl.__init__(self, parent, wxID_CPPSOURCEVIEW, model,
                                   (), -1)
     CPPStyledTextCtrlMix.__init__(self, wxID_CPPSOURCEVIEW)
     FoldingStyledTextCtrlMix.__init__(self, wxID_CPPSOURCEVIEW,
                                       symbolFolding)
     self.active = True
Beispiel #3
0
 def __init__(self, parent, model, actions=()):
     wxID_ZOPEHTMLSOURCEVIEW = wx.NewId()
     EditorStyledTextCtrl.__init__(
         self, parent, wxID_ZOPEHTMLSOURCEVIEW, model, (("Refresh", self.OnRefresh, "-", "Refresh"),) + actions, -1
     )
     ZopeHTMLStyledTextCtrlMix.__init__(self, wxID_ZOPEHTMLSOURCEVIEW)
     self.active = True
 def __init__(self, parent, model):
     EditorStyledTextCtrl.__init__(self, parent, wxID_XMLSOURCEVIEW, model,
                                   (), -1)
     XMLStyledTextCtrlMix.__init__(self, wxID_XMLSOURCEVIEW)
     self.active = True
Beispiel #5
0
 def __init__(self, parent, model):
     EditorStyledTextCtrl.__init__(self, parent, wxID_CONFIGVIEW, model, (),
                                   -1)
     ConfigSTCMix.__init__(self, wxID_CONFIGVIEW)
     self.active = True
Beispiel #6
0
 def __init__(self, parent, model):
     EditorStyledTextCtrl.__init__(self, parent, wxID_CPPSOURCEVIEW,
       model, (), -1)
     CPPStyledTextCtrlMix.__init__(self, wxID_CPPSOURCEVIEW)
     FoldingStyledTextCtrlMix.__init__(self, wxID_CPPSOURCEVIEW, symbolFolding)
     self.active = True
Beispiel #7
0
 def __init__(self, parent, model):
     EditorStyledTextCtrl.__init__(self, parent, wxID_XMLSOURCEVIEW, model, (), -1)
     XMLStyledTextCtrlMix.__init__(self, wxID_XMLSOURCEVIEW)
     self.active = True
 def __init__(self, parent, model):
     EditorStyledTextCtrl.__init__(self, parent, wxID_CONFIGVIEW, model, (), -1)
     ConfigSTCMix.__init__(self, wxID_CONFIGVIEW)
     self.active = True