Exemple #1
0
 def __init__(self, parent, **kwargs):
     PeppySTC.__init__(self, parent, **kwargs)
     self.pipe=None
     self.waiting=False
     self.promptPosEnd=0
     self.filter=1
     self.more=0
Exemple #2
0
 def __init__(self, parent, **kwargs):
     PeppySTC.__init__(self, parent, **kwargs)
     self.pipe = None
     self.waiting = False
     self.promptPosEnd = 0
     self.filter = 1
     self.more = 0
Exemple #3
0
 def __init__(self, *args, **kwargs):
     PeppySTC.__init__(self, *args, **kwargs)
     self.Bind(wx.EVT_LEFT_DCLICK, self.OnDoubleClick)
     
     self.IndicatorSetStyle(0, wx.stc.STC_INDIC_TT)
     self.IndicatorSetForeground(0, wx.RED)
     
     self.filere = re.compile(self.classprefs.filename_match_regex)
     self.stdre = re.compile("^((?:[a-zA-Z]:)?.+):([0-9]+):")
Exemple #4
0
    def __init__(self, *args, **kwargs):
        PeppySTC.__init__(self, *args, **kwargs)
        self.Bind(wx.EVT_LEFT_DCLICK, self.OnDoubleClick)

        self.IndicatorSetStyle(0, wx.stc.STC_INDIC_TT)
        self.IndicatorSetForeground(0, wx.RED)

        self.filere = re.compile(self.classprefs.filename_match_regex)
        self.stdre = re.compile("^((?:[a-zA-Z]:)?.+):([0-9]+):")