GraphicViewer.py
author edouard
Tue, 22 Feb 2011 17:05:07 +0100
changeset 504 f88e0ebd8fe4
parent 431 c1c92d068ac5
child 586 9aa96a36cf33
permissions -rw-r--r--
Forced variable now supported in GraphicViewer
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
     1
#!/usr/bin/env python
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
     2
# -*- coding: utf-8 -*-
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
     3
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
     4
#This file is part of PLCOpenEditor, a library implementing an IEC 61131-3 editor
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
     5
#based on the plcopen standard. 
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
     6
#
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
     7
#Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
     8
#
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
     9
#See COPYING file for copyrights details.
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    10
#
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    11
#This library is free software; you can redistribute it and/or
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    12
#modify it under the terms of the GNU General Public
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    13
#License as published by the Free Software Foundation; either
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    14
#version 2.1 of the License, or (at your option) any later version.
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    15
#
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    16
#This library is distributed in the hope that it will be useful,
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    17
#but WITHOUT ANY WARRANTY; without even the implied warranty of
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    18
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    19
#General Public License for more details.
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    20
#
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    21
#You should have received a copy of the GNU General Public
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    22
#License along with this library; if not, write to the Free Software
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    23
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    24
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    25
import wx
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    26
import wx.lib.plot as plot
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
    27
from graphics.GraphicCommons import DebugViewer
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    28
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    29
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    30
colours = ['blue', 'red', 'green', 'yellow', 'orange', 'purple', 'brown', 'cyan',
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    31
           'pink', 'grey']
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    32
markers = ['circle', 'dot', 'square', 'triangle', 'triangle_down', 'cross', 'plus', 'circle']
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    33
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    34
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    35
#-------------------------------------------------------------------------------
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    36
#                       Debug Variable Graphic Viewer class
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    37
#-------------------------------------------------------------------------------
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    38
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    39
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    40
RANGE_VALUES = [str(25 * 2 ** i) for i in xrange(6)]
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    41
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    42
[ID_GRAPHICVIEWER, ID_GRAPHICVIEWERCANVAS,
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    43
 ID_GRAPHICVIEWERCANVASRANGE, ID_GRAPHICVIEWERCANVASPOSITION,
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    44
 ID_GRAPHICVIEWERRESETBUTTON, ID_GRAPHICVIEWERCURRENTBUTTON, 
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    45
 ID_GRAPHICVIEWERSTATICTEXT1, ID_GRAPHICVIEWERSTATICTEXT2,
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    46
] = [wx.NewId() for _init_ctrls in range(8)]
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    47
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
    48
class GraphicViewer(wx.Panel, DebugViewer):
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    49
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    50
    def _init_coll_MainGridSizer_Items(self, parent):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    51
        # generated method, don't edit
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    52
        parent.AddWindow(self.Canvas, 0, border=0, flag=wx.GROW)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    53
        parent.AddSizer(self.RangeSizer, 0, border=0, flag=wx.GROW)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    54
    
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    55
    def _init_coll_MainGridSizer_Growables(self, parent):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    56
        # generated method, don't edit
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    57
        parent.AddGrowableCol(0)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    58
        parent.AddGrowableRow(0)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    59
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    60
    def _init_coll_RangeSizer_Items(self, parent):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    61
        # generated method, don't edit
391
07447ee3538e Adding support for internationalization
laurent
parents: 374
diff changeset
    62
        parent.AddWindow(self.staticbox1, 0, border=5, flag=wx.ALIGN_CENTER_VERTICAL|wx.ALL)
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    63
        parent.AddWindow(self.CanvasRange, 0, border=5, flag=wx.ALL)
391
07447ee3538e Adding support for internationalization
laurent
parents: 374
diff changeset
    64
        parent.AddWindow(self.staticText2, 0, border=5, flag=wx.ALIGN_CENTER_VERTICAL|wx.ALL)
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    65
        parent.AddWindow(self.CanvasPosition, 0, border=5, flag=wx.GROW|wx.ALL)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    66
        parent.AddWindow(self.ResetButton, 0, border=5, flag=wx.ALL)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    67
        parent.AddWindow(self.CurrentButton, 0, border=5, flag=wx.ALL)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    68
        
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    69
    def _init_coll_RangeSizer_Growables(self, parent):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    70
        # generated method, don't edit
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    71
        parent.AddGrowableCol(3)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    72
        parent.AddGrowableRow(0)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    73
        
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    74
    def _init_sizers(self):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    75
        # generated method, don't edit
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    76
        self.MainGridSizer = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=0)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    77
        self.RangeSizer = wx.FlexGridSizer(cols=6, hgap=0, rows=1, vgap=0)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    78
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    79
        self._init_coll_MainGridSizer_Items(self.MainGridSizer)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    80
        self._init_coll_MainGridSizer_Growables(self.MainGridSizer)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    81
        self._init_coll_RangeSizer_Items(self.RangeSizer)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    82
        self._init_coll_RangeSizer_Growables(self.RangeSizer)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    83
        
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    84
        self.SetSizer(self.MainGridSizer)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    85
    
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    86
    def _init_ctrls(self, prnt):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    87
        wx.Panel.__init__(self, prnt, ID_GRAPHICVIEWER, wx.DefaultPosition, 
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    88
                 wx.DefaultSize, 0)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    89
        
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    90
        self.Canvas = plot.PlotCanvas(id=ID_GRAPHICVIEWERCANVAS, 
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    91
              name='Canvas', parent=self, pos=wx.Point(0, 0),
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    92
              size=wx.Size(0, 0), style=0)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    93
        def _axisInterval(spec, lower, upper):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    94
            if spec == 'border':
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    95
                if lower == upper:
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    96
                    return lower - 0.5, upper + 0.5
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    97
                else:
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    98
                    border = (upper - lower) * 0.05
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    99
                    return lower - border, upper + border
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   100
            else:
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   101
                return plot.PlotCanvas._axisInterval(self.Canvas, spec, lower, upper)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   102
        self.Canvas._axisInterval = _axisInterval
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   103
        self.Canvas.SetYSpec('border')
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   104
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   105
        self.staticbox1 = wx.StaticText(id=ID_GRAPHICVIEWERSTATICTEXT1,
391
07447ee3538e Adding support for internationalization
laurent
parents: 374
diff changeset
   106
              label=_('Range:'), name='staticText1', parent=self,
07447ee3538e Adding support for internationalization
laurent
parents: 374
diff changeset
   107
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   108
        
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   109
        self.CanvasRange = wx.ComboBox(id=ID_GRAPHICVIEWERCANVASRANGE,
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   110
              name='CanvasRange', parent=self, pos=wx.Point(0, 0),
313
9266d1e6e3d4 Fix size of ComboBoxes
lbessard
parents: 301
diff changeset
   111
              size=wx.Size(100, 28), choices=RANGE_VALUES, style=0)
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   112
        self.CanvasRange.SetStringSelection("25")
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   113
        self.Bind(wx.EVT_COMBOBOX, self.OnRangeChanged, id=ID_GRAPHICVIEWERCANVASRANGE)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   114
        self.Bind(wx.EVT_TEXT_ENTER, self.OnRangeChanged, id=ID_GRAPHICVIEWERCANVASRANGE)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   115
        
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   116
        self.staticText2 = wx.StaticText(id=ID_GRAPHICVIEWERSTATICTEXT2,
391
07447ee3538e Adding support for internationalization
laurent
parents: 374
diff changeset
   117
              label=_('Position:'), name='staticText2', parent=self,
07447ee3538e Adding support for internationalization
laurent
parents: 374
diff changeset
   118
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   119
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   120
        self.CanvasPosition = wx.ScrollBar(id=ID_GRAPHICVIEWERCANVASPOSITION,
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   121
              name='Position', parent=self, pos=wx.Point(0, 0),
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   122
              size=wx.Size(0, 16), style=wx.SB_HORIZONTAL)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   123
        self.CanvasPosition.SetScrollbar(0, 10, 100, 10)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   124
        self.CanvasPosition.Bind(wx.EVT_SCROLL_THUMBTRACK, self.OnPositionChanging, 
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   125
              id = ID_GRAPHICVIEWERCANVASPOSITION)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   126
        self.CanvasPosition.Bind(wx.EVT_SCROLL_LINEUP, self.OnPositionChanging, 
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   127
              id = ID_GRAPHICVIEWERCANVASPOSITION)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   128
        self.CanvasPosition.Bind(wx.EVT_SCROLL_LINEDOWN, self.OnPositionChanging, 
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   129
              id = ID_GRAPHICVIEWERCANVASPOSITION)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   130
        self.CanvasPosition.Bind(wx.EVT_SCROLL_PAGEUP, self.OnPositionChanging, 
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   131
              id = ID_GRAPHICVIEWERCANVASPOSITION)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   132
        self.CanvasPosition.Bind(wx.EVT_SCROLL_PAGEDOWN, self.OnPositionChanging, 
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   133
              id = ID_GRAPHICVIEWERCANVASPOSITION)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   134
        
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   135
        self.ResetButton = wx.Button(id=ID_GRAPHICVIEWERRESETBUTTON, label='Reset',
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   136
              name='ResetButton', parent=self, pos=wx.Point(0, 0),
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   137
              size=wx.Size(72, 24), style=0)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   138
        self.Bind(wx.EVT_BUTTON, self.OnResetButton, id=ID_GRAPHICVIEWERRESETBUTTON)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   139
        
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   140
        self.CurrentButton = wx.Button(id=ID_GRAPHICVIEWERCURRENTBUTTON, label='Current',
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   141
              name='CurrentButton', parent=self, pos=wx.Point(0, 0),
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   142
              size=wx.Size(72, 24), style=0)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   143
        self.Bind(wx.EVT_BUTTON, self.OnCurrentButton, id=ID_GRAPHICVIEWERCURRENTBUTTON)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   144
        
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   145
        self._init_sizers()
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   146
415
d3d8f8f0b678 controler (PLCControler) and debug data producer (PluginsRoot) are no longer the same thing
b.taylor@willowglen.ca
parents: 374
diff changeset
   147
    def __init__(self, parent, window, producer, instancepath = ""):
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   148
        self._init_ctrls(parent)
415
d3d8f8f0b678 controler (PLCControler) and debug data producer (PluginsRoot) are no longer the same thing
b.taylor@willowglen.ca
parents: 374
diff changeset
   149
        DebugViewer.__init__(self, producer, True, False)
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   150
        
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   151
        self.ParentWindow = window
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   152
        self.InstancePath = instancepath
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   153
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   154
        self.Datas = []
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   155
        self.CurrentValue = 0
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   156
        self.CurrentRange = 25
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   157
        
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   158
        self.AddDataConsumer(self.InstancePath.upper(), self)
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   159
    
338
87e5015330ae Adding support for ToolTip on wire when debugging
lbessard
parents: 331
diff changeset
   160
    def __del__(self):
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   161
        DebugViewer.__del__(self)
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   162
        self.RemoveDataConsumer(self)
338
87e5015330ae Adding support for ToolTip on wire when debugging
lbessard
parents: 331
diff changeset
   163
    
87e5015330ae Adding support for ToolTip on wire when debugging
lbessard
parents: 331
diff changeset
   164
    def ResetView(self):
87e5015330ae Adding support for ToolTip on wire when debugging
lbessard
parents: 331
diff changeset
   165
        self.Datas = []
87e5015330ae Adding support for ToolTip on wire when debugging
lbessard
parents: 331
diff changeset
   166
        self.CurrentValue = 0
87e5015330ae Adding support for ToolTip on wire when debugging
lbessard
parents: 331
diff changeset
   167
        self.RefreshView()
87e5015330ae Adding support for ToolTip on wire when debugging
lbessard
parents: 331
diff changeset
   168
    
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   169
    def RefreshNewData(self):
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   170
        self.RefreshView(False)
374
16a0a6cb1644 Bug on GraphicViewer with latest modifications fixed
greg
parents: 361
diff changeset
   171
        DebugViewer.RefreshNewData(self)
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   172
    
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   173
    def RefreshView(self, force=True):
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   174
        self.Freeze()
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   175
        if force or self.CurrentValue + self.CurrentRange == len(self.Datas) or self.CurrentValue + len(self.Datas) < self.CurrentRange:
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   176
            var_name = self.InstancePath.split(".")[-1]
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   177
            
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   178
            self.VariableGraphic = plot.PolyLine(self.Datas[self.CurrentValue:self.CurrentValue + self.CurrentRange], 
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   179
                                                 legend=var_name, colour=colours[0])
391
07447ee3538e Adding support for internationalization
laurent
parents: 374
diff changeset
   180
            self.GraphicsObject = plot.PlotGraphics([self.VariableGraphic], _("%s Graphics") % var_name, _("Tick"), _("Values"))
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   181
            datas_length = len(self.Datas)
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   182
            if datas_length > 1:
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   183
                start = self.Datas[self.CurrentValue][0]
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   184
                if self.CurrentValue + self.CurrentRange > datas_length:
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   185
                    end = start + (self.Datas[datas_length - 1][0] - start) * self.CurrentRange / (datas_length - self.CurrentValue - 1)
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   186
                else:
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   187
                    end = self.Datas[self.CurrentValue + self.CurrentRange - 1][0]
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   188
            else:
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   189
                start = 0.
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   190
                end = 25.
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   191
            self.Canvas.Draw(self.GraphicsObject, xAxis=(start, end))
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   192
        self.RefreshScrollBar()
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   193
        self.Thaw()
326
c82807b17128 Bugs with undefined functions fixed
lbessard
parents: 313
diff changeset
   194
    
c82807b17128 Bugs with undefined functions fixed
lbessard
parents: 313
diff changeset
   195
    def SetMode(self, mode):
c82807b17128 Bugs with undefined functions fixed
lbessard
parents: 313
diff changeset
   196
        pass
c82807b17128 Bugs with undefined functions fixed
lbessard
parents: 313
diff changeset
   197
    
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   198
    def GetTagName(self):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   199
        return ""
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   200
    
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   201
    def GetInstancePath(self):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   202
        return self.InstancePath
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   203
    
326
c82807b17128 Bugs with undefined functions fixed
lbessard
parents: 313
diff changeset
   204
    def IsViewing(self, tagname):
c82807b17128 Bugs with undefined functions fixed
lbessard
parents: 313
diff changeset
   205
        return self.InstancePath == tagname
c82807b17128 Bugs with undefined functions fixed
lbessard
parents: 313
diff changeset
   206
    
c82807b17128 Bugs with undefined functions fixed
lbessard
parents: 313
diff changeset
   207
    def ResetBuffer(self):
c82807b17128 Bugs with undefined functions fixed
lbessard
parents: 313
diff changeset
   208
        pass
c82807b17128 Bugs with undefined functions fixed
lbessard
parents: 313
diff changeset
   209
    
c82807b17128 Bugs with undefined functions fixed
lbessard
parents: 313
diff changeset
   210
    def RefreshScaling(self, refresh=True):
c82807b17128 Bugs with undefined functions fixed
lbessard
parents: 313
diff changeset
   211
        pass
c82807b17128 Bugs with undefined functions fixed
lbessard
parents: 313
diff changeset
   212
    
331
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 326
diff changeset
   213
    def SelectAll(self):
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 326
diff changeset
   214
        pass
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 326
diff changeset
   215
    
411
9ab97d517ae8 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 391
diff changeset
   216
    def ClearErrors(self):
9ab97d517ae8 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 391
diff changeset
   217
        pass
9ab97d517ae8 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 391
diff changeset
   218
    
504
f88e0ebd8fe4 Forced variable now supported in GraphicViewer
edouard
parents: 431
diff changeset
   219
    def NewValue(self, tick, value, forced=False):
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   220
        self.Datas.append((float(tick), {True:1., False:0.}.get(value, float(value))))
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   221
        if self.CurrentValue + self.CurrentRange == len(self.Datas) - 1:
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   222
            self.CurrentValue += 1
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   223
        self.NewDataAvailable()
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   224
    
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   225
    def RefreshScrollBar(self):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   226
        self.CanvasPosition.SetScrollbar(self.CurrentValue, self.CurrentRange, len(self.Datas), self.CurrentRange)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   227
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   228
    def OnRangeChanged(self, event):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   229
        old_range = self.CurrentRange
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   230
        try:
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   231
            self.CurrentRange = int(self.CanvasRange.GetValue())
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   232
        except ValueError, e:
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   233
            self.CanvasRange.SetValue(str(self.CurrentRange))
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   234
        self.CurrentValue = max(0, min(self.CurrentValue + old_range - self.CurrentRange, 
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   235
                                       len(self.Datas) - self.CurrentRange))
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   236
        self.RefreshView()
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   237
        event.Skip()
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   238
    
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   239
    def OnPositionChanging(self, event):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   240
        self.CurrentValue = event.GetPosition()
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   241
        self.RefreshView()
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   242
        event.Skip()
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   243
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   244
    def OnResetButton(self, event):
338
87e5015330ae Adding support for ToolTip on wire when debugging
lbessard
parents: 331
diff changeset
   245
        self.ResetView()
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   246
        event.Skip()
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   247
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   248
    def OnCurrentButton(self, event):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   249
        self.CurrentValue = max(0, len(self.Datas) - self.CurrentRange)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   250
        self.RefreshView()
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   251
        event.Skip()
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   252