Exemplo n.º 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
Exemplo n.º 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
Exemplo n.º 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
Exemplo n.º 4
0
 def __init__(self, parent, model):
     EditorStyledTextCtrl.__init__(self, parent, wxID_XMLSOURCEVIEW, model,
                                   (), -1)
     XMLStyledTextCtrlMix.__init__(self, wxID_XMLSOURCEVIEW)
     self.active = True
Exemplo n.º 5
0
 def __init__(self, parent, model):
     EditorStyledTextCtrl.__init__(self, parent, wxID_CONFIGVIEW, model, (),
                                   -1)
     ConfigSTCMix.__init__(self, wxID_CONFIGVIEW)
     self.active = True
Exemplo n.º 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
Exemplo n.º 7
0
 def __init__(self, parent, model):
     EditorStyledTextCtrl.__init__(self, parent, wxID_XMLSOURCEVIEW, model, (), -1)
     XMLStyledTextCtrlMix.__init__(self, wxID_XMLSOURCEVIEW)
     self.active = True
Exemplo n.º 8
0
 def __init__(self, parent, model):
     EditorStyledTextCtrl.__init__(self, parent, wxID_CONFIGVIEW, model, (), -1)
     ConfigSTCMix.__init__(self, wxID_CONFIGVIEW)
     self.active = True