messageservice.py

来自「wxPython的基本示例程序」· Python 代码 · 共 172 行

PY
172
字号
#----------------------------------------------------------------------------# Name:         MessageService.py# Purpose:      Message View Service for pydocview## Author:       Morgan Hua## Created:      9/2/04# CVS-ID:       $Id: MessageService.py,v 1.3 2006/04/20 06:25:59 RD Exp $# Copyright:    (c) 2004-2005 ActiveGrid, Inc.# License:      wxWindows License#----------------------------------------------------------------------------import wximport Serviceimport STCTextEditor#----------------------------------------------------------------------------# Utility#----------------------------------------------------------------------------def ClearMessages():    messageService = wx.GetApp().GetService(MessageService)    view = messageService.GetView()    if view:        view.ClearLines()def ShowMessages(messages, clear=False):    if ((messages != None) and (len(messages) > 0)):        messageService = wx.GetApp().GetService(MessageService)        messageService.ShowWindow(True)        view = messageService.GetView()        if view:            if (clear):                view.ClearLines()            for message in messages:                view.AddLines(message)                view.AddLines("\n")#----------------------------------------------------------------------------# Classes#----------------------------------------------------------------------------class MessageView(Service.ServiceView):    """ Reusable Message View for any document.        When an item is selected, the document view is called back (with DoSelectCallback) to highlight and display the corresponding item in the document view.    """    #----------------------------------------------------------------------------    # Overridden methods    #----------------------------------------------------------------------------    def _CreateControl(self, parent, id):        txtCtrl = STCTextEditor.TextCtrl(parent, id)        txtCtrl.SetMarginWidth(1, 0)  # hide line numbers        txtCtrl.SetReadOnly(True)        if wx.Platform == '__WXMSW__':            font = "Courier New"        else:            font = "Courier"        txtCtrl.SetFont(wx.Font(10, wx.DEFAULT, wx.NORMAL, wx.NORMAL, faceName = font))        txtCtrl.SetFontColor(wx.BLACK)        txtCtrl.StyleClearAll()        txtCtrl.UpdateStyles()        wx.EVT_SET_FOCUS(txtCtrl, self.OnFocus)        return txtCtrl    def GetDocument(self):        return None    def OnFocus(self, event):        wx.GetApp().GetDocumentManager().ActivateView(self)        event.Skip()    def ProcessEvent(self, event):        stcControl = self.GetControl()        if not isinstance(stcControl, wx.stc.StyledTextCtrl):            return wx.lib.docview.View.ProcessEvent(self, event)        id = event.GetId()        if id == wx.ID_COPY:            stcControl.Copy()            return True        elif id == wx.ID_CLEAR:            stcControl.Clear()            return True        elif id == wx.ID_SELECTALL:            stcControl.SetSelection(0, -1)            return True    def ProcessUpdateUIEvent(self, event):        stcControl = self.GetControl()        if not isinstance(stcControl, wx.stc.StyledTextCtrl):            return wx.lib.docview.View.ProcessUpdateUIEvent(self, event)        id = event.GetId()        if id == wx.ID_CUT or id == wx.ID_PASTE:            # I don't think cut or paste makes sense from a message/log window.            event.Enable(False)            return True        elif id == wx.ID_COPY:            hasSelection = (stcControl.GetSelectionStart() != stcControl.GetSelectionEnd())             event.Enable(hasSelection)            return True        elif id == wx.ID_CLEAR:            event.Enable(True)  # wxBug: should be stcControl.CanCut()) but disabling clear item means del key doesn't work in control as expected            return True        elif id == wx.ID_SELECTALL:            event.Enable(stcControl.GetTextLength() > 0)            return True            #----------------------------------------------------------------------------    # Service specific methods    #----------------------------------------------------------------------------    def ClearLines(self):        self.GetControl().SetReadOnly(False)        self.GetControl().ClearAll()        self.GetControl().SetReadOnly(True)    def AddLines(self, text):        self.GetControl().SetCurrentPos(self.GetControl().GetTextLength())        self.GetControl().SetReadOnly(False)        self.GetControl().AddText(text)        self.GetControl().SetReadOnly(True)    def GetText(self):        return self.GetControl().GetText()    def GetCurrentPos(self):        return self.GetControl().GetCurrentPos()    def GetCurrLine(self):        return self.GetControl().GetCurLine()    #----------------------------------------------------------------------------    # Callback Methods    #----------------------------------------------------------------------------    def SetCallback(self, callback):        """ Sets in the event table for a doubleclick to invoke the given callback.            Additional calls to this method overwrites the previous entry and only the last set callback will be invoked.        """        wx.stc.EVT_STC_DOUBLECLICK(self.GetControl(), self.GetControl().GetId(), callback)class MessageService(Service.Service):    #----------------------------------------------------------------------------    # Constants    #----------------------------------------------------------------------------    SHOW_WINDOW = wx.NewId()  # keep this line for each subclass, need unique ID for each Service    #----------------------------------------------------------------------------    # Overridden methods    #----------------------------------------------------------------------------    def _CreateView(self):        return MessageView(self)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?