GraphicViewer.py
author Laurent Bessard
Mon, 25 Jun 2012 20:03:53 +0200
changeset 714 131ea7f237b9
parent 711 5f6a743dcde5
child 722 8c098eb05498
permissions -rw-r--r--
Replacing buttons with text by buttons with icons
Adding support for bitmap library to have a common API for icon request handling
Simplify wx controls and sizers creation in dialogs and custom controls and panels
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
711
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    25
import numpy
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    26
import math
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    27
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    28
import wx
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    29
import wx.lib.plot as plot
711
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    30
import wx.lib.buttons
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    31
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
    32
from graphics.GraphicCommons import DebugViewer, MODE_SELECTION, MODE_MOTION
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 504
diff changeset
    33
from controls import EditorPanel
714
131ea7f237b9 Replacing buttons with text by buttons with icons
Laurent Bessard
parents: 711
diff changeset
    34
from utils.BitmapLibrary import GetBitmap
301
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
colours = ['blue', 'red', 'green', 'yellow', 'orange', 'purple', 'brown', 'cyan',
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    37
           'pink', 'grey']
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    38
markers = ['circle', 'dot', 'square', 'triangle', 'triangle_down', 'cross', 'plus', 'circle']
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
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
#                       Debug Variable Graphic Viewer class
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    43
#-------------------------------------------------------------------------------
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    44
632
3ea55a5db68e Adding support for choosing graph range in duration instead of tick number when Common_Ticktime is available
laurent
parents: 586
diff changeset
    45
SECOND = 1000000000
3ea55a5db68e Adding support for choosing graph range in duration instead of tick number when Common_Ticktime is available
laurent
parents: 586
diff changeset
    46
MINUTE = 60 * SECOND
3ea55a5db68e Adding support for choosing graph range in duration instead of tick number when Common_Ticktime is available
laurent
parents: 586
diff changeset
    47
HOUR = 60 * MINUTE
3ea55a5db68e Adding support for choosing graph range in duration instead of tick number when Common_Ticktime is available
laurent
parents: 586
diff changeset
    48
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
    49
ZOOM_VALUES = map(lambda x:("x %.1f" % x, x), [math.sqrt(2) ** i for i in xrange(8)])
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
    50
RANGE_VALUES = map(lambda x: (str(x), x), [25 * 2 ** i for i in xrange(6)])
640
c32c169b8f63 Fixing segmentation fault in CustomEditableListBox on Windows when clicking on an header button while a value is being edited
laurent
parents: 632
diff changeset
    51
TIME_RANGE_VALUES = [("%ds" % i, i * SECOND) for i in (1, 2, 5, 10, 20, 30)] + \
632
3ea55a5db68e Adding support for choosing graph range in duration instead of tick number when Common_Ticktime is available
laurent
parents: 586
diff changeset
    52
                    [("%dm" % i, i * MINUTE) for i in (1, 2, 5, 10, 20, 30)] + \
3ea55a5db68e Adding support for choosing graph range in duration instead of tick number when Common_Ticktime is available
laurent
parents: 586
diff changeset
    53
                    [("%dh" % i, i * HOUR) for i in (1, 2, 3, 6, 12, 24)]
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    54
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 504
diff changeset
    55
class GraphicViewer(EditorPanel, DebugViewer):
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    56
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 504
diff changeset
    57
    def _init_Editor(self, prnt):
711
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    58
        self.Editor = wx.Panel(prnt)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    59
        
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    60
        main_sizer = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=0)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    61
        main_sizer.AddGrowableCol(0)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    62
        main_sizer.AddGrowableRow(0)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    63
        
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    64
        self.Canvas = plot.PlotCanvas(self.Editor, name='Canvas')
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    65
        def _axisInterval(spec, lower, upper):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    66
            if spec == 'border':
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    67
                if lower == upper:
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    68
                    return lower - 0.5, upper + 0.5
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    69
                else:
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    70
                    border = (upper - lower) * 0.05
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    71
                    return lower - border, upper + border
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    72
            else:
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    73
                return plot.PlotCanvas._axisInterval(self.Canvas, spec, lower, upper)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    74
        self.Canvas._axisInterval = _axisInterval
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
    75
        self.Canvas.SetYSpec('border')
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
    76
        self.Canvas.canvas.Bind(wx.EVT_LEFT_DOWN, self.OnCanvasLeftDown)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
    77
        self.Canvas.canvas.Bind(wx.EVT_LEFT_UP, self.OnCanvasLeftUp)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
    78
        self.Canvas.canvas.Bind(wx.EVT_MOTION, self.OnCanvasMotion)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
    79
        self.Canvas.canvas.Bind(wx.EVT_MOUSEWHEEL, self.OnCanvasMouseWheel)
668
e858ff2f7862 Fix cursor refresh when GraphicViewer canvas is resized
laurent
parents: 665
diff changeset
    80
        self.Canvas.canvas.Bind(wx.EVT_SIZE, self.OnCanvasResize)
711
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    81
        main_sizer.AddWindow(self.Canvas, 0, border=0, flag=wx.GROW)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    82
        
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    83
        range_sizer = wx.FlexGridSizer(cols=9, hgap=5, rows=1, vgap=0)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    84
        range_sizer.AddGrowableCol(5)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    85
        range_sizer.AddGrowableRow(0)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    86
        main_sizer.AddSizer(range_sizer, 0, border=5, flag=wx.GROW|wx.ALL)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    87
        
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    88
        range_label = wx.StaticText(self.Editor, label=_('Range:'))
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    89
        range_sizer.AddWindow(range_label, 0, border=0, flag=wx.ALIGN_CENTER_VERTICAL)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    90
        
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    91
        self.CanvasRange = wx.ComboBox(self.Editor, 
640
c32c169b8f63 Fixing segmentation fault in CustomEditableListBox on Windows when clicking on an header button while a value is being edited
laurent
parents: 632
diff changeset
    92
              size=wx.Size(100, 28), style=wx.CB_READONLY)
711
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    93
        self.Bind(wx.EVT_COMBOBOX, self.OnRangeChanged, self.CanvasRange)
714
131ea7f237b9 Replacing buttons with text by buttons with icons
Laurent Bessard
parents: 711
diff changeset
    94
        range_sizer.AddWindow(self.CanvasRange, 0, border=0, flag=wx.ALIGN_CENTER_VERTICAL)
711
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    95
        
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    96
        zoom_label = wx.StaticText(self.Editor, label=_('Zoom:'))
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    97
        range_sizer.AddWindow(zoom_label, 0, border=0, flag=wx.ALIGN_CENTER_VERTICAL)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    98
        
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
    99
        self.CanvasZoom = wx.ComboBox(self.Editor, 
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   100
              size=wx.Size(70, 28), style=wx.CB_READONLY)
711
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   101
        self.Bind(wx.EVT_COMBOBOX, self.OnZoomChanged, self.CanvasZoom)
714
131ea7f237b9 Replacing buttons with text by buttons with icons
Laurent Bessard
parents: 711
diff changeset
   102
        range_sizer.AddWindow(self.CanvasZoom, 0, border=0, flag=wx.ALIGN_CENTER_VERTICAL)
711
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   103
        
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   104
        position_label = wx.StaticText(self.Editor, label=_('Position:'))
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   105
        range_sizer.AddWindow(position_label, 0, border=0, flag=wx.ALIGN_CENTER_VERTICAL)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   106
        
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   107
        self.CanvasPosition = wx.ScrollBar(self.Editor, 
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   108
              size=wx.Size(0, 16), style=wx.SB_HORIZONTAL)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   109
        self.CanvasPosition.SetScrollbar(0, 10, 100, 10)
711
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   110
        self.CanvasPosition.Bind(wx.EVT_SCROLL_THUMBTRACK, 
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   111
              self.OnPositionChanging, self.CanvasPosition)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   112
        self.CanvasPosition.Bind(wx.EVT_SCROLL_LINEUP, 
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   113
              self.OnPositionChanging, self.CanvasPosition)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   114
        self.CanvasPosition.Bind(wx.EVT_SCROLL_LINEDOWN, 
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   115
              self.OnPositionChanging, self.CanvasPosition)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   116
        self.CanvasPosition.Bind(wx.EVT_SCROLL_PAGEUP, 
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   117
              self.OnPositionChanging, self.CanvasPosition)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   118
        self.CanvasPosition.Bind(wx.EVT_SCROLL_PAGEDOWN, 
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   119
              self.OnPositionChanging, self.CanvasPosition)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   120
        range_sizer.AddWindow(self.CanvasPosition, 0, border=5, flag=wx.GROW|wx.ALL)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   121
        
714
131ea7f237b9 Replacing buttons with text by buttons with icons
Laurent Bessard
parents: 711
diff changeset
   122
        self.ResetButton = wx.lib.buttons.GenBitmapButton(self.Editor, 
131ea7f237b9 Replacing buttons with text by buttons with icons
Laurent Bessard
parents: 711
diff changeset
   123
              bitmap=GetBitmap("reset"), size=wx.Size(28, 28), style=wx.NO_BORDER)
131ea7f237b9 Replacing buttons with text by buttons with icons
Laurent Bessard
parents: 711
diff changeset
   124
        self.ResetButton.SetToolTipString(_("Clear the graph values"))
711
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   125
        self.Bind(wx.EVT_BUTTON, self.OnResetButton, self.ResetButton)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   126
        range_sizer.AddWindow(self.ResetButton, 0, border=0, flag=0)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   127
        
714
131ea7f237b9 Replacing buttons with text by buttons with icons
Laurent Bessard
parents: 711
diff changeset
   128
        self.CurrentButton = wx.lib.buttons.GenBitmapButton(self.Editor, 
131ea7f237b9 Replacing buttons with text by buttons with icons
Laurent Bessard
parents: 711
diff changeset
   129
              bitmap=GetBitmap("current"), size=wx.Size(28, 28), style=wx.NO_BORDER)
131ea7f237b9 Replacing buttons with text by buttons with icons
Laurent Bessard
parents: 711
diff changeset
   130
        self.CurrentButton.SetToolTipString(_("Go to current value"))
711
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   131
        self.Bind(wx.EVT_BUTTON, self.OnCurrentButton, self.CurrentButton)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   132
        range_sizer.AddWindow(self.CurrentButton, 0, border=0, flag=0)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   133
        
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   134
        self.ExportGraphButton = wx.lib.buttons.GenBitmapButton(self.Editor, 
714
131ea7f237b9 Replacing buttons with text by buttons with icons
Laurent Bessard
parents: 711
diff changeset
   135
              bitmap=GetBitmap("export_graph"), size=wx.Size(28, 28), style=wx.NO_BORDER)
131ea7f237b9 Replacing buttons with text by buttons with icons
Laurent Bessard
parents: 711
diff changeset
   136
        self.ExportGraphButton.SetToolTipString(_("Export graph values to clipboard"))
711
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   137
        self.Bind(wx.EVT_BUTTON, self.OnExportGraphButtonClick, 
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   138
                self.ExportGraphButton)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   139
        range_sizer.AddWindow(self.ExportGraphButton, 0, border=0, flag=0)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   140
        
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   141
        self.Editor.SetSizer(main_sizer)
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   142
415
d3d8f8f0b678 controler (PLCControler) and debug data producer (PluginsRoot) are no longer the same thing
b.taylor@willowglen.ca
parents: 374
diff changeset
   143
    def __init__(self, parent, window, producer, instancepath = ""):
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 504
diff changeset
   144
        EditorPanel.__init__(self, parent, "", window, None)
415
d3d8f8f0b678 controler (PLCControler) and debug data producer (PluginsRoot) are no longer the same thing
b.taylor@willowglen.ca
parents: 374
diff changeset
   145
        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
   146
        
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   147
        self.InstancePath = instancepath
632
3ea55a5db68e Adding support for choosing graph range in duration instead of tick number when Common_Ticktime is available
laurent
parents: 586
diff changeset
   148
        self.RangeValues = None
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   149
        self.CursorIdx = None
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   150
        self.LastCursor = None
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   151
        self.CurrentMousePos = None
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   152
        self.CurrentMotionValue = None
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   153
        self.Dragging = False
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   154
        
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   155
        # Initialize Viewer mode to Selection mode
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   156
        self.Mode = MODE_SELECTION
632
3ea55a5db68e Adding support for choosing graph range in duration instead of tick number when Common_Ticktime is available
laurent
parents: 586
diff changeset
   157
        
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   158
        self.Datas = []
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   159
        self.StartTick = 0
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   160
        self.StartIdx = 0
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   161
        self.EndIdx = 0
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   162
        self.MinValue = None
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   163
        self.MaxValue = None
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   164
        self.YCenter = 0
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   165
        self.CurrentZoom = 1
642
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   166
        self.Fixed = False
668
e858ff2f7862 Fix cursor refresh when GraphicViewer canvas is resized
laurent
parents: 665
diff changeset
   167
        self.Ticktime = self.DataProducer.GetTicktime()
632
3ea55a5db68e Adding support for choosing graph range in duration instead of tick number when Common_Ticktime is available
laurent
parents: 586
diff changeset
   168
        self.RefreshCanvasRange()
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   169
        
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   170
        for zoom_txt, zoom in ZOOM_VALUES:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   171
            self.CanvasZoom.Append(zoom_txt)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   172
        self.CanvasZoom.SetSelection(0)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   173
        
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   174
        self.AddDataConsumer(self.InstancePath.upper(), self)
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   175
    
338
87e5015330ae Adding support for ToolTip on wire when debugging
lbessard
parents: 331
diff changeset
   176
    def __del__(self):
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   177
        DebugViewer.__del__(self)
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   178
        self.RemoveDataConsumer(self)
338
87e5015330ae Adding support for ToolTip on wire when debugging
lbessard
parents: 331
diff changeset
   179
    
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 504
diff changeset
   180
    def GetTitle(self):
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 504
diff changeset
   181
        if len(self.InstancePath) > 15:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 504
diff changeset
   182
            return "..." + self.InstancePath[-12:]
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 504
diff changeset
   183
        return self.InstancePath
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 504
diff changeset
   184
    
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   185
    # Changes Viewer mode
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   186
    def SetMode(self, mode):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   187
        if self.Mode != mode or mode == MODE_SELECTION:    
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   188
            if self.Mode == MODE_MOTION:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   189
                wx.CallAfter(self.Canvas.canvas.SetCursor, wx.NullCursor)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   190
            self.Mode = mode
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   191
        if self.Mode == MODE_MOTION:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   192
            wx.CallAfter(self.Canvas.canvas.SetCursor, wx.StockCursor(wx.CURSOR_HAND))
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   193
        
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   194
    def ResetView(self, register=False):
338
87e5015330ae Adding support for ToolTip on wire when debugging
lbessard
parents: 331
diff changeset
   195
        self.Datas = []
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   196
        self.StartTick = 0
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   197
        self.StartIdx = 0
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   198
        self.EndIdx = 0
706
9920d8c07e5e Fix bug graphic values range not reinitialized when graphic reseted
Laurent Bessard
parents: 687
diff changeset
   199
        self.MinValue = None
9920d8c07e5e Fix bug graphic values range not reinitialized when graphic reseted
Laurent Bessard
parents: 687
diff changeset
   200
        self.MaxValue = None
665
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   201
        self.CursorIdx = None
642
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   202
        self.Fixed = False
632
3ea55a5db68e Adding support for choosing graph range in duration instead of tick number when Common_Ticktime is available
laurent
parents: 586
diff changeset
   203
        self.Ticktime = self.DataProducer.GetTicktime()
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   204
        if register:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   205
            self.AddDataConsumer(self.InstancePath.upper(), self)
665
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   206
        self.ResetLastCursor()
632
3ea55a5db68e Adding support for choosing graph range in duration instead of tick number when Common_Ticktime is available
laurent
parents: 586
diff changeset
   207
        self.RefreshCanvasRange()
338
87e5015330ae Adding support for ToolTip on wire when debugging
lbessard
parents: 331
diff changeset
   208
        self.RefreshView()
87e5015330ae Adding support for ToolTip on wire when debugging
lbessard
parents: 331
diff changeset
   209
    
642
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   210
    def RefreshNewData(self, *args, **kwargs):
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   211
        self.RefreshView(*args, **kwargs)
374
16a0a6cb1644 Bug on GraphicViewer with latest modifications fixed
greg
parents: 361
diff changeset
   212
        DebugViewer.RefreshNewData(self)
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   213
    
642
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   214
    def GetNearestData(self, tick, adjust):
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   215
        ticks = numpy.array(zip(*self.Datas)[0])
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   216
        new_cursor = numpy.argmin(abs(ticks - tick))
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   217
        if adjust == -1 and ticks[new_cursor] > tick and new_cursor > 0:
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   218
            new_cursor -= 1
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   219
        elif adjust == 1 and ticks[new_cursor] < tick and new_cursor < len(self.Datas):
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   220
            new_cursor += 1
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   221
        return new_cursor
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   222
    
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   223
    def GetBounds(self):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   224
        if self.StartIdx is None or self.EndIdx is None:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   225
            self.StartIdx = self.GetNearestData(self.StartTick, -1)
665
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   226
            self.EndIdx = self.GetNearestData(self.StartTick + self.CurrentRange, 1)
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   227
    
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   228
    def ResetBounds(self):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   229
        self.StartIdx = None
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   230
        self.EndIdx = None
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   231
    
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   232
    def RefreshCanvasRange(self):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   233
        if self.Ticktime == 0 and self.RangeValues != RANGE_VALUES:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   234
            self.RangeValues = RANGE_VALUES
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   235
            self.CanvasRange.Clear()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   236
            for text, value in RANGE_VALUES:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   237
                self.CanvasRange.Append(text)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   238
            self.CanvasRange.SetStringSelection(RANGE_VALUES[0][0])
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   239
            self.CurrentRange = RANGE_VALUES[0][1]
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   240
        elif self.RangeValues != TIME_RANGE_VALUES:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   241
            self.RangeValues = TIME_RANGE_VALUES
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   242
            self.CanvasRange.Clear()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   243
            for text, value in TIME_RANGE_VALUES:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   244
                self.CanvasRange.Append(text)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   245
            self.CanvasRange.SetStringSelection(TIME_RANGE_VALUES[0][0])
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   246
            self.CurrentRange = TIME_RANGE_VALUES[0][1] / self.Ticktime
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   247
        
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   248
    def RefreshView(self, force=True):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   249
        self.Freeze()
665
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   250
        if force or not self.Fixed or (len(self.Datas) > 0 and self.StartTick + self.CurrentRange > self.Datas[-1][0]):
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   251
            if (self.MinValue is not None and 
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   252
                self.MaxValue is not None and 
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   253
                self.MinValue != self.MaxValue):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   254
                Yrange = float(self.MaxValue - self.MinValue) / self.CurrentZoom
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   255
            else:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   256
                Yrange = 2. / self.CurrentZoom
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   257
            
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   258
            if not self.Fixed and len(self.Datas) > 0:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   259
                self.YCenter = max(self.Datas[-1][1] - Yrange / 2, 
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   260
                               min(self.YCenter, 
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   261
                                   self.Datas[-1][1] + Yrange / 2))
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   262
            
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   263
            var_name = self.InstancePath.split(".")[-1]
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   264
            
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   265
            self.GetBounds()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   266
            self.VariableGraphic = plot.PolyLine(self.Datas[self.StartIdx:self.EndIdx + 1], 
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   267
                                                 legend=var_name, colour=colours[0])
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   268
            self.GraphicsObject = plot.PlotGraphics([self.VariableGraphic], _("%s Graphics") % var_name, _("Tick"), _("Values"))
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   269
            self.Canvas.Draw(self.GraphicsObject, 
665
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   270
                             xAxis=(self.StartTick, self.StartTick + self.CurrentRange),
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   271
                             yAxis=(self.YCenter - Yrange * 1.1 / 2, self.YCenter + Yrange * 1.1 / 2))
665
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   272
        
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   273
            # Reset and draw cursor 
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   274
            self.ResetLastCursor()
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   275
            self.RefreshCursor()
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   276
        
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   277
        self.RefreshScrollBar()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   278
        
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   279
        self.Thaw()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   280
    
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   281
    def GetInstancePath(self):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   282
        return self.InstancePath
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   283
    
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   284
    def IsViewing(self, tagname):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   285
        return self.InstancePath == tagname
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   286
    
504
f88e0ebd8fe4 Forced variable now supported in GraphicViewer
edouard
parents: 431
diff changeset
   287
    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
   288
        self.Datas.append((float(tick), {True:1., False:0.}.get(value, float(value))))
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   289
        if self.MinValue is None:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   290
            self.MinValue = value
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   291
        else:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   292
            self.MinValue = min(self.MinValue, value)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   293
        if self.MaxValue is None:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   294
            self.MaxValue = value
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   295
        else:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   296
            self.MaxValue = max(self.MaxValue, value)
665
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   297
        if not self.Fixed or tick < self.StartTick + self.CurrentRange:
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   298
            self.GetBounds()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   299
            while int(self.Datas[self.StartIdx][0]) < tick - self.CurrentRange:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   300
                self.StartIdx += 1
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   301
            self.EndIdx += 1
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   302
            self.StartTick = self.Datas[self.StartIdx][0]
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   303
        self.NewDataAvailable()
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 344
diff changeset
   304
    
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   305
    def RefreshScrollBar(self):
642
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   306
        if len(self.Datas) > 0:
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   307
            self.GetBounds()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   308
            pos = int(self.Datas[self.StartIdx][0] - self.Datas[0][0])
642
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   309
            range = int(self.Datas[-1][0] - self.Datas[0][0])
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   310
        else:
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   311
            pos = 0
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   312
            range = 0
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   313
        self.CanvasPosition.SetScrollbar(pos, self.CurrentRange, range, self.CurrentRange)
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   314
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   315
    def RefreshRange(self):
648
95d165193770 Fix bug in GraphicViewer when changing range while no data received
laurent
parents: 642
diff changeset
   316
        if len(self.Datas) > 0:
95d165193770 Fix bug in GraphicViewer when changing range while no data received
laurent
parents: 642
diff changeset
   317
            if self.Fixed and self.Datas[-1][0] - self.Datas[0][0] < self.CurrentRange:
95d165193770 Fix bug in GraphicViewer when changing range while no data received
laurent
parents: 642
diff changeset
   318
                self.Fixed = False
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   319
            self.ResetBounds()
648
95d165193770 Fix bug in GraphicViewer when changing range while no data received
laurent
parents: 642
diff changeset
   320
            if self.Fixed:
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   321
                self.StartTick = min(self.StartTick, self.Datas[-1][0] - self.CurrentRange)
648
95d165193770 Fix bug in GraphicViewer when changing range while no data received
laurent
parents: 642
diff changeset
   322
            else:
665
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   323
                self.StartTick = max(self.Datas[0][0], self.Datas[-1][0] - self.CurrentRange)
642
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   324
        self.NewDataAvailable(True)
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   325
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   326
    def OnRangeChanged(self, event):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   327
        try:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   328
            if self.Ticktime == 0:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   329
                self.CurrentRange = self.RangeValues[self.CanvasRange.GetSelection()][1]
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   330
            else:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   331
                self.CurrentRange = self.RangeValues[self.CanvasRange.GetSelection()][1] / self.Ticktime
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   332
        except ValueError, e:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   333
            self.CanvasRange.SetValue(str(self.CurrentRange))
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   334
        wx.CallAfter(self.RefreshRange)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   335
        event.Skip()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   336
    
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   337
    def OnZoomChanged(self, event):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   338
        self.CurrentZoom = ZOOM_VALUES[self.CanvasZoom.GetSelection()][1]
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   339
        wx.CallAfter(self.NewDataAvailable, True)
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   340
        event.Skip()
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   341
    
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   342
    def OnPositionChanging(self, event):
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   343
        self.ResetBounds()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   344
        self.StartTick = self.Datas[0][0] + event.GetPosition()
642
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   345
        self.Fixed = True
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   346
        self.NewDataAvailable(True)
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   347
        event.Skip()
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   348
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   349
    def OnResetButton(self, event):
642
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   350
        self.Fixed = False
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   351
        self.ResetView()
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   352
        event.Skip()
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   353
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents:
diff changeset
   354
    def OnCurrentButton(self, event):
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   355
        self.ResetBounds()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   356
        self.StartTick = max(self.Datas[0][0], self.Datas[-1][0] - self.CurrentRange)
642
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   357
        self.Fixed = False
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   358
        self.NewDataAvailable(True)
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   359
        event.Skip()
711
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   360
    
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   361
    def OnExportGraphButtonClick(self, event):
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   362
        data_copy = self.Datas[:]
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   363
        text = "tick;%s;\n" % self.InstancePath
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   364
        for tick, value in data_copy:
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   365
            text += "%d;%.3f;\n" % (tick, value)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   366
        self.ParentWindow.SetCopyBuffer(text)
5f6a743dcde5 Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents: 706
diff changeset
   367
        event.Skip()
642
f2325ebd67f4 Fixed wrong time scale in debug graph display when some samples are missed
laurent
parents: 640
diff changeset
   368
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   369
    def OnCanvasLeftDown(self, event):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   370
        self.Fixed = True
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   371
        self.Canvas.canvas.CaptureMouse()
665
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   372
        if len(self.Datas) > 0:
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   373
            if self.Mode == MODE_SELECTION:
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   374
                self.Dragging = True
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   375
                pos = self.Canvas.PositionScreenToUser(event.GetPosition())
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   376
                self.CursorIdx = self.GetNearestData(pos[0], -1)
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   377
                self.RefreshCursor()
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   378
            elif self.Mode == MODE_MOTION:
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   379
                self.GetBounds()
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   380
                self.CurrentMousePos = event.GetPosition()
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   381
                self.CurrentMotionValue = self.Datas[self.StartIdx][0]
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   382
        event.Skip()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   383
        
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   384
    def OnCanvasLeftUp(self, event):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   385
        self.Dragging = False
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   386
        if self.Mode == MODE_MOTION:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   387
            self.CurrentMousePos = None
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   388
            self.CurrentMotionValue = None
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   389
        if self.Canvas.canvas.HasCapture():
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   390
            self.Canvas.canvas.ReleaseMouse()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   391
        event.Skip()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   392
        
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   393
    def OnCanvasMotion(self, event):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   394
        if self.Mode == MODE_SELECTION and self.Dragging:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   395
            pos = self.Canvas.PositionScreenToUser(event.GetPosition())
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   396
            graphics, xAxis, yAxis = self.Canvas.last_draw
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   397
            self.CursorIdx = self.GetNearestData(max(xAxis[0], min(pos[0], xAxis[1])), -1)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   398
            self.RefreshCursor()
665
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   399
        elif self.CurrentMousePos is not None and len(self.Datas) > 0:
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   400
            oldpos = self.Canvas.PositionScreenToUser(self.CurrentMousePos)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   401
            newpos = self.Canvas.PositionScreenToUser(event.GetPosition())
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   402
            self.CurrentMotionValue += oldpos[0] - newpos[0]
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   403
            self.YCenter += oldpos[1] - newpos[1]
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   404
            self.ResetBounds()
665
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   405
            self.StartTick = max(self.Datas[0][0], min(self.CurrentMotionValue, self.Datas[-1][0] - self.CurrentRange))
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   406
            self.CurrentMousePos = event.GetPosition()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   407
            self.NewDataAvailable(True)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   408
        event.Skip()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   409
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   410
    def OnCanvasMouseWheel(self, event):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   411
        if self.CurrentMousePos is None:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   412
            rotation = event.GetWheelRotation() / event.GetWheelDelta()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   413
            if event.ShiftDown():
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   414
                current = self.CanvasRange.GetSelection()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   415
                new = max(0, min(current - rotation, len(self.RangeValues) - 1))
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   416
                if new != current:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   417
                    if self.Ticktime == 0:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   418
                        self.CurrentRange = self.RangeValues[new][1]
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   419
                    else:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   420
                        self.CurrentRange = self.RangeValues[new][1] / self.Ticktime
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   421
                    self.CanvasRange.SetStringSelection(self.RangeValues[new][0])
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   422
                    wx.CallAfter(self.RefreshRange)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   423
            else:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   424
                current = self.CanvasZoom.GetSelection()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   425
                new = max(0, min(current - rotation, len(ZOOM_VALUES) - 1))
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   426
                if new != current:
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   427
                    self.CurrentZoom = ZOOM_VALUES[new][1]
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   428
                    self.CanvasZoom.SetStringSelection(ZOOM_VALUES[new][0])
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   429
                    wx.CallAfter(self.NewDataAvailable, True)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   430
        event.Skip()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   431
668
e858ff2f7862 Fix cursor refresh when GraphicViewer canvas is resized
laurent
parents: 665
diff changeset
   432
    def OnCanvasResize(self, event):
e858ff2f7862 Fix cursor refresh when GraphicViewer canvas is resized
laurent
parents: 665
diff changeset
   433
        self.ResetLastCursor()
e858ff2f7862 Fix cursor refresh when GraphicViewer canvas is resized
laurent
parents: 665
diff changeset
   434
        wx.CallAfter(self.RefreshCursor)
e858ff2f7862 Fix cursor refresh when GraphicViewer canvas is resized
laurent
parents: 665
diff changeset
   435
        event.Skip()
e858ff2f7862 Fix cursor refresh when GraphicViewer canvas is resized
laurent
parents: 665
diff changeset
   436
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   437
    ## Reset the last cursor
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   438
    def ResetLastCursor(self):
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   439
        self.LastCursor = None
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   440
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   441
    ## Draw the cursor on graphic
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   442
    #  @param dc The draw canvas
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   443
    #  @param cursor The cursor parameters
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   444
    def DrawCursor(self, dc, cursor, value):
665
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   445
        if self.StartTick <= cursor <= self.StartTick + self.CurrentRange:
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   446
            # Prepare temporary dc for drawing
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   447
            width = self.Canvas._Buffer.GetWidth()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   448
            height = self.Canvas._Buffer.GetHeight()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   449
            tmp_Buffer = wx.EmptyBitmap(width, height)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   450
            dcs = wx.MemoryDC()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   451
            dcs.SelectObject(tmp_Buffer)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   452
            dcs.Clear()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   453
            dcs.BeginDrawing()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   454
            
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   455
            dcs.SetPen(wx.Pen(wx.RED))
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   456
            dcs.SetBrush(wx.Brush(wx.RED, wx.SOLID))
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   457
            dcs.SetFont(self.Canvas._getFont(self.Canvas._fontSizeAxis))
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   458
            
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   459
            # Calculate clipping region
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   460
            graphics, xAxis, yAxis = self.Canvas.last_draw
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   461
            p1 = numpy.array([xAxis[0], yAxis[0]])
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   462
            p2 = numpy.array([xAxis[1], yAxis[1]])
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   463
            cx, cy, cwidth, cheight = self.Canvas._point2ClientCoord(p1, p2)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   464
            
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   465
            px, py = self.Canvas.PositionUserToScreen((float(cursor), 0.))
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   466
            
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   467
            # Draw line cross drawing for diaplaying time cursor
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   468
            dcs.DrawLine(px, cy + 1, px, cy + cheight - 1)
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   469
            
665
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   470
            lines = ("X:%d\nY:%f" % (cursor, value)).splitlines()
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   471
            
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   472
            wtext = 0
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   473
            for line in lines:
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   474
                w, h = dcs.GetTextExtent(line)
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   475
                wtext = max(wtext, w)
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   476
            
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   477
            offset = 0
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   478
            for line in lines:
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   479
                # Draw time cursor date
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   480
                dcs.DrawText(line, min(px + 3, cx + cwidth - wtext), cy + 3 + offset)
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   481
                w, h = dcs.GetTextExtent(line)
6a376615142e Fix bugs in GraphicViewer with selection and navigation
laurent
parents: 660
diff changeset
   482
                offset += h
660
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   483
            
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   484
            dcs.EndDrawing()
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   485
    
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   486
            #this will erase if called twice
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   487
            dc.Blit(0, 0, width, height, dcs, 0, 0, wx.EQUIV)  #(NOT src) XOR dst
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   488
    
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   489
    ## Refresh the variable cursor.
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   490
    #  @param dc The draw canvas
30c0371ac086 Adding zoom and navigation in GraphicViewer and ToolBar containing basic menu items
laurent
parents: 648
diff changeset
   491
    def RefreshCursor(self, dc=None):
687
629680fb0582 refactoring
laurent
parents: 668
diff changeset
   492
        if self:
629680fb0582 refactoring
laurent
parents: 668
diff changeset
   493
            if dc is None:
629680fb0582 refactoring
laurent
parents: 668
diff changeset
   494
                dc = wx.BufferedDC(wx.ClientDC(self.Canvas.canvas), self.Canvas._Buffer)
629680fb0582 refactoring
laurent
parents: 668
diff changeset
   495
            
629680fb0582 refactoring
laurent
parents: 668
diff changeset
   496
            # Erase previous time cursor if drawn
629680fb0582 refactoring
laurent
parents: 668
diff changeset
   497
            if self.LastCursor is not None:
629680fb0582 refactoring
laurent
parents: 668
diff changeset
   498
                self.DrawCursor(dc, *self.LastCursor)
629680fb0582 refactoring
laurent
parents: 668
diff changeset
   499
            
629680fb0582 refactoring
laurent
parents: 668
diff changeset
   500
            # Draw new time cursor
629680fb0582 refactoring
laurent
parents: 668
diff changeset
   501
            if self.CursorIdx is not None:
629680fb0582 refactoring
laurent
parents: 668
diff changeset
   502
                self.LastCursor = self.Datas[self.CursorIdx]
629680fb0582 refactoring
laurent
parents: 668
diff changeset
   503
                self.DrawCursor(dc, *self.LastCursor)