controls/LogViewer.py
author Laurent Bessard
Fri, 15 Mar 2013 00:01:36 +0100
changeset 983 7dd481eef3b5
parent 982 e3c264099bd0
child 984 2d03056993f6
permissions -rw-r--r--
Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
     1
#!/usr/bin/env python
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
     2
# -*- coding: utf-8 -*-
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
     3
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
     4
#This file is part of PLCOpenEditor, a library implementing an IEC 61131-3 editor
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
     5
#based on the plcopen standard. 
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
     6
#
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
     7
#Copyright (C) 2013: Edouard TISSERANT and Laurent BESSARD
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
     8
#
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
     9
#See COPYING file for copyrights details.
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    10
#
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    11
#This library is free software; you can redistribute it and/or
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    12
#modify it under the terms of the GNU General Public
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    13
#License as published by the Free Software Foundation; either
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    14
#version 2.1 of the License, or (at your option) any later version.
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    15
#
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    16
#This library is distributed in the hope that it will be useful,
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    17
#but WITHOUT ANY WARRANTY; without even the implied warranty of
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    18
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    19
#General Public License for more details.
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    20
#
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    21
#You should have received a copy of the GNU General Public
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    22
#License along with this library; if not, write to the Free Software
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    23
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    24
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    25
from datetime import datetime
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    26
from time import time as gettime
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
    27
import numpy
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    28
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    29
import wx
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    30
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    31
from graphics import DebugViewer, REFRESH_PERIOD
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    32
from targets.typemapping import LogLevelsCount, LogLevels
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    33
from util.BitmapLibrary import GetBitmap
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    34
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    35
THUMB_SIZE_RATIO = 1. / 8.
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    36
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
    37
class LogScrollBar(wx.Panel):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    38
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    39
    def __init__(self, parent, size):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    40
        wx.Panel.__init__(self, parent, size=size)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    41
        self.Bind(wx.EVT_LEFT_DOWN, self.OnLeftDown)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    42
        self.Bind(wx.EVT_LEFT_UP, self.OnLeftUp)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    43
        self.Bind(wx.EVT_MOTION, self.OnMotion)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    44
        self.Bind(wx.EVT_PAINT, self.OnPaint)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    45
        self.Bind(wx.EVT_SIZE, self.OnResize)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    46
        
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    47
        self.ThumbPosition = 0. # -1 <= ThumbPosition <= 1
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    48
        self.ThumbScrollingStartPos = None
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    49
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    50
    def GetRangeRect(self):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    51
        width, height = self.GetClientSize()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    52
        return wx.Rect(0, width, width, height - 2 * width)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    53
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    54
    def GetThumbRect(self):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    55
        width, height = self.GetClientSize()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    56
        range_rect = self.GetRangeRect()
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    57
        thumb_size = range_rect.height * THUMB_SIZE_RATIO
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    58
        thumb_range = range_rect.height - thumb_size
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    59
        thumb_center_position = (thumb_size + (self.ThumbPosition + 1) * thumb_range) / 2.
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    60
        thumb_start = int(thumb_center_position - thumb_size / 2.)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    61
        thumb_end = int(thumb_center_position + thumb_size / 2.)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    62
        return wx.Rect(1, range_rect.y + thumb_start, width - 1, thumb_end - thumb_start)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    63
    
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    64
    def RefreshThumbPosition(self, thumb_position=None):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    65
        if thumb_position is None:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    66
            thumb_position = self.ThumbPosition
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    67
        if self.Parent.IsMessagePanelTop():
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    68
            thumb_position = max(0., thumb_position)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    69
        if self.Parent.IsMessagePanelBottom():
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    70
            thumb_position = min(0., thumb_position)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    71
        if thumb_position != self.ThumbPosition:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    72
            self.ThumbPosition = thumb_position
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    73
            self.Parent.SetScrollSpeed(self.ThumbPosition)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    74
        self.Refresh()
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    75
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    76
    def OnLeftDown(self, event):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    77
        self.CaptureMouse()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    78
        posx, posy = event.GetPosition()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    79
        width, height = self.GetClientSize()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    80
        range_rect = self.GetRangeRect()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    81
        thumb_rect = self.GetThumbRect()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    82
        if range_rect.InsideXY(posx, posy):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    83
            if thumb_rect.InsideXY(posx, posy):
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    84
                self.ThumbScrollingStartPos = wx.Point(posx, posy)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    85
            elif posy < thumb_rect.y:
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    86
                self.Parent.ScrollToLast()
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    87
            elif posy > thumb_rect.y + thumb_rect.height:
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    88
                self.Parent.ScrollToFirst()
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    89
        elif posy < width:
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
    90
            self.Parent.ScrollMessagePanelByTimestamp(1)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    91
        elif posy > height - width:
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
    92
            self.Parent.ScrollMessagePanelByTimestamp(-1)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    93
        event.Skip()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    94
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    95
    def OnLeftUp(self, event):
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    96
        self.ThumbScrollingStartPos = None
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    97
        self.RefreshThumbPosition(0.)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    98
        if self.HasCapture():
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    99
            self.ReleaseMouse()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   100
        event.Skip()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   101
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   102
    def OnMotion(self, event):
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   103
        if event.Dragging() and self.ThumbScrollingStartPos is not None:
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   104
            posx, posy = event.GetPosition()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   105
            width, height = self.GetClientSize()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   106
            range_rect = self.GetRangeRect()
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   107
            thumb_size = range_rect.height * THUMB_SIZE_RATIO
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   108
            thumb_range = range_rect.height - thumb_size
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   109
            self.RefreshThumbPosition(
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   110
                max(-1., min((posy - self.ThumbScrollingStartPos.y) * 2. / thumb_range, 1.)))
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   111
        event.Skip()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   112
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   113
    def OnResize(self, event):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   114
        self.Refresh()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   115
        event.Skip()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   116
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   117
    def OnPaint(self, event):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   118
        dc = wx.BufferedPaintDC(self)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   119
        dc.Clear()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   120
        dc.BeginDrawing()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   121
        
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   122
        width, height = self.GetClientSize()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   123
        
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   124
        thumb_rect = self.GetThumbRect()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   125
        exclusion_rect = wx.Rect(thumb_rect.x, thumb_rect.y,
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   126
                                 thumb_rect.width, thumb_rect.height)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   127
        if self.Parent.IsMessagePanelTop():
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   128
            exclusion_rect.y, exclusion_rect.height = width, exclusion_rect.y + exclusion_rect.height - width
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   129
        if self.Parent.IsMessagePanelBottom():
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   130
            exclusion_rect.height = height - width - exclusion_rect.y
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   131
        if exclusion_rect != thumb_rect:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   132
            colour = wx.NamedColour("LIGHT GREY")
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   133
            dc.SetPen(wx.Pen(colour))
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   134
            dc.SetBrush(wx.Brush(colour))
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   135
        
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   136
            dc.DrawRectangle(exclusion_rect.x, exclusion_rect.y, 
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   137
                             exclusion_rect.width, exclusion_rect.height)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   138
        
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   139
        dc.SetPen(wx.GREY_PEN)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   140
        dc.SetBrush(wx.GREY_BRUSH)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   141
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   142
        dc.DrawPolygon([wx.Point(width / 2, 1),
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   143
                        wx.Point(1, width - 2),
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   144
                        wx.Point(width - 1, width - 2)])
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   145
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   146
        dc.DrawPolygon([wx.Point(width / 2, height - 1),
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   147
                        wx.Point(2, height - width + 1),
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   148
                        wx.Point(width - 1, height - width + 1)])
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   149
            
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   150
        dc.DrawRectangle(thumb_rect.x, thumb_rect.y, 
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   151
                         thumb_rect.width, thumb_rect.height)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   152
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   153
        dc.EndDrawing()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   154
        event.Skip()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   155
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   156
BUTTON_SIZE = (30, 15)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   157
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   158
class LogButton():
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   159
    
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   160
    def __init__(self, label, callback):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   161
        self.Position = wx.Point(0, 0)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   162
        self.Size = wx.Size(*BUTTON_SIZE)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   163
        if wx.Platform == '__WXMSW__':
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   164
            self.Font = wx.Font(8, wx.SWISS, wx.NORMAL, wx.NORMAL, faceName='Courier New')
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   165
        else:
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   166
            self.Font = wx.Font(10, wx.SWISS, wx.NORMAL, wx.NORMAL, faceName='Courier')
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   167
        self.Label = label
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   168
        self.Shown = True
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   169
        self.Callback = callback
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   170
    
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   171
    def __del__(self):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   172
        self.callback = None
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   173
    
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   174
    def GetSize(self):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   175
        return self.Size
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   176
    
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   177
    def SetPosition(self, x, y):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   178
        self.Position = wx.Point(x, y)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   179
    
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   180
    def HitTest(self, x, y):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   181
        rect = wx.Rect(self.Position.x, self.Position.y, 
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   182
                       self.Size.width, self.Size.height)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   183
        if rect.InsideXY(x, y):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   184
            return True
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   185
        return False
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   186
    
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   187
    def ProcessCallback(self):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   188
        if self.Callback is not None:
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   189
            wx.CallAfter(self.Callback)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   190
            
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   191
    def Draw(self, dc):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   192
        dc.SetPen(wx.TRANSPARENT_PEN)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   193
        dc.SetBrush(wx.Brush(wx.NamedColour("LIGHT GREY")))
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   194
        
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   195
        dc.DrawRectangle(self.Position.x, self.Position.y, 
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   196
                         self.Size.width, self.Size.height)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   197
        
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   198
        dc.SetFont(self.Font)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   199
        
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   200
        w, h = dc.GetTextExtent(self.Label)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   201
        dc.DrawText(self.Label, 
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   202
            self.Position.x + (self.Size.width - w) / 2, 
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   203
            self.Position.y + (self.Size.height - h) / 2)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   204
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   205
DATE_INFO_SIZE = 10
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   206
MESSAGE_INFO_SIZE = 30
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   207
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   208
class LogMessage:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   209
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   210
    def __init__(self, tv_sec, tv_nsec, level, level_bitmap, msg):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   211
        self.Date = datetime.fromtimestamp(tv_sec)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   212
        self.Seconds = self.Date.second + tv_nsec * 1e-9
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   213
        self.Date = self.Date.replace(second=0)
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   214
        self.Timestamp = tv_sec + tv_nsec * 1e-9
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   215
        self.Level = level
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   216
        self.LevelBitmap = level_bitmap
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   217
        self.Message = msg
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   218
        self.DrawDate = True
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   219
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   220
    def __cmp__(self, other):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   221
        if self.Date == other.Date:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   222
            return cmp(self.Seconds, other.Seconds)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   223
        return cmp(self.Date, other.Date)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   224
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   225
    def Draw(self, dc, offset, width, draw_date):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   226
        if draw_date:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   227
            datetime_text = self.Date.strftime("%d/%m/%y %H:%M")
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   228
            dw, dh = dc.GetTextExtent(datetime_text)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   229
            dc.DrawText(datetime_text, (width - dw) / 2, offset + (DATE_INFO_SIZE - dh) / 2)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   230
            offset += DATE_INFO_SIZE
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   231
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   232
        seconds_text = "%12.9f" % self.Seconds
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   233
        sw, sh = dc.GetTextExtent(seconds_text)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   234
        dc.DrawText(seconds_text, 5, offset + (MESSAGE_INFO_SIZE - sh) / 2)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   235
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   236
        bw, bh = self.LevelBitmap.GetWidth(), self.LevelBitmap.GetHeight()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   237
        dc.DrawBitmap(self.LevelBitmap, 10 + sw, offset + (MESSAGE_INFO_SIZE - bh) / 2)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   238
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   239
        mw, mh = dc.GetTextExtent(self.Message)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   240
        dc.DrawText(self.Message, 15 + sw + bw, offset + (MESSAGE_INFO_SIZE - mh) / 2)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   241
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   242
    def GetHeight(self, draw_date):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   243
        if draw_date:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   244
            return DATE_INFO_SIZE + MESSAGE_INFO_SIZE
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   245
        return MESSAGE_INFO_SIZE
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   246
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   247
SECOND = 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   248
MINUTE = 60 * SECOND
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   249
HOUR = 60 * MINUTE
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   250
DAY = 24 * HOUR
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   251
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   252
CHANGE_TIMESTAMP_BUTTONS = [(_("1d"), DAY),
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   253
                            (_("1h"), HOUR),
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   254
                            (_("1m"), MINUTE)]
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   255
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   256
class LogViewer(DebugViewer, wx.Panel):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   257
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   258
    def __init__(self, parent, window):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   259
        wx.Panel.__init__(self, parent, style=wx.TAB_TRAVERSAL|wx.SUNKEN_BORDER)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   260
        DebugViewer.__init__(self, None, False, False)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   261
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   262
        main_sizer = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=5)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   263
        main_sizer.AddGrowableCol(0)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   264
        main_sizer.AddGrowableRow(1)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   265
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   266
        filter_sizer = wx.BoxSizer(wx.HORIZONTAL)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   267
        main_sizer.AddSizer(filter_sizer, border=5, flag=wx.TOP|wx.LEFT|wx.RIGHT|wx.GROW)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   268
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   269
        self.MessageFilter = wx.ComboBox(self, style=wx.CB_READONLY)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   270
        self.MessageFilter.Append(_("All"))
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   271
        levels = LogLevels[:3]
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   272
        levels.reverse()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   273
        for level in levels:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   274
            self.MessageFilter.Append(_(level))
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   275
        self.Bind(wx.EVT_COMBOBOX, self.OnMessageFilterChanged, self.MessageFilter)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   276
        filter_sizer.AddWindow(self.MessageFilter, 1, border=5, flag=wx.RIGHT|wx.GROW)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   277
        
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   278
        self.SearchMessage = wx.SearchCtrl(self, style=wx.TE_PROCESS_ENTER)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   279
        self.SearchMessage.ShowSearchButton(True)
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   280
        self.SearchMessage.ShowCancelButton(True)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   281
        self.Bind(wx.EVT_TEXT_ENTER, self.OnSearchMessageChanged, self.SearchMessage)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   282
        self.Bind(wx.EVT_SEARCHCTRL_SEARCH_BTN, 
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   283
              self.OnSearchMessageSearchButtonClick, self.SearchMessage)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   284
        self.Bind(wx.EVT_SEARCHCTRL_CANCEL_BTN, 
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   285
              self.OnSearchMessageCancelButtonClick, self.SearchMessage)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   286
        filter_sizer.AddWindow(self.SearchMessage, 3, flag=wx.GROW)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   287
        
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   288
        message_panel_sizer = wx.FlexGridSizer(cols=2, hgap=0, rows=1, vgap=0)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   289
        message_panel_sizer.AddGrowableCol(0)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   290
        message_panel_sizer.AddGrowableRow(0)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   291
        main_sizer.AddSizer(message_panel_sizer, border=5, flag=wx.LEFT|wx.RIGHT|wx.BOTTOM|wx.GROW)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   292
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   293
        self.MessagePanel = wx.Panel(self)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   294
        if wx.Platform == '__WXMSW__':
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   295
            self.Font = wx.Font(10, wx.SWISS, wx.NORMAL, wx.NORMAL, faceName='Courier New')
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   296
        else:
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   297
            self.Font = wx.Font(12, wx.SWISS, wx.NORMAL, wx.NORMAL, faceName='Courier')
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   298
        self.MessagePanel.Bind(wx.EVT_LEFT_DOWN, self.OnMessagePanelLeftDown)
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   299
        self.MessagePanel.Bind(wx.EVT_MOUSEWHEEL, self.OnMessagePanelMouseWheel)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   300
        self.MessagePanel.Bind(wx.EVT_PAINT, self.OnMessagePanelPaint)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   301
        self.MessagePanel.Bind(wx.EVT_SIZE, self.OnMessagePanelResize)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   302
        message_panel_sizer.AddWindow(self.MessagePanel, flag=wx.GROW)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   303
        
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   304
        self.MessageScrollBar = LogScrollBar(self, wx.Size(16, -1))
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   305
        message_panel_sizer.AddWindow(self.MessageScrollBar, flag=wx.GROW)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   306
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   307
        self.SetSizer(main_sizer)
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   308
        
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   309
        self.LeftButtons = []
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   310
        for label, callback in [("+" + text, self.GenerateOnDurationButton(duration)) 
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   311
                                for text, duration in CHANGE_TIMESTAMP_BUTTONS]:
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   312
            self.LeftButtons.append(LogButton(label, callback))
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   313
        
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   314
        self.RightButtons = []
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   315
        for label, callback in [("-" + text, self.GenerateOnDurationButton(-duration)) 
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   316
                                for text, duration in CHANGE_TIMESTAMP_BUTTONS]:
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   317
            self.RightButtons.append(LogButton(label, callback))
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   318
        
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   319
        self.MessageFilter.SetSelection(0)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   320
        self.LogSource = None
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   321
        self.ResetLogMessages()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   322
        self.ParentWindow = window
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   323
    
979
1a68113a323d Fixed conflicting icon names on Windows
Laurent Bessard
parents: 978
diff changeset
   324
        self.LevelIcons = [GetBitmap("LOG_" + level) for level in LogLevels]
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   325
        self.LevelFilters = [range(i) for i in xrange(4, 0, -1)]
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   326
        self.CurrentFilter = self.LevelFilters[0]
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   327
        self.CurrentSearchValue = ""
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   328
        
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   329
        self.ScrollSpeed = 0.
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   330
        self.LastStartTime = None
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   331
        self.ScrollTimer = wx.Timer(self, -1)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   332
        self.Bind(wx.EVT_TIMER, self.OnScrollTimer, self.ScrollTimer)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   333
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   334
    def __del__(self):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   335
        self.ScrollTimer.Stop()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   336
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   337
    def ResetLogMessages(self):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   338
        self.previous_log_count = [None]*LogLevelsCount
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   339
        self.OldestMessages = []
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   340
        self.LogMessages = []
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   341
        self.LogMessagesTimestamp = numpy.array([])
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   342
        self.CurrentMessage = None
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   343
        self.HasNewData = False
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   344
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   345
    def SetLogSource(self, log_source):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   346
        self.LogSource = log_source
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   347
        if log_source is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   348
            self.ResetLogMessages()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   349
            self.RefreshView()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   350
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   351
    def GetLogMessageFromSource(self, msgidx, level):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   352
        if self.LogSource is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   353
            answer = self.LogSource.GetLogMessage(level, msgidx)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   354
            if answer is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   355
                msg, tick, tv_sec, tv_nsec = answer
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   356
                return LogMessage(tv_sec, tv_nsec, level, self.LevelIcons[level], msg)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   357
        return None
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   358
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   359
    def SetLogCounters(self, log_count):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   360
        new_messages = []
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   361
        for level, count, prev in zip(xrange(LogLevelsCount), log_count, self.previous_log_count):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   362
            if count is not None and prev != count:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   363
                if prev is None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   364
                    dump_end = count - 2
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   365
                else:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   366
                    dump_end = prev - 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   367
                for msgidx in xrange(count-1, dump_end,-1):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   368
                    new_message = self.GetLogMessageFromSource(msgidx, level)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   369
                    if new_message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   370
                        if prev is None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   371
                            self.OldestMessages.append((msgidx, new_message))
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   372
                            if len(new_messages) == 0 or new_message > new_messages[0]:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   373
                                new_messages = [new_message]
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   374
                        else:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   375
                            new_messages.insert(0, new_message)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   376
                    else:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   377
                        if prev is None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   378
                            self.OldestMessages.append((-1, None))
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   379
                        break
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   380
                self.previous_log_count[level] = count
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   381
        new_messages.sort()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   382
        if len(new_messages) > 0:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   383
            self.HasNewData = True
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   384
            old_length = len(self.LogMessages)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   385
            for new_message in new_messages:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   386
                self.LogMessages.append(new_message)
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   387
                self.LogMessagesTimestamp = numpy.append(self.LogMessagesTimestamp, [new_message.Timestamp])
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   388
            if self.CurrentMessage is None or self.CurrentMessage == old_length - 1:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   389
                self.CurrentMessage = len(self.LogMessages) - 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   390
            self.NewDataAvailable(None)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   391
    
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   392
    def FilterLogMessage(self, message, timestamp=None):
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   393
        return (message.Level in self.CurrentFilter and 
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   394
                message.Message.find(self.CurrentSearchValue) != -1 and
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   395
                (timestamp is None or message.Timestamp < timestamp))
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   396
    
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   397
    def GetMessageByTimestamp(self, timestamp):
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   398
        if self.CurrentMessage is not None:
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   399
            msgidx = numpy.argmin(abs(self.LogMessagesTimestamp - timestamp))
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   400
            message = self.LogMessages[msgidx]
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   401
            if self.FilterLogMessage(message) and message.Timestamp > timestamp:
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   402
                return self.GetPreviousMessage(msgidx, timestamp)
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   403
            return message, msgidx
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   404
        return None, None
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   405
    
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   406
    def GetNextMessage(self, msgidx):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   407
        while msgidx < len(self.LogMessages) - 1:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   408
            message = self.LogMessages[msgidx + 1]
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   409
            if self.FilterLogMessage(message):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   410
                return message, msgidx + 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   411
            msgidx += 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   412
        return None, None
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   413
    
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   414
    def GetPreviousMessage(self, msgidx, timestamp=None):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   415
        message = None
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   416
        while 0 < msgidx < len(self.LogMessages):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   417
            message = self.LogMessages[msgidx - 1]
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   418
            if self.FilterLogMessage(message, timestamp):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   419
                return message, msgidx - 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   420
            msgidx -= 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   421
        if len(self.LogMessages) > 0:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   422
            message = self.LogMessages[0]
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   423
            while message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   424
                level = message.Level
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   425
                oldest_msgidx, oldest_message = self.OldestMessages[level]
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   426
                if oldest_msgidx > 0:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   427
                    old_message = self.GetLogMessageFromSource(oldest_msgidx - 1, level)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   428
                    if old_message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   429
                        self.OldestMessages[level] = (oldest_msgidx - 1, old_message)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   430
                    else:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   431
                        self.OldestMessages[level] = (-1, None)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   432
                else:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   433
                    self.OldestMessages[level] = (-1, None)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   434
                message = None
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   435
                for idx, msg in self.OldestMessages:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   436
                    if msg is not None and (message is None or msg > message):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   437
                        message = msg
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   438
                if message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   439
                    self.LogMessages.insert(0, message)
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   440
                    self.LogMessagesTimestamp = numpy.insert(self.LogMessagesTimestamp, [0], [message.Timestamp])
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   441
                    if self.CurrentMessage is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   442
                        self.CurrentMessage += 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   443
                    else:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   444
                        self.CurrentMessage = 0
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   445
                    if self.FilterLogMessage(message, timestamp):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   446
                        return message, 0
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   447
        return None, None
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   448
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   449
    def RefreshNewData(self, *args, **kwargs):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   450
        if self.HasNewData:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   451
            self.HasNewData = False
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   452
            self.RefreshView()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   453
        DebugViewer.RefreshNewData(self, *args, **kwargs)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   454
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   455
    def RefreshView(self):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   456
        width, height = self.MessagePanel.GetClientSize()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   457
        bitmap = wx.EmptyBitmap(width, height)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   458
        dc = wx.BufferedDC(wx.ClientDC(self.MessagePanel), bitmap)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   459
        dc.Clear()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   460
        dc.BeginDrawing()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   461
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   462
        if self.CurrentMessage is not None:
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   463
            
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   464
            for button in self.LeftButtons + self.RightButtons:
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   465
                button.Draw(dc)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   466
            
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   467
            dc.SetFont(self.Font)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   468
            
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   469
            message_idx = self.CurrentMessage
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   470
            message = self.LogMessages[message_idx]
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   471
            draw_date = True
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   472
            offset = 5
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   473
            while offset < height and message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   474
                message.Draw(dc, offset, width, draw_date)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   475
                offset += message.GetHeight(draw_date)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   476
                
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   477
                previous_message, message_idx = self.GetPreviousMessage(message_idx)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   478
                if previous_message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   479
                    draw_date = message.Date != previous_message.Date
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   480
                message = previous_message
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   481
        
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   482
        dc.EndDrawing()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   483
        
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   484
        self.MessageScrollBar.RefreshThumbPosition()
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   485
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   486
    def IsMessagePanelTop(self, message_idx=None):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   487
        if message_idx is None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   488
            message_idx = self.CurrentMessage
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   489
        if message_idx is not None:
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   490
            return self.GetNextMessage(message_idx)[0] is None
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   491
        return True
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   492
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   493
    def IsMessagePanelBottom(self, message_idx=None):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   494
        if message_idx is None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   495
            message_idx = self.CurrentMessage
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   496
        if message_idx is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   497
            width, height = self.MessagePanel.GetClientSize()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   498
            offset = 5
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   499
            message = self.LogMessages[message_idx]
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   500
            draw_date = True
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   501
            while message is not None and offset < height:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   502
                offset += message.GetHeight(draw_date)
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   503
                previous_message, message_idx = self.GetPreviousMessage(message_idx)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   504
                if previous_message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   505
                    draw_date = message.Date != previous_message.Date
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   506
                message = previous_message
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   507
            return offset < height
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   508
        return True
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   509
    
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   510
    def ScrollMessagePanel(self, scroll):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   511
        if self.CurrentMessage is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   512
            message = self.LogMessages[self.CurrentMessage]
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   513
            while scroll > 0 and message is not None:
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   514
                message, msgidx = self.GetNextMessage(self.CurrentMessage)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   515
                if message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   516
                    self.CurrentMessage = msgidx
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   517
                    scroll -= 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   518
            while scroll < 0 and message is not None and not self.IsMessagePanelBottom():
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   519
                message, msgidx = self.GetPreviousMessage(self.CurrentMessage)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   520
                if message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   521
                    self.CurrentMessage = msgidx
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   522
                    scroll += 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   523
            self.RefreshView()
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   524
    
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   525
    def ScrollMessagePanelByTimestamp(self, seconds):
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   526
        if self.CurrentMessage is not None:
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   527
            current_message = self.LogMessages[self.CurrentMessage]
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   528
            message, msgidx = self.GetMessageByTimestamp(current_message.Timestamp + seconds)
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   529
            if message is None or self.IsMessagePanelBottom(msgidx):
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   530
                self.ScrollToFirst()
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   531
            else:
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   532
                self.CurrentMessage = msgidx
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   533
                self.Refresh()
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   534
            
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   535
    def ResetMessagePanel(self):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   536
        if len(self.LogMessages) > 0:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   537
            self.CurrentMessage = len(self.LogMessages) - 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   538
            message = self.LogMessages[self.CurrentMessage]
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   539
            while message is not None and not self.FilterLogMessage(message):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   540
                message, self.CurrentMessage = self.GetPreviousMessage(self.CurrentMessage)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   541
            self.RefreshView()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   542
    
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   543
    def OnMessageFilterChanged(self, event):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   544
        self.CurrentFilter = self.LevelFilters[self.MessageFilter.GetSelection()]
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   545
        self.ResetMessagePanel()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   546
        event.Skip()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   547
    
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   548
    def OnSearchMessageChanged(self, event):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   549
        self.CurrentSearchValue = self.SearchMessage.GetValue()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   550
        self.ResetMessagePanel()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   551
        event.Skip()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   552
        
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   553
    def OnSearchMessageSearchButtonClick(self, event):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   554
        self.CurrentSearchValue = self.SearchMessage.GetValue()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   555
        self.ResetMessagePanel()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   556
        event.Skip()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   557
    
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   558
    def OnSearchMessageCancelButtonClick(self, event):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   559
        self.CurrentSearchValue = ""
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   560
        self.SearchMessage.SetValue("")
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   561
        self.ResetMessagePanel()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   562
        event.Skip()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   563
    
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   564
    def GenerateOnDurationButton(self, duration):
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   565
        def OnDurationButton():
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   566
            self.ScrollMessagePanelByTimestamp(duration)
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   567
        return OnDurationButton
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   568
    
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   569
    def OnMessagePanelLeftDown(self, event):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   570
        if self.CurrentMessage is not None:
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   571
            posx, posy = event.GetPosition()
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   572
            for button in self.LeftButtons + self.RightButtons:
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   573
                if button.HitTest(posx, posy):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   574
                    button.ProcessCallback()
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   575
        event.Skip()
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   576
    
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   577
    def OnMessagePanelMouseWheel(self, event):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   578
        self.ScrollMessagePanel(event.GetWheelRotation() / event.GetWheelDelta())
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   579
        event.Skip()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   580
    
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   581
    def OnMessagePanelPaint(self, event):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   582
        self.RefreshView()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   583
        event.Skip()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   584
    
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   585
    def OnMessagePanelResize(self, event):
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   586
        if self.CurrentMessage is not None:
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   587
            width, height = self.MessagePanel.GetClientSize()
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   588
            offset = 2
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   589
            for button in self.LeftButtons:
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   590
                button.SetPosition(offset, 2)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   591
                w, h = button.GetSize()
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   592
                offset += w + 2
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   593
            offset = width - 2
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   594
            for button in self.RightButtons:
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   595
                w, h = button.GetSize()
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   596
                button.SetPosition(offset - w, 2)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   597
                offset -= w + 2
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   598
        if self.IsMessagePanelBottom():
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   599
            self.ScrollToFirst()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   600
        else:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   601
            self.RefreshView()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   602
        event.Skip()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   603
    
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   604
    def OnScrollTimer(self, event):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   605
        if self.ScrollSpeed != 0.:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   606
            speed_norm = abs(self.ScrollSpeed)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   607
            period = REFRESH_PERIOD / speed_norm
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   608
            self.ScrollMessagePanel(-speed_norm / self.ScrollSpeed)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   609
            self.LastStartTime = gettime()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   610
            self.ScrollTimer.Start(int(period * 1000), True)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   611
        event.Skip()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   612
    
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   613
    def SetScrollSpeed(self, speed):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   614
        if speed == 0.:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   615
            self.ScrollTimer.Stop()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   616
        else:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   617
            speed_norm = abs(speed)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   618
            period = REFRESH_PERIOD / speed_norm
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   619
            current_time = gettime()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   620
            if self.LastStartTime is not None:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   621
                elapsed_time = current_time - self.LastStartTime
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   622
                if elapsed_time > period:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   623
                    self.ScrollMessagePanel(-speed_norm / speed)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   624
                    self.LastStartTime = current_time
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   625
                else:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   626
                    period -= elapsed_time
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   627
            else:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   628
                self.LastStartTime = current_time
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   629
            self.ScrollTimer.Start(int(period * 1000), True)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   630
        self.ScrollSpeed = speed    
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   631
    
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   632
    def ScrollToLast(self):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   633
        if len(self.LogMessages) > 0:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   634
            self.CurrentMessage = len(self.LogMessages) - 1
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   635
            message = self.LogMessages[self.CurrentMessage]
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   636
            if not self.FilterLogMessage(message):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   637
                message, self.CurrentMessage = self.GetPreviousMessage(self.CurrentMessage)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   638
            self.RefreshView()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   639
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   640
    def ScrollToFirst(self):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   641
        if len(self.LogMessages) > 0:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   642
            message_idx = 0
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   643
            message = self.LogMessages[message_idx]
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   644
            if not self.FilterLogMessage(message):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   645
                next_message, msgidx = self.GetNextMessage(message_idx)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   646
                if next_message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   647
                    message_idx = msgidx
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   648
                    message = next_message
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   649
            while message is not None:
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   650
                message, msgidx = self.GetPreviousMessage(message_idx)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   651
                if message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   652
                    message_idx = msgidx
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   653
            message = self.LogMessages[message_idx]
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   654
            if self.FilterLogMessage(message):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   655
                while message is not None:
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   656
                    message, msgidx = self.GetNextMessage(message_idx)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   657
                    if message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   658
                        if not self.IsMessagePanelBottom(msgidx):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   659
                            break
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   660
                        message_idx = msgidx
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   661
                self.CurrentMessage = message_idx
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   662
            else:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   663
                self.CurrentMessage = None
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   664
            self.RefreshView()