controls/LogViewer.py
author Edouard Tisserant <edouard.tisserant@gmail.com>
Mon, 16 Oct 2023 23:50:58 +0200
changeset 3868 e9807c28a788
parent 3816 032bf4f225d0
permissions -rw-r--r--
Fix template conflict in XSLT with lxml>=4.9.0 again

Earlier attempt was fixing conflict with -1.0 priority attribute,
as a side effect of such low priority, SFC Actions were not
editable anymore.

This time move template around instead of using explicit priority.
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
1571
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
     4
# This file is part of Beremiz, a Integrated Development Environment for
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
     5
# programming IEC 61131-3 automates supporting plcopen standard and CanFestival.
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
     6
#
1571
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
     7
# Copyright (C) 2013: Edouard TISSERANT and Laurent BESSARD
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
     8
#
1571
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
     9
# See COPYING file for copyrights details.
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    10
#
1571
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
    11
# This program is free software; you can redistribute it and/or
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
    12
# modify it under the terms of the GNU General Public License
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
    13
# as published by the Free Software Foundation; either version 2
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
    14
# of the License, or (at your option) any later version.
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    15
#
1571
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
    16
# This program is distributed in the hope that it will be useful,
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
    17
# but WITHOUT ANY WARRANTY; without even the implied warranty of
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
    18
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
    19
# GNU General Public License for more details.
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    20
#
1571
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
    21
# You should have received a copy of the GNU General Public License
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
    22
# along with this program; if not, write to the Free Software
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
    23
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
486f94a8032c fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1441
diff changeset
    24
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    25
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    26
from datetime import datetime
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    27
from time import time as gettime
1832
0f1081928d65 fix wrong-import-order. first standard modules are imported, then others
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1831
diff changeset
    28
from weakref import proxy
0f1081928d65 fix wrong-import-order. first standard modules are imported, then others
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1831
diff changeset
    29
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
    30
import numpy
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    31
import wx
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    32
1169
53e4a2b775a7 Move CustomToolTip from GraphicCommons to controls
Laurent Bessard
parents: 1094
diff changeset
    33
from controls.CustomToolTip import CustomToolTip, TOOLTIP_WAIT_PERIOD
1176
f4b434672204 Moved and rewrote DebugViewer and DebusDataConsumer classes
Laurent Bessard
parents: 1170
diff changeset
    34
from editors.DebugViewer import DebugViewer, REFRESH_PERIOD
1902
2b7e2db31d81 Clarify licensing, and packaging of runtime only files :
Edouard Tisserant
parents: 1881
diff changeset
    35
from runtime.loglevels import LogLevelsCount, LogLevels
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    36
from util.BitmapLibrary import GetBitmap
1832
0f1081928d65 fix wrong-import-order. first standard modules are imported, then others
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1831
diff changeset
    37
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    38
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    39
THUMB_SIZE_RATIO = 1. / 8.
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    40
1736
7e61baa047f0 clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1735
diff changeset
    41
3816
032bf4f225d0 Py3 usual encoding, ints and exceptions fixes.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3768
diff changeset
    42
def ArrowPoints(*args):
032bf4f225d0 Py3 usual encoding, ints and exceptions fixes.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3768
diff changeset
    43
    direction, width, height, xoffset, yoffset = map(lambda x:x if type(x)==int else int(x), args)
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
    44
    if direction == wx.TOP:
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
    45
        return [wx.Point(xoffset + 1, yoffset + height - 2),
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
    46
                wx.Point(xoffset + width // 2, yoffset + 1),
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
    47
                wx.Point(xoffset + width - 1, yoffset + height - 2)]
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
    48
    else:
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
    49
        return [wx.Point(xoffset + 1, yoffset - height + 1),
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
    50
                wx.Point(xoffset + width // 2, yoffset - 2),
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
    51
                wx.Point(xoffset + width - 1, yoffset - height + 1)]
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
    52
1736
7e61baa047f0 clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1735
diff changeset
    53
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
    54
class LogScrollBar(wx.Panel):
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
    55
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    56
    def __init__(self, parent, size):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    57
        wx.Panel.__init__(self, parent, size=size)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    58
        self.Bind(wx.EVT_LEFT_DOWN, self.OnLeftDown)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    59
        self.Bind(wx.EVT_LEFT_UP, self.OnLeftUp)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    60
        self.Bind(wx.EVT_MOTION, self.OnMotion)
988
30e7571c10d0 Reduced flicker on LogViewer and DebugGraphPanel on Windows
Laurent Bessard
parents: 987
diff changeset
    61
        self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    62
        self.Bind(wx.EVT_PAINT, self.OnPaint)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    63
        self.Bind(wx.EVT_SIZE, self.OnResize)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
    64
1737
a39c2918c015 clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1736
diff changeset
    65
        self.ThumbPosition = 0.  # -1 <= ThumbPosition <= 1
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    66
        self.ThumbScrollingStartPos = None
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
    67
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    68
    def GetRangeRect(self):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    69
        width, height = self.GetClientSize()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    70
        return wx.Rect(0, width, width, height - 2 * width)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
    71
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    72
    def GetThumbRect(self):
1847
6198190bc121 explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1846
diff changeset
    73
        width, _height = self.GetClientSize()
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    74
        range_rect = self.GetRangeRect()
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    75
        thumb_size = range_rect.height * THUMB_SIZE_RATIO
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    76
        thumb_range = range_rect.height - thumb_size
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    77
        thumb_center_position = (thumb_size + (self.ThumbPosition + 1) * thumb_range) / 2.
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    78
        thumb_start = int(thumb_center_position - thumb_size / 2.)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    79
        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
    80
        return wx.Rect(0, range_rect.y + thumb_start, width, thumb_end - thumb_start)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
    81
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    82
    def RefreshThumbPosition(self, thumb_position=None):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    83
        if thumb_position is None:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    84
            thumb_position = self.ThumbPosition
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    85
        if self.Parent.IsMessagePanelTop():
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    86
            thumb_position = max(0., thumb_position)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    87
        if self.Parent.IsMessagePanelBottom():
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    88
            thumb_position = min(0., thumb_position)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    89
        if thumb_position != self.ThumbPosition:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    90
            self.ThumbPosition = thumb_position
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    91
            self.Parent.SetScrollSpeed(self.ThumbPosition)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
    92
        self.Refresh()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
    93
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    94
    def OnLeftDown(self, event):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    95
        self.CaptureMouse()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    96
        posx, posy = event.GetPosition()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    97
        width, height = self.GetClientSize()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    98
        range_rect = self.GetRangeRect()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
    99
        thumb_rect = self.GetThumbRect()
3303
0ffb41625592 Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 2737
diff changeset
   100
        if range_rect.Contains(posx, posy):
0ffb41625592 Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 2737
diff changeset
   101
            if thumb_rect.Contains(posx, posy):
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   102
                self.ThumbScrollingStartPos = wx.Point(posx, posy)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   103
            elif posy < thumb_rect.y:
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   104
                self.Parent.ScrollToLast()
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   105
            elif posy > thumb_rect.y + thumb_rect.height:
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   106
                self.Parent.ScrollToFirst()
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   107
        elif posy < width:
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   108
            self.Parent.ScrollMessagePanelByPage(1)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   109
        elif posy > height - width:
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   110
            self.Parent.ScrollMessagePanelByPage(-1)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   111
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   112
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   113
    def OnLeftUp(self, event):
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   114
        self.ThumbScrollingStartPos = None
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   115
        self.RefreshThumbPosition(0.)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   116
        if self.HasCapture():
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   117
            self.ReleaseMouse()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   118
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   119
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   120
    def OnMotion(self, event):
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   121
        if event.Dragging() and self.ThumbScrollingStartPos is not None:
1847
6198190bc121 explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1846
diff changeset
   122
            _posx, posy = event.GetPosition()
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   123
            range_rect = self.GetRangeRect()
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   124
            thumb_size = range_rect.height * THUMB_SIZE_RATIO
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   125
            thumb_range = range_rect.height - thumb_size
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   126
            self.RefreshThumbPosition(
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
   127
                max(-1., min((posy - self.ThumbScrollingStartPos.y) * 2. // thumb_range, 1.)))
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   128
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   129
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   130
    def OnResize(self, event):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   131
        self.Refresh()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   132
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   133
988
30e7571c10d0 Reduced flicker on LogViewer and DebugGraphPanel on Windows
Laurent Bessard
parents: 987
diff changeset
   134
    def OnEraseBackground(self, event):
30e7571c10d0 Reduced flicker on LogViewer and DebugGraphPanel on Windows
Laurent Bessard
parents: 987
diff changeset
   135
        pass
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   136
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   137
    def OnPaint(self, event):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   138
        dc = wx.BufferedPaintDC(self)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   139
        dc.Clear()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   140
987
7ca88194ae89 Improved graphics of LogViewer scrollbar to be anti-aliased
Laurent Bessard
parents: 986
diff changeset
   141
        gc = wx.GCDC(dc)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   142
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   143
        width, height = self.GetClientSize()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   144
3658
5ba5a0177fb3 IDE: Fix use of deprecated wx.NamedColour
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3575
diff changeset
   145
        gc.SetPen(wx.Pen(wx.Colour("GREY"), 3))
987
7ca88194ae89 Improved graphics of LogViewer scrollbar to be anti-aliased
Laurent Bessard
parents: 986
diff changeset
   146
        gc.SetBrush(wx.GREY_BRUSH)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   147
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
   148
        gc.DrawLines(ArrowPoints(wx.TOP, width * 0.75, width * 0.5, 2, (width + height) // 4 - 3))
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
   149
        gc.DrawLines(ArrowPoints(wx.TOP, width * 0.75, width * 0.5, 2, (width + height) // 4 + 3))
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
   150
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
   151
        gc.DrawLines(ArrowPoints(wx.BOTTOM, width * 0.75, width * 0.5, 2, (height * 3 - width) // 4 + 3))
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
   152
        gc.DrawLines(ArrowPoints(wx.BOTTOM, width * 0.75, width * 0.5, 2, (height * 3 - width) // 4 - 3))
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   153
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   154
        thumb_rect = self.GetThumbRect()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   155
        exclusion_rect = wx.Rect(thumb_rect.x, thumb_rect.y,
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   156
                                 thumb_rect.width, thumb_rect.height)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   157
        if self.Parent.IsMessagePanelTop():
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   158
            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
   159
        if self.Parent.IsMessagePanelBottom():
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   160
            exclusion_rect.height = height - width - exclusion_rect.y
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   161
        if exclusion_rect != thumb_rect:
3658
5ba5a0177fb3 IDE: Fix use of deprecated wx.NamedColour
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3575
diff changeset
   162
            colour = wx.Colour("LIGHT GREY")
987
7ca88194ae89 Improved graphics of LogViewer scrollbar to be anti-aliased
Laurent Bessard
parents: 986
diff changeset
   163
            gc.SetPen(wx.Pen(colour))
7ca88194ae89 Improved graphics of LogViewer scrollbar to be anti-aliased
Laurent Bessard
parents: 986
diff changeset
   164
            gc.SetBrush(wx.Brush(colour))
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   165
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   166
            gc.DrawRectangle(exclusion_rect.x, exclusion_rect.y,
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   167
                             exclusion_rect.width, exclusion_rect.height)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   168
987
7ca88194ae89 Improved graphics of LogViewer scrollbar to be anti-aliased
Laurent Bessard
parents: 986
diff changeset
   169
        gc.SetPen(wx.GREY_PEN)
7ca88194ae89 Improved graphics of LogViewer scrollbar to be anti-aliased
Laurent Bessard
parents: 986
diff changeset
   170
        gc.SetBrush(wx.GREY_BRUSH)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   171
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   172
        gc.DrawPolygon(ArrowPoints(wx.TOP, width, width, 0, 0))
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   173
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   174
        gc.DrawPolygon(ArrowPoints(wx.BOTTOM, width, width, 0, height))
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   175
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   176
        gc.DrawRectangle(thumb_rect.x, thumb_rect.y,
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   177
                         thumb_rect.width, thumb_rect.height)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   178
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   179
        event.Skip()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   180
1749
d73b64672238 clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
   181
1576
6df9937f130b increase size for time buttons in LogViewer
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1571
diff changeset
   182
BUTTON_SIZE = (70, 15)
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   183
1736
7e61baa047f0 clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1735
diff changeset
   184
1831
56b48961cc68 fix (old-style-class) Old-style class defined error for most parts of
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1768
diff changeset
   185
class LogButton(object):
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   186
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   187
    def __init__(self, label, callback):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   188
        self.Position = wx.Point(0, 0)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   189
        self.Size = wx.Size(*BUTTON_SIZE)
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   190
        self.Label = label
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   191
        self.Shown = True
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   192
        self.Callback = callback
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   193
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   194
    def GetSize(self):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   195
        return self.Size
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   196
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   197
    def SetPosition(self, x, y):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   198
        self.Position = wx.Point(x, y)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   199
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   200
    def HitTest(self, x, y):
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   201
        rect = wx.Rect(self.Position.x, self.Position.y,
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   202
                       self.Size.width, self.Size.height)
3303
0ffb41625592 Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 2737
diff changeset
   203
        if rect.Contains(x, y):
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   204
            return True
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   205
        return False
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   206
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   207
    def ProcessCallback(self):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   208
        if self.Callback is not None:
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   209
            wx.CallAfter(self.Callback)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   210
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   211
    def Draw(self, dc):
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   212
        dc.SetPen(wx.TRANSPARENT_PEN)
3658
5ba5a0177fb3 IDE: Fix use of deprecated wx.NamedColour
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3575
diff changeset
   213
        dc.SetBrush(wx.Brush(wx.Colour("LIGHT GREY")))
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   214
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   215
        dc.DrawRectangle(self.Position.x, self.Position.y,
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   216
                         self.Size.width, self.Size.height)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   217
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   218
        w, h = dc.GetTextExtent(self.Label)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   219
        dc.DrawText(self.Label,
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
   220
                    self.Position.x + (self.Size.width - w) // 2,
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
   221
                    self.Position.y + (self.Size.height - h) // 2)
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   222
1749
d73b64672238 clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
   223
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   224
DATE_INFO_SIZE = 10
997
d6da2ccafca4 Reduced message line size in Log Viewer
Laurent Bessard
parents: 993
diff changeset
   225
MESSAGE_INFO_SIZE = 18
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   226
1736
7e61baa047f0 clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1735
diff changeset
   227
1831
56b48961cc68 fix (old-style-class) Old-style class defined error for most parts of
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1768
diff changeset
   228
class LogMessage(object):
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   229
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   230
    def __init__(self, tv_sec, tv_nsec, level, level_bitmap, msg):
1076
2a02c6404124 Fixed bug in displayed datetime, using local timezone instead of UTC
Laurent Bessard
parents: 1071
diff changeset
   231
        self.Date = datetime.utcfromtimestamp(tv_sec)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   232
        self.Seconds = self.Date.second + tv_nsec * 1e-9
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   233
        self.Date = self.Date.replace(second=0)
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   234
        self.Timestamp = tv_sec + tv_nsec * 1e-9
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   235
        self.Level = level
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   236
        self.LevelBitmap = level_bitmap
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   237
        self.Message = msg
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   238
        self.DrawDate = True
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   239
3768
c032fff8af32 replaced depreciated function
GP Orcullo <kinsamanka@gmail.com>
parents: 3765
diff changeset
   240
    def __lt__(self, other):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   241
        if self.Date == other.Date:
3768
c032fff8af32 replaced depreciated function
GP Orcullo <kinsamanka@gmail.com>
parents: 3765
diff changeset
   242
            return self.Seconds < other.Seconds
c032fff8af32 replaced depreciated function
GP Orcullo <kinsamanka@gmail.com>
parents: 3765
diff changeset
   243
        return self.Date < other.Date
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   244
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   245
    def GetFullText(self):
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   246
        date = self.Date.replace(second=int(self.Seconds))
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   247
        nsec = (self.Seconds % 1.) * 1e9
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   248
        return "%s at %s.%9.9d:\n%s" % (
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   249
            LogLevels[self.Level],
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   250
            str(date), nsec,
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   251
            self.Message)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   252
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   253
    def Draw(self, dc, offset, width, draw_date):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   254
        if draw_date:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   255
            datetime_text = self.Date.strftime("%d/%m/%y %H:%M")
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   256
            dw, dh = dc.GetTextExtent(datetime_text)
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
   257
            dc.DrawText(datetime_text, (width - dw) // 2, offset + (DATE_INFO_SIZE - dh) // 2)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   258
            offset += DATE_INFO_SIZE
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   259
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   260
        seconds_text = "%12.9f" % self.Seconds
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   261
        sw, sh = dc.GetTextExtent(seconds_text)
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
   262
        dc.DrawText(seconds_text, 5, offset + (MESSAGE_INFO_SIZE - sh) // 2)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   263
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   264
        bw, bh = self.LevelBitmap.GetWidth(), self.LevelBitmap.GetHeight()
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
   265
        dc.DrawBitmap(self.LevelBitmap, 10 + sw, offset + (MESSAGE_INFO_SIZE - bh) // 2)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   266
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   267
        text = self.Message.replace("\n", " ")
1847
6198190bc121 explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1846
diff changeset
   268
        _mw, mh = dc.GetTextExtent(text)
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
   269
        dc.DrawText(text, 15 + sw + bw, offset + (MESSAGE_INFO_SIZE - mh) // 2)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   270
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   271
    def GetHeight(self, draw_date):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   272
        if draw_date:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   273
            return DATE_INFO_SIZE + MESSAGE_INFO_SIZE
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   274
        return MESSAGE_INFO_SIZE
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   275
1749
d73b64672238 clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
   276
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   277
SECOND = 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   278
MINUTE = 60 * SECOND
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   279
HOUR = 60 * MINUTE
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   280
DAY = 24 * HOUR
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   281
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   282
CHANGE_TIMESTAMP_BUTTONS = [(_("1d"), DAY),
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   283
                            (_("1h"), HOUR),
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   284
                            (_("1m"), MINUTE),
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   285
                            (_("1s"), SECOND)]
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   286
1736
7e61baa047f0 clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1735
diff changeset
   287
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   288
class LogViewer(DebugViewer, wx.Panel):
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   289
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   290
    def __init__(self, parent, window):
1745
f9d32913bad4 clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1742
diff changeset
   291
        wx.Panel.__init__(self, parent, style=wx.TAB_TRAVERSAL | wx.SUNKEN_BORDER)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   292
        DebugViewer.__init__(self, None, False, False)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   293
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   294
        main_sizer = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=5)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   295
        main_sizer.AddGrowableCol(0)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   296
        main_sizer.AddGrowableRow(1)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   297
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   298
        filter_sizer = wx.BoxSizer(wx.HORIZONTAL)
3303
0ffb41625592 Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 2737
diff changeset
   299
        main_sizer.Add(filter_sizer, border=5, flag=wx.TOP | wx.LEFT | wx.RIGHT | wx.GROW)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   300
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   301
        self.MessageFilter = wx.ComboBox(self, style=wx.CB_READONLY)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   302
        self.MessageFilter.Append(_("All"))
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   303
        levels = LogLevels[:3]
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   304
        levels.reverse()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   305
        for level in levels:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   306
            self.MessageFilter.Append(_(level))
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   307
        self.Bind(wx.EVT_COMBOBOX, self.OnMessageFilterChanged, self.MessageFilter)
3303
0ffb41625592 Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 2737
diff changeset
   308
        filter_sizer.Add(self.MessageFilter, 1, border=5, flag=wx.RIGHT | wx.ALIGN_CENTER_VERTICAL)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   309
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   310
        self.SearchMessage = wx.SearchCtrl(self, style=wx.TE_PROCESS_ENTER)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   311
        self.SearchMessage.ShowSearchButton(True)
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   312
        self.SearchMessage.ShowCancelButton(True)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   313
        self.Bind(wx.EVT_TEXT_ENTER, self.OnSearchMessageChanged, self.SearchMessage)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   314
        self.Bind(wx.EVT_SEARCHCTRL_SEARCH_BTN,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1749
diff changeset
   315
                  self.OnSearchMessageSearchButtonClick, self.SearchMessage)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   316
        self.Bind(wx.EVT_SEARCHCTRL_CANCEL_BTN,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1749
diff changeset
   317
                  self.OnSearchMessageCancelButtonClick, self.SearchMessage)
3303
0ffb41625592 Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 2737
diff changeset
   318
        filter_sizer.Add(self.SearchMessage, 3, border=5, flag=wx.RIGHT | wx.ALIGN_CENTER_VERTICAL)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   319
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   320
        self.CleanButton = wx.lib.buttons.GenBitmapButton(self, bitmap=GetBitmap("Clean"),
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1749
diff changeset
   321
                                                          size=wx.Size(28, 28), style=wx.NO_BORDER)
3303
0ffb41625592 Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 2737
diff changeset
   322
        self.CleanButton.SetToolTip(_("Clean log messages"))
1093
b5f78cff4459 Added support for resetting log messages
Laurent Bessard
parents: 1079
diff changeset
   323
        self.Bind(wx.EVT_BUTTON, self.OnCleanButton, self.CleanButton)
3303
0ffb41625592 Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 2737
diff changeset
   324
        filter_sizer.Add(self.CleanButton)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   325
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   326
        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
   327
        message_panel_sizer.AddGrowableCol(0)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   328
        message_panel_sizer.AddGrowableRow(0)
3303
0ffb41625592 Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 2737
diff changeset
   329
        main_sizer.Add(message_panel_sizer, border=5, flag=wx.LEFT | wx.RIGHT | wx.BOTTOM | wx.GROW)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   330
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   331
        self.MessagePanel = wx.Panel(self)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   332
        if wx.Platform == '__WXMSW__':
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   333
            self.Font = wx.Font(8, wx.SWISS, wx.NORMAL, wx.NORMAL, faceName='Courier New')
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   334
        else:
2704
4ba3bdc7d71f Fix unmatched "Courier" font for monospace fonts on latest ubuntu 20.04. Selected "FreeMono" instead, present since at least 18.04
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 2437
diff changeset
   335
            self.Font = wx.Font(10, wx.SWISS, wx.NORMAL, wx.NORMAL, faceName='FreeMono')
984
2d03056993f6 Fixed bugs with new buttons on Windows
Laurent Bessard
parents: 983
diff changeset
   336
        self.MessagePanel.Bind(wx.EVT_LEFT_UP, self.OnMessagePanelLeftUp)
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   337
        self.MessagePanel.Bind(wx.EVT_RIGHT_UP, self.OnMessagePanelRightUp)
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   338
        self.MessagePanel.Bind(wx.EVT_LEFT_DCLICK, self.OnMessagePanelLeftDCLick)
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   339
        self.MessagePanel.Bind(wx.EVT_MOTION, self.OnMessagePanelMotion)
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   340
        self.MessagePanel.Bind(wx.EVT_LEAVE_WINDOW, self.OnMessagePanelLeaveWindow)
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   341
        self.MessagePanel.Bind(wx.EVT_MOUSEWHEEL, self.OnMessagePanelMouseWheel)
988
30e7571c10d0 Reduced flicker on LogViewer and DebugGraphPanel on Windows
Laurent Bessard
parents: 987
diff changeset
   342
        self.MessagePanel.Bind(wx.EVT_ERASE_BACKGROUND, self.OnMessagePanelEraseBackground)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   343
        self.MessagePanel.Bind(wx.EVT_PAINT, self.OnMessagePanelPaint)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   344
        self.MessagePanel.Bind(wx.EVT_SIZE, self.OnMessagePanelResize)
3303
0ffb41625592 Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 2737
diff changeset
   345
        message_panel_sizer.Add(self.MessagePanel, flag=wx.GROW)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   346
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   347
        self.MessageScrollBar = LogScrollBar(self, wx.Size(16, -1))
3303
0ffb41625592 Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 2737
diff changeset
   348
        message_panel_sizer.Add(self.MessageScrollBar, flag=wx.GROW)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   349
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   350
        self.SetSizer(main_sizer)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   351
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   352
        self.LeftButtons = []
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   353
        for label, callback in [("+" + text, self.GenerateOnDurationButton(duration))
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   354
                                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
   355
            self.LeftButtons.append(LogButton(label, callback))
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   356
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   357
        self.RightButtons = []
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   358
        for label, callback in [("-" + text, self.GenerateOnDurationButton(-duration))
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   359
                                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
   360
            self.RightButtons.append(LogButton(label, callback))
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   361
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   362
        self.MessageFilter.SetSelection(0)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   363
        self.LogSource = None
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   364
        self.ResetLogMessages()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   365
        self.ParentWindow = window
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   366
979
1a68113a323d Fixed conflicting icon names on Windows
Laurent Bessard
parents: 978
diff changeset
   367
        self.LevelIcons = [GetBitmap("LOG_" + level) for level in LogLevels]
3750
f62625418bff automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents: 3658
diff changeset
   368
        self.LevelFilters = [list(range(i)) for i in range(4, 0, -1)]
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   369
        self.CurrentFilter = self.LevelFilters[0]
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   370
        self.CurrentSearchValue = ""
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   371
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   372
        self.ScrollSpeed = 0.
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   373
        self.LastStartTime = None
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   374
        self.ScrollTimer = wx.Timer(self, -1)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   375
        self.Bind(wx.EVT_TIMER, self.OnScrollTimer, self.ScrollTimer)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   376
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   377
        self.LastMousePos = None
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   378
        self.MessageToolTip = None
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   379
        self.MessageToolTipTimer = wx.Timer(self, -1)
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   380
        self.Bind(wx.EVT_TIMER, self.OnMessageToolTipTimer, self.MessageToolTipTimer)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   381
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   382
    def ResetLogMessages(self):
1672
9298ba0cd70a reset loaded messages counts on new PLC program trasnfer
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1576
diff changeset
   383
        self.ResetLogCounters()
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   384
        self.OldestMessages = []
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   385
        self.LogMessages = []
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   386
        self.LogMessagesTimestamp = numpy.array([])
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   387
        self.CurrentMessage = None
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   388
        self.HasNewData = False
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   389
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   390
    def SetLogSource(self, log_source):
1989
9b5c712f4488 More canonical test.
Edouard Tisserant
parents: 1902
diff changeset
   391
        self.LogSource = proxy(log_source) if log_source is not None else None
1093
b5f78cff4459 Added support for resetting log messages
Laurent Bessard
parents: 1079
diff changeset
   392
        self.CleanButton.Enable(self.LogSource is not None)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   393
        if log_source is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   394
            self.ResetLogMessages()
1871
933fbe9a5e2c fix problem happend when tests are running under python-coverage
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1847
diff changeset
   395
            wx.CallAfter(self.RefreshView)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   396
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   397
    def GetLogMessageFromSource(self, msgidx, level):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   398
        if self.LogSource is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   399
            answer = self.LogSource.GetLogMessage(level, msgidx)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   400
            if answer is not None:
1847
6198190bc121 explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1846
diff changeset
   401
                msg, _tick, tv_sec, tv_nsec = answer
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   402
                return LogMessage(tv_sec, tv_nsec, level, self.LevelIcons[level], msg)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   403
        return None
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   404
1672
9298ba0cd70a reset loaded messages counts on new PLC program trasnfer
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1576
diff changeset
   405
    def ResetLogCounters(self):
9298ba0cd70a reset loaded messages counts on new PLC program trasnfer
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1576
diff changeset
   406
        self.previous_log_count = [None]*LogLevelsCount
1735
c02818d7e29f clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1673
diff changeset
   407
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   408
    def SetLogCounters(self, log_count):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   409
        new_messages = []
3750
f62625418bff automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents: 3658
diff changeset
   410
        for level, count, prev in zip(range(LogLevelsCount), log_count, self.previous_log_count):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   411
            if count is not None and prev != count:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   412
                if prev is None:
1195
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   413
                    dump_end = max(-1, count - 10)
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   414
                    oldest_message = (-1, None)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   415
                else:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   416
                    dump_end = prev - 1
3750
f62625418bff automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents: 3658
diff changeset
   417
                for msgidx in range(count-1, dump_end, -1):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   418
                    new_message = self.GetLogMessageFromSource(msgidx, level)
1093
b5f78cff4459 Added support for resetting log messages
Laurent Bessard
parents: 1079
diff changeset
   419
                    if new_message is None:
1195
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   420
                        if prev is None:
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   421
                            oldest_message = (-1, None)
1093
b5f78cff4459 Added support for resetting log messages
Laurent Bessard
parents: 1079
diff changeset
   422
                        break
b5f78cff4459 Added support for resetting log messages
Laurent Bessard
parents: 1079
diff changeset
   423
                    if prev is None:
1195
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   424
                        oldest_message = (msgidx, new_message)
1093
b5f78cff4459 Added support for resetting log messages
Laurent Bessard
parents: 1079
diff changeset
   425
                        if len(new_messages) == 0:
b5f78cff4459 Added support for resetting log messages
Laurent Bessard
parents: 1079
diff changeset
   426
                            new_messages = [new_message]
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   427
                        else:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   428
                            new_messages.insert(0, new_message)
1093
b5f78cff4459 Added support for resetting log messages
Laurent Bessard
parents: 1079
diff changeset
   429
                    else:
b5f78cff4459 Added support for resetting log messages
Laurent Bessard
parents: 1079
diff changeset
   430
                        new_messages.insert(0, new_message)
1079
6c8dfc4fc23b Fixed bug in LogViewer when no Log Messages are available when first SetLogCounters
Laurent Bessard
parents: 1077
diff changeset
   431
                if prev is None and len(self.OldestMessages) <= level:
1195
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   432
                    self.OldestMessages.append(oldest_message)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   433
                self.previous_log_count[level] = count
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   434
        new_messages.sort()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   435
        if len(new_messages) > 0:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   436
            self.HasNewData = True
1071
5e740fe71fbe Fixed bug in LogViewer when view is filtered and displaying last message and new messages appears
Laurent Bessard
parents: 1020
diff changeset
   437
            if self.CurrentMessage is not None:
5e740fe71fbe Fixed bug in LogViewer when view is filtered and displaying last message and new messages appears
Laurent Bessard
parents: 1020
diff changeset
   438
                current_is_last = self.GetNextMessage(self.CurrentMessage)[0] is None
5e740fe71fbe Fixed bug in LogViewer when view is filtered and displaying last message and new messages appears
Laurent Bessard
parents: 1020
diff changeset
   439
            else:
5e740fe71fbe Fixed bug in LogViewer when view is filtered and displaying last message and new messages appears
Laurent Bessard
parents: 1020
diff changeset
   440
                current_is_last = True
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   441
            for new_message in new_messages:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   442
                self.LogMessages.append(new_message)
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   443
                self.LogMessagesTimestamp = numpy.append(self.LogMessagesTimestamp, [new_message.Timestamp])
1071
5e740fe71fbe Fixed bug in LogViewer when view is filtered and displaying last message and new messages appears
Laurent Bessard
parents: 1020
diff changeset
   444
            if current_is_last:
5e740fe71fbe Fixed bug in LogViewer when view is filtered and displaying last message and new messages appears
Laurent Bessard
parents: 1020
diff changeset
   445
                self.ScrollToLast(False)
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   446
                self.ResetMessageToolTip()
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   447
                self.MessageToolTipTimer.Stop()
999
cbab4c1635bd Replaced LogConsole TextCtrl by StyledTextCtrl
Laurent Bessard
parents: 997
diff changeset
   448
                self.ParentWindow.SelectTab(self)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   449
            self.NewDataAvailable(None)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   450
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   451
    def FilterLogMessage(self, message, timestamp=None):
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   452
        return (message.Level in self.CurrentFilter and
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   453
                message.Message.find(self.CurrentSearchValue) != -1 and
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   454
                (timestamp is None or message.Timestamp < timestamp))
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   455
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   456
    def GetMessageByTimestamp(self, timestamp):
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   457
        if self.CurrentMessage is not None:
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   458
            msgidx = numpy.argmin(abs(self.LogMessagesTimestamp - timestamp))
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   459
            message = self.LogMessages[msgidx]
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   460
            if self.FilterLogMessage(message) and message.Timestamp > timestamp:
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   461
                return self.GetPreviousMessage(msgidx, timestamp)
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   462
            return message, msgidx
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   463
        return None, None
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   464
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   465
    def GetNextMessage(self, msgidx):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   466
        while msgidx < len(self.LogMessages) - 1:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   467
            message = self.LogMessages[msgidx + 1]
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   468
            if self.FilterLogMessage(message):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   469
                return message, msgidx + 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   470
            msgidx += 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   471
        return None, None
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   472
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   473
    def GetPreviousMessage(self, msgidx, timestamp=None):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   474
        message = None
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   475
        while 0 < msgidx < len(self.LogMessages):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   476
            message = self.LogMessages[msgidx - 1]
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   477
            if self.FilterLogMessage(message, timestamp):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   478
                return message, msgidx - 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   479
            msgidx -= 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   480
        if len(self.LogMessages) > 0:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   481
            message = self.LogMessages[0]
1847
6198190bc121 explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1846
diff changeset
   482
            for _idx, msg in self.OldestMessages:
1195
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   483
                if msg is not None and msg > message:
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   484
                    message = msg
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   485
            while message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   486
                level = message.Level
1847
6198190bc121 explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1846
diff changeset
   487
                oldest_msgidx, _oldest_message = self.OldestMessages[level]
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   488
                if oldest_msgidx > 0:
1195
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   489
                    message = self.GetLogMessageFromSource(oldest_msgidx - 1, level)
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   490
                    if message is not None:
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   491
                        self.OldestMessages[level] = (oldest_msgidx - 1, message)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   492
                    else:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   493
                        self.OldestMessages[level] = (-1, None)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   494
                else:
1195
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   495
                    message = None
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   496
                    self.OldestMessages[level] = (-1, None)
1195
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   497
                if message is not None:
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   498
                    message_idx = 0
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   499
                    while (message_idx < len(self.LogMessages) and
1195
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   500
                           self.LogMessages[message_idx] < message):
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   501
                        message_idx += 1
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   502
                    if len(self.LogMessages) > 0:
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   503
                        current_message = self.LogMessages[self.CurrentMessage]
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   504
                    else:
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   505
                        current_message = message
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   506
                    self.LogMessages.insert(message_idx, message)
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   507
                    self.LogMessagesTimestamp = numpy.insert(
1878
fb73a6b6622d fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1871
diff changeset
   508
                        self.LogMessagesTimestamp,
fb73a6b6622d fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1871
diff changeset
   509
                        [message_idx],
fb73a6b6622d fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1871
diff changeset
   510
                        [message.Timestamp])
1195
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   511
                    self.CurrentMessage = self.LogMessages.index(current_message)
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   512
                    if message_idx == 0 and self.FilterLogMessage(message, timestamp):
8f8d9859e9fc Fixed bug when collecting log messages from connector history for LogViewer
Laurent Bessard
parents: 1176
diff changeset
   513
                        return message, 0
1847
6198190bc121 explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1846
diff changeset
   514
                for _idx, msg in self.OldestMessages:
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   515
                    if msg is not None and (message is None or msg > message):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   516
                        message = msg
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   517
        return None, None
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   518
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   519
    def RefreshNewData(self, *args, **kwargs):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   520
        if self.HasNewData:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   521
            self.HasNewData = False
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   522
            self.RefreshView()
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   523
        DebugViewer.RefreshNewData(self, *args, **kwargs)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   524
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   525
    def RefreshView(self):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   526
        width, height = self.MessagePanel.GetClientSize()
3303
0ffb41625592 Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 2737
diff changeset
   527
        bitmap = wx.Bitmap(width, height)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   528
        dc = wx.BufferedDC(wx.ClientDC(self.MessagePanel), bitmap)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   529
        dc.Clear()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   530
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   531
        if self.CurrentMessage is not None:
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   532
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   533
            dc.SetFont(self.Font)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   534
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   535
            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
   536
                button.Draw(dc)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   537
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   538
            message_idx = self.CurrentMessage
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   539
            message = self.LogMessages[message_idx]
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   540
            draw_date = True
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   541
            offset = 5
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   542
            while offset < height and message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   543
                message.Draw(dc, offset, width, draw_date)
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   544
                offset += message.GetHeight(draw_date)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   545
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   546
                previous_message, message_idx = self.GetPreviousMessage(message_idx)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   547
                if previous_message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   548
                    draw_date = message.Date != previous_message.Date
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   549
                message = previous_message
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   550
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   551
        self.MessageScrollBar.RefreshThumbPosition()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   552
1673
fab1b8da6eba clean PLC log only if there is something to clean
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1672
diff changeset
   553
    def IsPLCLogEmpty(self):
1742
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1740
diff changeset
   554
        empty = True
3750
f62625418bff automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents: 3658
diff changeset
   555
        for _level, prev in zip(range(LogLevelsCount), self.previous_log_count):
1673
fab1b8da6eba clean PLC log only if there is something to clean
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1672
diff changeset
   556
            if prev is not None:
1742
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1740
diff changeset
   557
                empty = False
1673
fab1b8da6eba clean PLC log only if there is something to clean
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1672
diff changeset
   558
                break
fab1b8da6eba clean PLC log only if there is something to clean
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1672
diff changeset
   559
        return empty
1735
c02818d7e29f clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1673
diff changeset
   560
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   561
    def IsMessagePanelTop(self, message_idx=None):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   562
        if message_idx is None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   563
            message_idx = self.CurrentMessage
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   564
        if message_idx is not None:
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   565
            return self.GetNextMessage(message_idx)[0] is None
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   566
        return True
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   567
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   568
    def IsMessagePanelBottom(self, message_idx=None):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   569
        if message_idx is None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   570
            message_idx = self.CurrentMessage
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   571
        if message_idx is not None:
1847
6198190bc121 explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1846
diff changeset
   572
            _width, height = self.MessagePanel.GetClientSize()
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   573
            offset = 5
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   574
            message = self.LogMessages[message_idx]
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   575
            draw_date = True
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   576
            while message is not None and offset < height:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   577
                offset += message.GetHeight(draw_date)
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   578
                previous_message, message_idx = self.GetPreviousMessage(message_idx)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   579
                if previous_message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   580
                    draw_date = message.Date != previous_message.Date
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   581
                message = previous_message
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   582
            return offset < height
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   583
        return True
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   584
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   585
    def ScrollMessagePanel(self, scroll):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   586
        if self.CurrentMessage is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   587
            message = self.LogMessages[self.CurrentMessage]
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   588
            while scroll > 0 and message is not None:
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   589
                message, msgidx = self.GetNextMessage(self.CurrentMessage)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   590
                if message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   591
                    self.CurrentMessage = msgidx
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   592
                    scroll -= 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   593
            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
   594
                message, msgidx = self.GetPreviousMessage(self.CurrentMessage)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   595
                if message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   596
                    self.CurrentMessage = msgidx
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   597
                    scroll += 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   598
            self.RefreshView()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   599
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   600
    def ScrollMessagePanelByPage(self, page):
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   601
        if self.CurrentMessage is not None:
1847
6198190bc121 explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1846
diff changeset
   602
            _width, height = self.MessagePanel.GetClientSize()
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
   603
            message_per_page = max(1, (height - DATE_INFO_SIZE) // MESSAGE_INFO_SIZE - 1)
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   604
            self.ScrollMessagePanel(page * message_per_page)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   605
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   606
    def ScrollMessagePanelByTimestamp(self, seconds):
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   607
        if self.CurrentMessage is not None:
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   608
            current_message = self.LogMessages[self.CurrentMessage]
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   609
            message, msgidx = self.GetMessageByTimestamp(current_message.Timestamp + seconds)
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   610
            if message is None or self.IsMessagePanelBottom(msgidx):
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   611
                self.ScrollToFirst()
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   612
            else:
1020
2d20f25cd39f Fixed bug log viewer not scrolling when clicking on +1s and +1m when time between 2 message is greater than 1s or 1m
Laurent Bessard
parents: 999
diff changeset
   613
                if seconds > 0 and self.CurrentMessage == msgidx and msgidx < len(self.LogMessages) - 1:
2d20f25cd39f Fixed bug log viewer not scrolling when clicking on +1s and +1m when time between 2 message is greater than 1s or 1m
Laurent Bessard
parents: 999
diff changeset
   614
                    msgidx += 1
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   615
                self.CurrentMessage = msgidx
984
2d03056993f6 Fixed bugs with new buttons on Windows
Laurent Bessard
parents: 983
diff changeset
   616
                self.RefreshView()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   617
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   618
    def ResetMessagePanel(self):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   619
        if len(self.LogMessages) > 0:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   620
            self.CurrentMessage = len(self.LogMessages) - 1
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   621
            message = self.LogMessages[self.CurrentMessage]
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   622
            while message is not None and not self.FilterLogMessage(message):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   623
                message, self.CurrentMessage = self.GetPreviousMessage(self.CurrentMessage)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   624
            self.RefreshView()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   625
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   626
    def OnMessageFilterChanged(self, event):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   627
        self.CurrentFilter = self.LevelFilters[self.MessageFilter.GetSelection()]
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   628
        self.ResetMessagePanel()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   629
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   630
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   631
    def OnSearchMessageChanged(self, event):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   632
        self.CurrentSearchValue = self.SearchMessage.GetValue()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   633
        self.ResetMessagePanel()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   634
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   635
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   636
    def OnSearchMessageSearchButtonClick(self, event):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   637
        self.CurrentSearchValue = self.SearchMessage.GetValue()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   638
        self.ResetMessagePanel()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   639
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   640
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   641
    def OnSearchMessageCancelButtonClick(self, event):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   642
        self.CurrentSearchValue = ""
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   643
        self.SearchMessage.SetValue("")
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   644
        self.ResetMessagePanel()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   645
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   646
1093
b5f78cff4459 Added support for resetting log messages
Laurent Bessard
parents: 1079
diff changeset
   647
    def OnCleanButton(self, event):
1673
fab1b8da6eba clean PLC log only if there is something to clean
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1672
diff changeset
   648
        if self.LogSource is not None and not self.IsPLCLogEmpty():
1093
b5f78cff4459 Added support for resetting log messages
Laurent Bessard
parents: 1079
diff changeset
   649
            self.LogSource.ResetLogCount()
b5f78cff4459 Added support for resetting log messages
Laurent Bessard
parents: 1079
diff changeset
   650
        self.ResetLogMessages()
b5f78cff4459 Added support for resetting log messages
Laurent Bessard
parents: 1079
diff changeset
   651
        self.RefreshView()
b5f78cff4459 Added support for resetting log messages
Laurent Bessard
parents: 1079
diff changeset
   652
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   653
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   654
    def GenerateOnDurationButton(self, duration):
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   655
        def OnDurationButton():
982
e3c264099bd0 Added support in LogViewer for scrolling using relative timestamp
Laurent Bessard
parents: 981
diff changeset
   656
            self.ScrollMessagePanelByTimestamp(duration)
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   657
        return OnDurationButton
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   658
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   659
    def GetCopyMessageToClipboardFunction(self, message):
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   660
        def CopyMessageToClipboardFunction(event):
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   661
            self.ParentWindow.SetCopyBuffer(message.GetFullText())
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   662
        return CopyMessageToClipboardFunction
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   663
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   664
    def GetMessageByScreenPos(self, posx, posy):
983
7dd481eef3b5 Replaced left ugly buttons in LogViewer by custom buttons inside MessagePanel
Laurent Bessard
parents: 982
diff changeset
   665
        if self.CurrentMessage is not None:
1847
6198190bc121 explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1846
diff changeset
   666
            _width, height = self.MessagePanel.GetClientSize()
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   667
            message_idx = self.CurrentMessage
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   668
            message = self.LogMessages[message_idx]
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   669
            draw_date = True
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   670
            offset = 5
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   671
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   672
            while offset < height and message is not None:
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   673
                if draw_date:
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   674
                    offset += DATE_INFO_SIZE
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   675
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   676
                if offset <= posy < offset + MESSAGE_INFO_SIZE:
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   677
                    return message
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   678
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   679
                offset += MESSAGE_INFO_SIZE
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   680
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   681
                previous_message, message_idx = self.GetPreviousMessage(message_idx)
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   682
                if previous_message is not None:
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   683
                    draw_date = message.Date != previous_message.Date
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   684
                message = previous_message
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   685
        return None
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   686
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   687
    def OnMessagePanelLeftUp(self, event):
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   688
        if self.CurrentMessage is not None:
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   689
            posx, posy = event.GetPosition()
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   690
            for button in self.LeftButtons + self.RightButtons:
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   691
                if button.HitTest(posx, posy):
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   692
                    button.ProcessCallback()
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   693
                    break
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   694
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   695
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   696
    def OnMessagePanelRightUp(self, event):
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   697
        message = self.GetMessageByScreenPos(*event.GetPosition())
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   698
        if message is not None:
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   699
            menu = wx.Menu(title='')
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   700
3575
cbf99c4122bd IDE: one more consequence of wxPython's 3 to 4 version bump
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3303
diff changeset
   701
            menu_entry = menu.Append(wx.ID_ANY, _("Copy"))
2737
38afed869ff6 Finished fixing Wx IDs abuse. There was still some wasted IDs because of wx.NewId calls in many places where it wasn't needed, and those IDs were not re-used. As a consequence Beremiz was making exception crashing after a few hours of intensive use.
Edouard Tisserant
parents: 2704
diff changeset
   702
            self.Bind(wx.EVT_MENU, self.GetCopyMessageToClipboardFunction(message), menu_entry)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   703
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   704
            self.MessagePanel.PopupMenu(menu)
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   705
            menu.Destroy()
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   706
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   707
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   708
    def OnMessagePanelLeftDCLick(self, event):
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   709
        message = self.GetMessageByScreenPos(*event.GetPosition())
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   710
        if message is not None:
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   711
            self.SearchMessage.SetFocus()
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   712
            self.SearchMessage.SetValue(message.Message)
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   713
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   714
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   715
    def ResetMessageToolTip(self):
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   716
        if self.MessageToolTip is not None:
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   717
            self.MessageToolTip.Destroy()
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   718
            self.MessageToolTip = None
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   719
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   720
    def OnMessageToolTipTimer(self, event):
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   721
        if self.LastMousePos is not None:
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   722
            message = self.GetMessageByScreenPos(*self.LastMousePos)
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   723
            if message is not None:
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   724
                tooltip_pos = self.MessagePanel.ClientToScreen(self.LastMousePos)
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   725
                tooltip_pos.x += 10
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   726
                tooltip_pos.y += 10
1169
53e4a2b775a7 Move CustomToolTip from GraphicCommons to controls
Laurent Bessard
parents: 1094
diff changeset
   727
                self.MessageToolTip = CustomToolTip(self.MessagePanel, message.GetFullText(), False)
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   728
                self.MessageToolTip.SetFont(self.Font)
1170
074e46cdedbc Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents: 1169
diff changeset
   729
                self.MessageToolTip.SetToolTipPosition(tooltip_pos)
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   730
                self.MessageToolTip.Show()
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   731
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   732
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   733
    def OnMessagePanelMotion(self, event):
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   734
        if not event.Dragging():
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   735
            self.ResetMessageToolTip()
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   736
            self.LastMousePos = event.GetPosition()
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   737
            self.MessageToolTipTimer.Start(int(TOOLTIP_WAIT_PERIOD * 1000), oneShot=True)
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   738
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   739
993
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   740
    def OnMessagePanelLeaveWindow(self, event):
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   741
        self.ResetMessageToolTip()
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   742
        self.LastMousePos = None
7fbde4a19ec3 Improved Log Viewer functionalities
Laurent Bessard
parents: 988
diff changeset
   743
        self.MessageToolTipTimer.Stop()
986
b663f099da8a Fixed LogViewer with improvements
Laurent Bessard
parents: 984
diff changeset
   744
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   745
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   746
    def OnMessagePanelMouseWheel(self, event):
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2432
diff changeset
   747
        self.ScrollMessagePanel(event.GetWheelRotation() // event.GetWheelDelta())
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   748
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   749
988
30e7571c10d0 Reduced flicker on LogViewer and DebugGraphPanel on Windows
Laurent Bessard
parents: 987
diff changeset
   750
    def OnMessagePanelEraseBackground(self, event):
30e7571c10d0 Reduced flicker on LogViewer and DebugGraphPanel on Windows
Laurent Bessard
parents: 987
diff changeset
   751
        pass
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   752
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   753
    def OnMessagePanelPaint(self, event):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   754
        self.RefreshView()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   755
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   756
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   757
    def OnMessagePanelResize(self, event):
1847
6198190bc121 explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1846
diff changeset
   758
        width, _height = self.MessagePanel.GetClientSize()
984
2d03056993f6 Fixed bugs with new buttons on Windows
Laurent Bessard
parents: 983
diff changeset
   759
        offset = 2
2d03056993f6 Fixed bugs with new buttons on Windows
Laurent Bessard
parents: 983
diff changeset
   760
        for button in self.LeftButtons:
2d03056993f6 Fixed bugs with new buttons on Windows
Laurent Bessard
parents: 983
diff changeset
   761
            button.SetPosition(offset, 2)
1847
6198190bc121 explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1846
diff changeset
   762
            w, _h = button.GetSize()
984
2d03056993f6 Fixed bugs with new buttons on Windows
Laurent Bessard
parents: 983
diff changeset
   763
            offset += w + 2
2d03056993f6 Fixed bugs with new buttons on Windows
Laurent Bessard
parents: 983
diff changeset
   764
        offset = width - 2
2d03056993f6 Fixed bugs with new buttons on Windows
Laurent Bessard
parents: 983
diff changeset
   765
        for button in self.RightButtons:
1847
6198190bc121 explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1846
diff changeset
   766
            w, _h = button.GetSize()
984
2d03056993f6 Fixed bugs with new buttons on Windows
Laurent Bessard
parents: 983
diff changeset
   767
            button.SetPosition(offset - w, 2)
2d03056993f6 Fixed bugs with new buttons on Windows
Laurent Bessard
parents: 983
diff changeset
   768
            offset -= w + 2
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   769
        if self.IsMessagePanelBottom():
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   770
            self.ScrollToFirst()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   771
        else:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   772
            self.RefreshView()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   773
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   774
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   775
    def OnScrollTimer(self, event):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   776
        if self.ScrollSpeed != 0.:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   777
            speed_norm = abs(self.ScrollSpeed)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   778
            period = REFRESH_PERIOD / speed_norm
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   779
            self.ScrollMessagePanel(-speed_norm / self.ScrollSpeed)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   780
            self.LastStartTime = gettime()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   781
            self.ScrollTimer.Start(int(period * 1000), True)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   782
        event.Skip()
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   783
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   784
    def SetScrollSpeed(self, speed):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   785
        if speed == 0.:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   786
            self.ScrollTimer.Stop()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   787
        else:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   788
            speed_norm = abs(speed)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   789
            period = REFRESH_PERIOD / speed_norm
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   790
            current_time = gettime()
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   791
            if self.LastStartTime is not None:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   792
                elapsed_time = current_time - self.LastStartTime
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   793
                if elapsed_time > period:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   794
                    self.ScrollMessagePanel(-speed_norm / speed)
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   795
                    self.LastStartTime = current_time
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   796
                else:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   797
                    period -= elapsed_time
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   798
            else:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   799
                self.LastStartTime = current_time
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   800
            self.ScrollTimer.Start(int(period * 1000), True)
1441
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   801
        self.ScrollSpeed = speed
826730e60407 Added auto-reconnect for runtime. Fixed Beremiz closing problem caused by remaining twisted reactor thread in IDE.
Edouard Tisserant
parents: 1195
diff changeset
   802
1071
5e740fe71fbe Fixed bug in LogViewer when view is filtered and displaying last message and new messages appears
Laurent Bessard
parents: 1020
diff changeset
   803
    def ScrollToLast(self, refresh=True):
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   804
        if len(self.LogMessages) > 0:
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   805
            self.CurrentMessage = len(self.LogMessages) - 1
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   806
            message = self.LogMessages[self.CurrentMessage]
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   807
            if not self.FilterLogMessage(message):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   808
                message, self.CurrentMessage = self.GetPreviousMessage(self.CurrentMessage)
1071
5e740fe71fbe Fixed bug in LogViewer when view is filtered and displaying last message and new messages appears
Laurent Bessard
parents: 1020
diff changeset
   809
            if refresh:
5e740fe71fbe Fixed bug in LogViewer when view is filtered and displaying last message and new messages appears
Laurent Bessard
parents: 1020
diff changeset
   810
                self.RefreshView()
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   811
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   812
    def ScrollToFirst(self):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   813
        if len(self.LogMessages) > 0:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   814
            message_idx = 0
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   815
            message = self.LogMessages[message_idx]
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   816
            if not self.FilterLogMessage(message):
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   817
                next_message, msgidx = self.GetNextMessage(message_idx)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   818
                if next_message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   819
                    message_idx = msgidx
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   820
                    message = next_message
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   821
            while message is not None:
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   822
                message, msgidx = self.GetPreviousMessage(message_idx)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   823
                if message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   824
                    message_idx = msgidx
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   825
            message = self.LogMessages[message_idx]
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   826
            if self.FilterLogMessage(message):
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   827
                while message is not None:
981
fc671a3e95a9 Fixed LogViewer scrollbar and scroll methods
Laurent Bessard
parents: 979
diff changeset
   828
                    message, msgidx = self.GetNextMessage(message_idx)
978
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   829
                    if message is not None:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   830
                        if not self.IsMessagePanelBottom(msgidx):
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   831
                            break
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   832
                        message_idx = msgidx
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   833
                self.CurrentMessage = message_idx
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   834
            else:
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   835
                self.CurrentMessage = None
3290eff761f1 Added LogViewer panel in bottom notebook
Laurent Bessard
parents:
diff changeset
   836
            self.RefreshView()