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