author | Edouard Tisserant <edouard.tisserant@gmail.com> |
Wed, 31 May 2023 17:06:03 +0200 | |
changeset 3818 | e528b11a60cc |
parent 3798 | e0117f4b0ff1 |
child 3871 | 5d23a47937c4 |
permissions | -rw-r--r-- |
814 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
3 |
||
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
4 |
# This file is part of Beremiz, a Integrated Development Environment for |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
5 |
# programming IEC 61131-3 automates supporting plcopen standard and CanFestival. |
814 | 6 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
7 |
# Copyright (C) 2012: Edouard TISSERANT and Laurent BESSARD |
814 | 8 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
9 |
# See COPYING file for copyrights details. |
814 | 10 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
11 |
# This program is free software; you can redistribute it and/or |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
12 |
# modify it under the terms of the GNU General Public License |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
13 |
# as published by the Free Software Foundation; either version 2 |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
14 |
# of the License, or (at your option) any later version. |
814 | 15 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
16 |
# This program is distributed in the hope that it will be useful, |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
17 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
18 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
19 |
# GNU General Public License for more details. |
814 | 20 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
21 |
# You should have received a copy of the GNU General Public License |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
22 |
# along with this program; if not, write to the Free Software |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1497
diff
changeset
|
23 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
814 | 24 |
|
1853
47a3f39bead0
fix pylint warning "(relative-import) Relative import 'Y', should be 'X.Y'"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
25 |
|
887
d3c6c4ab8b28
Adding support for displaying graphs of debugged numeric variables in 2D and 3D in DebugVariablePanel
Laurent Bessard
parents:
878
diff
changeset
|
26 |
from time import time as gettime |
1919
ccea0fa6ea91
Another set of meaningless changes to satisfy PEP8 and PyLint.
Edouard Tisserant
parents:
1878
diff
changeset
|
27 |
from cycler import cycler |
1832
0f1081928d65
fix wrong-import-order. first standard modules are imported, then others
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1823
diff
changeset
|
28 |
|
887
d3c6c4ab8b28
Adding support for displaying graphs of debugged numeric variables in 2D and 3D in DebugVariablePanel
Laurent Bessard
parents:
878
diff
changeset
|
29 |
import numpy |
814 | 30 |
import wx |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
31 |
import matplotlib |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
32 |
import matplotlib.pyplot |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
33 |
from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
34 |
from matplotlib.backends.backend_agg import FigureCanvasAgg |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
35 |
from mpl_toolkits.mplot3d import Axes3D |
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
36 |
|
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
37 |
from editors.DebugViewer import REFRESH_PERIOD |
1853
47a3f39bead0
fix pylint warning "(relative-import) Relative import 'Y', should be 'X.Y'"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
38 |
from controls.DebugVariablePanel.DebugVariableViewer import * |
47a3f39bead0
fix pylint warning "(relative-import) Relative import 'Y', should be 'X.Y'"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
39 |
from controls.DebugVariablePanel.GraphButton import GraphButton |
1199
fc0e7d80494f
Move GraphButton from DebugVariableGraphicPanel to separate file
Laurent Bessard
parents:
1198
diff
changeset
|
40 |
|
1497
7330c85534ea
fix set_color_cycle from matplotlib deprecation warning
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1485
diff
changeset
|
41 |
|
1209 | 42 |
# Graph variable display type |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3660
diff
changeset
|
43 |
GRAPH_PARALLEL, GRAPH_ORTHOGONAL = list(range(2)) |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
44 |
|
1209 | 45 |
# Canvas height |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
46 |
[SIZE_MINI, SIZE_MIDDLE, SIZE_MAXI] = [0, 100, 200] |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
47 |
|
1964
b9318fc8f033
enlarge canvas border for debug variable graphic viewer
Surkov Sergey <surkovsv93@gmail.com>
parents:
1878
diff
changeset
|
48 |
CANVAS_BORDER = (30., 20.) # Border height on at bottom and top of graph |
1737
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
49 |
CANVAS_PADDING = 8.5 # Border inside graph where no label is drawn |
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
50 |
VALUE_LABEL_HEIGHT = 17. # Height of variable label in graph |
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
51 |
AXES_LABEL_HEIGHT = 12.75 # Height of variable value in graph |
1209 | 52 |
|
53 |
# Colors used cyclically for graph curves |
|
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
54 |
COLOR_CYCLE = ['r', 'b', 'g', 'm', 'y', 'k'] |
1209 | 55 |
# Color for graph cursor |
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
56 |
CURSOR_COLOR = '#800080' |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
57 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
58 |
# ------------------------------------------------------------------------------- |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
59 |
# Debug Variable Graphic Viewer Helpers |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
60 |
# ------------------------------------------------------------------------------- |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
61 |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
62 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
63 |
def merge_ranges(ranges): |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
64 |
""" |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
65 |
Merge variables data range in a list to return a range of minimal min range |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
66 |
value and maximal max range value extended of 10% for keeping a padding |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
67 |
around graph in canvas |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
68 |
@param ranges: [(range_min_value, range_max_value),...] |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
69 |
@return: merged_range_min_value, merged_range_max_value |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
70 |
""" |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
71 |
# Get minimal and maximal range value |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
72 |
min_value = max_value = None |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
73 |
for range_min, range_max in ranges: |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
74 |
# Update minimal range value |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
75 |
if min_value is None: |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
76 |
min_value = range_min |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
77 |
elif range_min is not None: |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
78 |
min_value = min(min_value, range_min) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
79 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
80 |
# Update maximal range value |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
81 |
if max_value is None: |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
82 |
max_value = range_max |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
83 |
elif range_min is not None: |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
84 |
max_value = max(max_value, range_max) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
85 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
86 |
# Calculate range center and width if at least one valid range is defined |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
87 |
if min_value is not None and max_value is not None: |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
88 |
center = (min_value + max_value) / 2. |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
89 |
range_size = max(1.0, max_value - min_value) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
90 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
91 |
# Set default center and with if no valid range is defined |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
92 |
else: |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
93 |
center = 0.5 |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
94 |
range_size = 1.0 |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
95 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
96 |
# Return range expended from 10 % |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
97 |
return center - range_size * 0.55, center + range_size * 0.55 |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
98 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
99 |
# ------------------------------------------------------------------------------- |
1209 | 100 |
# Debug Variable Graphic Viewer Drop Target |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
101 |
# ------------------------------------------------------------------------------- |
1209 | 102 |
|
103 |
||
104 |
class DebugVariableGraphicDropTarget(wx.TextDropTarget): |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
105 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
106 |
Class that implements a custom drop target class for Debug Variable Graphic |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
107 |
Viewer |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
108 |
""" |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
109 |
|
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
110 |
def __init__(self, parent, window): |
1209 | 111 |
""" |
112 |
Constructor |
|
113 |
@param parent: Reference to Debug Variable Graphic Viewer |
|
114 |
@param window: Reference to the Debug Variable Panel |
|
115 |
""" |
|
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
116 |
wx.TextDropTarget.__init__(self) |
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
117 |
self.ParentControl = parent |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
118 |
self.ParentWindow = window |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
119 |
|
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
120 |
def OnDragOver(self, x, y, d): |
1209 | 121 |
""" |
122 |
Function called when mouse is dragged over Drop Target |
|
123 |
@param x: X coordinate of mouse pointer |
|
124 |
@param y: Y coordinate of mouse pointer |
|
125 |
@param d: Suggested default for return value |
|
126 |
""" |
|
127 |
# Signal parent that mouse is dragged over |
|
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
128 |
self.ParentControl.OnMouseDragging(x, y) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
129 |
|
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
130 |
return wx.TextDropTarget.OnDragOver(self, x, y, d) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
131 |
|
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
132 |
def OnDropText(self, x, y, data): |
1209 | 133 |
""" |
1215 | 134 |
Function called when mouse is released in Drop Target |
1209 | 135 |
@param x: X coordinate of mouse pointer |
136 |
@param y: Y coordinate of mouse pointer |
|
137 |
@param data: Text associated to drag'n drop |
|
138 |
""" |
|
1218 | 139 |
# Signal Debug Variable Panel to reset highlight |
140 |
self.ParentWindow.ResetHighlight() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
141 |
|
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
142 |
message = None |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
143 |
|
1209 | 144 |
# Check that data is valid regarding DebugVariablePanel |
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
145 |
try: |
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
146 |
values = eval(data) |
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2440
diff
changeset
|
147 |
if not isinstance(values, tuple): |
1207 | 148 |
raise ValueError |
1780
c52d1460cea8
clean-up: fix PEP8 E722 do not use bare except'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
149 |
except Exception: |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
150 |
message = _("Invalid value \"%s\" for debug variable") % data |
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
151 |
values = None |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
152 |
|
1209 | 153 |
# Display message if data is invalid |
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
154 |
if message is not None: |
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
155 |
wx.CallAfter(self.ShowMessage, message) |
3660
0e41dbe6ddcd
IDE: Fix DropTarget() methods that must return a bool with wxPython4.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
3659
diff
changeset
|
156 |
return False |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
157 |
|
1209 | 158 |
# Data contain a reference to a variable to debug |
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
159 |
elif values[1] == "debug": |
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
160 |
target_idx = self.ParentControl.GetIndex() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
161 |
|
1209 | 162 |
# If mouse is dropped in graph canvas bounding box and graph is |
163 |
# not 3D canvas, graphs will be merged |
|
164 |
rect = self.ParentControl.GetAxesBoundingBox() |
|
3303
0ffb41625592
Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2450
diff
changeset
|
165 |
if not self.ParentControl.Is3DCanvas() and rect.Contains(x, y): |
1209 | 166 |
# Default merge type is parallel |
167 |
merge_type = GRAPH_PARALLEL |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
168 |
|
1209 | 169 |
# If mouse is dropped in left part of graph canvas, graph |
170 |
# wall be merged orthogonally |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
171 |
merge_rect = wx.Rect(rect.x, rect.y, |
1209 | 172 |
rect.width / 2., rect.height) |
3303
0ffb41625592
Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2450
diff
changeset
|
173 |
if merge_rect.Contains(x, y): |
1209 | 174 |
merge_type = GRAPH_ORTHOGONAL |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
175 |
|
1209 | 176 |
# Merge graphs |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
177 |
wx.CallAfter(self.ParentWindow.MergeGraphs, |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
178 |
values[0], target_idx, |
1209 | 179 |
merge_type, force=True) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
180 |
|
1209 | 181 |
else: |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
182 |
_width, height = self.ParentControl.GetSize() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
183 |
|
1209 | 184 |
# Get Before which Viewer the variable has to be moved or added |
185 |
# according to the position of mouse in Viewer. |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
186 |
if y > height // 2: |
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
187 |
target_idx += 1 |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
188 |
|
1209 | 189 |
# Drag'n Drop is an internal is an internal move inside Debug |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
190 |
# Variable Panel |
1209 | 191 |
if len(values) > 2 and values[2] == "move": |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
192 |
self.ParentWindow.MoveValue(values[0], |
1209 | 193 |
target_idx) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
194 |
|
1209 | 195 |
# Drag'n Drop was initiated by another control of Beremiz |
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
196 |
else: |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
197 |
self.ParentWindow.InsertValue(values[0], |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
198 |
target_idx, |
1209 | 199 |
force=True) |
3660
0e41dbe6ddcd
IDE: Fix DropTarget() methods that must return a bool with wxPython4.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
3659
diff
changeset
|
200 |
return True |
0e41dbe6ddcd
IDE: Fix DropTarget() methods that must return a bool with wxPython4.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
3659
diff
changeset
|
201 |
return False |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
202 |
|
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
203 |
def OnLeave(self): |
1209 | 204 |
""" |
205 |
Function called when mouse is leave Drop Target |
|
206 |
""" |
|
207 |
# Signal Debug Variable Panel to reset highlight |
|
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
208 |
self.ParentWindow.ResetHighlight() |
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
209 |
return wx.TextDropTarget.OnLeave(self) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
210 |
|
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
211 |
def ShowMessage(self, message): |
1209 | 212 |
""" |
213 |
Show error message in Error Dialog |
|
214 |
@param message: Error message to display |
|
215 |
""" |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
216 |
dialog = wx.MessageDialog(self.ParentWindow, |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
217 |
message, |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
218 |
_("Error"), |
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1744
diff
changeset
|
219 |
wx.OK | wx.ICON_ERROR) |
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
220 |
dialog.ShowModal() |
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
221 |
dialog.Destroy() |
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
222 |
|
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
223 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
224 |
# ------------------------------------------------------------------------------- |
1209 | 225 |
# Debug Variable Graphic Viewer Class |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
226 |
# ------------------------------------------------------------------------------- |
1209 | 227 |
|
228 |
||
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
229 |
class DebugVariableGraphicViewer(DebugVariableViewer, FigureCanvas): |
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
230 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
231 |
Class that implements a Viewer that display variable values as a graphs |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
232 |
""" |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
233 |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
234 |
def __init__(self, parent, window, items, graph_type): |
1209 | 235 |
""" |
236 |
Constructor |
|
237 |
@param parent: Parent wx.Window of DebugVariableText |
|
238 |
@param window: Reference to the Debug Variable Panel |
|
239 |
@param items: List of DebugVariableItem displayed by Viewer |
|
240 |
@param graph_type: Graph display type (Parallel or orthogonal) |
|
241 |
""" |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
242 |
DebugVariableViewer.__init__(self, window, items) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
243 |
|
1209 | 244 |
self.GraphType = graph_type # Graph type display |
245 |
self.CursorTick = None # Tick of the graph cursor |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
246 |
|
1209 | 247 |
# Mouse position when start dragging |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
248 |
self.MouseStartPos = None |
1209 | 249 |
# Tick when moving tick start |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
250 |
self.StartCursorTick = None |
1209 | 251 |
# Canvas size when starting to resize canvas |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
252 |
self.CanvasStartSize = None |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
253 |
|
1209 | 254 |
# List of current displayed contextual buttons |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
255 |
self.ContextualButtons = [] |
1209 | 256 |
# Reference to item for which contextual buttons was displayed |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
257 |
self.ContextualButtonsItem = None |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
258 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
259 |
# Flag indicating that zoom fit current displayed data range or whole |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
260 |
# data range if False |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
261 |
self.ZoomFit = False |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
262 |
|
1209 | 263 |
# Create figure for drawing graphs |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
264 |
self.Figure = matplotlib.figure.Figure(facecolor='w') |
1209 | 265 |
# Defined border around figure in canvas |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
266 |
self.Figure.subplotpars.update(top=0.95, left=0.1, |
1209 | 267 |
bottom=0.1, right=0.95) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
268 |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
269 |
FigureCanvas.__init__(self, parent, -1, self.Figure) |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
270 |
self.SetWindowStyle(wx.WANTS_CHARS) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
271 |
|
1209 | 272 |
# Bind wx events |
1214
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
273 |
self.Bind(wx.EVT_LEFT_DCLICK, self.OnLeftDClick) |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
274 |
self.Bind(wx.EVT_KEY_DOWN, self.OnKeyDown) |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
275 |
self.Bind(wx.EVT_ENTER_WINDOW, self.OnEnter) |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
276 |
self.Bind(wx.EVT_LEAVE_WINDOW, self.OnLeave) |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
277 |
self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground) |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
278 |
self.Bind(wx.EVT_SIZE, self.OnResize) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
279 |
|
1209 | 280 |
# Set canvas min size |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
281 |
canvas_size = self.GetCanvasMinSize() |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
282 |
self.SetMinSize(canvas_size) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
283 |
|
1209 | 284 |
# Define Viewer drop target |
285 |
self.SetDropTarget(DebugVariableGraphicDropTarget(self, window)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
286 |
|
1209 | 287 |
# Connect matplotlib events |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
288 |
self.mpl_connect('button_press_event', self.OnCanvasButtonPressed) |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
289 |
self.mpl_connect('motion_notify_event', self.OnCanvasMotion) |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
290 |
self.mpl_connect('button_release_event', self.OnCanvasButtonReleased) |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
291 |
self.mpl_connect('scroll_event', self.OnCanvasScroll) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
292 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
293 |
# Add buttons for zooming on current displayed data range |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
294 |
self.Buttons.append( |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
295 |
GraphButton(0, 0, "fit_graph", self.OnZoomFitButton)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
296 |
|
1209 | 297 |
# Add buttons for changing canvas size with predefined height |
298 |
for size, bitmap in zip( |
|
299 |
[SIZE_MINI, SIZE_MIDDLE, SIZE_MAXI], |
|
300 |
["minimize_graph", "middle_graph", "maximize_graph"]): |
|
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
301 |
self.Buttons.append(GraphButton(0, 0, bitmap, |
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
302 |
self.GetOnChangeSizeButton(size))) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
303 |
|
1209 | 304 |
# Add buttons for exporting graph values to clipboard and close graph |
305 |
for bitmap, callback in [ |
|
306 |
("export_graph_mini", self.OnExportGraphButton), |
|
307 |
("delete_graph", self.OnCloseButton)]: |
|
1199
fc0e7d80494f
Move GraphButton from DebugVariableGraphicPanel to separate file
Laurent Bessard
parents:
1198
diff
changeset
|
308 |
self.Buttons.append(GraphButton(0, 0, bitmap, callback)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
309 |
|
1209 | 310 |
# Update graphs elements |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
311 |
self.ResetGraphics() |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
312 |
self.RefreshLabelsPosition(canvas_size.height) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
313 |
|
1209 | 314 |
def AddItem(self, item): |
315 |
""" |
|
316 |
Add an item to the list of items displayed by Viewer |
|
317 |
@param item: Item to add to the list |
|
318 |
""" |
|
319 |
DebugVariableViewer.AddItem(self, item) |
|
320 |
self.ResetGraphics() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
321 |
|
1209 | 322 |
def RemoveItem(self, item): |
323 |
""" |
|
324 |
Remove an item from the list of items displayed by Viewer |
|
325 |
@param item: Item to remove from the list |
|
326 |
""" |
|
327 |
DebugVariableViewer.RemoveItem(self, item) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
328 |
|
1209 | 329 |
# If list of items is not empty |
330 |
if not self.ItemsIsEmpty(): |
|
331 |
# Return to parallel graph if there is only one item |
|
332 |
# especially if it's actually orthogonal |
|
333 |
if len(self.Items) == 1: |
|
334 |
self.GraphType = GRAPH_PARALLEL |
|
335 |
self.ResetGraphics() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
336 |
|
1212 | 337 |
def SetCursorTick(self, cursor_tick): |
338 |
""" |
|
339 |
Set cursor tick |
|
340 |
@param cursor_tick: Cursor tick |
|
341 |
""" |
|
342 |
self.CursorTick = cursor_tick |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
343 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
344 |
def SetZoomFit(self, zoom_fit): |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
345 |
""" |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
346 |
Set flag indicating that zoom fit current displayed data range |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
347 |
@param zoom_fit: Flag for zoom fit (False: zoom fit whole data range) |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
348 |
""" |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
349 |
# Flag is different from the actual one |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
350 |
if zoom_fit != self.ZoomFit: |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
351 |
# Save new flag value |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
352 |
self.ZoomFit = zoom_fit |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
353 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
354 |
# Update button for zoom fit bitmap |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
355 |
self.Buttons[0].SetBitmap("full_graph" if zoom_fit else "fit_graph") |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
356 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
357 |
# Refresh canvas |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
358 |
self.RefreshViewer() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
359 |
|
1209 | 360 |
def SubscribeAllDataConsumers(self): |
361 |
""" |
|
362 |
Function that unsubscribe and remove every item that store values of |
|
363 |
a variable that doesn't exist in PLC anymore |
|
364 |
""" |
|
365 |
DebugVariableViewer.SubscribeAllDataConsumers(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
366 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
367 |
# Graph still have data to display |
1209 | 368 |
if not self.ItemsIsEmpty(): |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
369 |
# Reset flag indicating that zoom fit current displayed data range |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
370 |
self.SetZoomFit(False) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
371 |
|
1209 | 372 |
self.ResetGraphics() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
373 |
|
1209 | 374 |
def Is3DCanvas(self): |
375 |
""" |
|
376 |
Return if Viewer is a 3D canvas |
|
377 |
@return: True if Viewer is a 3D canvas |
|
378 |
""" |
|
379 |
return self.GraphType == GRAPH_ORTHOGONAL and len(self.Items) == 3 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
380 |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
381 |
def GetButtons(self): |
1209 | 382 |
""" |
383 |
Return list of buttons defined in Viewer |
|
384 |
@return: List of buttons |
|
385 |
""" |
|
386 |
# Add contextual buttons to default buttons |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
387 |
return self.Buttons + self.ContextualButtons |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
388 |
|
1209 | 389 |
def PopupContextualButtons(self, item, rect, direction=wx.RIGHT): |
390 |
""" |
|
391 |
Show contextual menu for item aside a label of this item defined |
|
392 |
by the bounding box of label in figure |
|
393 |
@param item: Item for which contextual is shown |
|
394 |
@param rect: Bounding box of label aside which drawing menu |
|
395 |
@param direction: Direction in which buttons must be drawn |
|
396 |
""" |
|
397 |
# Return immediately if contextual menu for item is already shown |
|
398 |
if self.ContextualButtonsItem == item: |
|
399 |
return |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
400 |
|
1209 | 401 |
# Close already shown contextual menu |
402 |
self.DismissContextualButtons() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
403 |
|
1209 | 404 |
# Save item for which contextual menu is shown |
405 |
self.ContextualButtonsItem = item |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
406 |
|
1209 | 407 |
# If item variable is forced, add button for release variable to |
408 |
# contextual menu |
|
409 |
if self.ContextualButtonsItem.IsForced(): |
|
410 |
self.ContextualButtons.append( |
|
411 |
GraphButton(0, 0, "release", self.OnReleaseItemButton)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
412 |
|
1209 | 413 |
# Add other buttons to contextual menu |
414 |
for bitmap, callback in [ |
|
415 |
("force", self.OnForceItemButton), |
|
416 |
("export_graph_mini", self.OnExportItemGraphButton), |
|
417 |
("delete_graph", self.OnRemoveItemButton)]: |
|
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
418 |
self.ContextualButtons.append(GraphButton(0, 0, bitmap, callback)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
419 |
|
1209 | 420 |
# If buttons are shown at left side or upper side of rect, positions |
421 |
# will be set in reverse order |
|
422 |
buttons = self.ContextualButtons[:] |
|
423 |
if direction in [wx.TOP, wx.LEFT]: |
|
1757
0de89da92ee0
clean-up: fix PEP8 E111 indentation is not a multiple of four
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1750
diff
changeset
|
424 |
buttons.reverse() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
425 |
|
1209 | 426 |
# Set contextual menu buttons position aside rect depending on |
427 |
# direction given |
|
428 |
offset = 0 |
|
429 |
for button in buttons: |
|
430 |
w, h = button.GetSize() |
|
431 |
if direction in [wx.LEFT, wx.RIGHT]: |
|
432 |
x = rect.x + (- w - offset |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
433 |
if direction == wx.LEFT |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
434 |
else rect.width + offset) |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
435 |
y = rect.y + (rect.height - h) // 2 |
1209 | 436 |
offset += w |
437 |
else: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
438 |
x = rect.x + (rect.width - w) // 2 |
1209 | 439 |
y = rect.y + (- h - offset |
440 |
if direction == wx.TOP |
|
441 |
else rect.height + offset) |
|
442 |
offset += h |
|
443 |
button.SetPosition(x, y) |
|
444 |
button.Show() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
445 |
|
1209 | 446 |
# Refresh canvas |
447 |
self.ParentWindow.ForceRefresh() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
448 |
|
1209 | 449 |
def DismissContextualButtons(self): |
450 |
""" |
|
451 |
Close current shown contextual menu |
|
452 |
""" |
|
453 |
# Return immediately if no contextual menu is shown |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
454 |
if self.ContextualButtonsItem is None: |
1209 | 455 |
return |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
456 |
|
1209 | 457 |
# Reset variables corresponding to contextual menu |
458 |
self.ContextualButtonsItem = None |
|
459 |
self.ContextualButtons = [] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
460 |
|
1209 | 461 |
# Refresh canvas |
462 |
self.ParentWindow.ForceRefresh() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
463 |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
464 |
def IsOverContextualButton(self, x, y): |
1209 | 465 |
""" |
466 |
Return if point is over one contextual button of Viewer |
|
467 |
@param x: X coordinate of point |
|
468 |
@param y: Y coordinate of point |
|
469 |
@return: contextual button where point is over |
|
470 |
""" |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
471 |
for button in self.ContextualButtons: |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
472 |
if button.HitTest(x, y): |
1209 | 473 |
return button |
474 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
475 |
|
1209 | 476 |
def ExportGraph(self, item=None): |
477 |
""" |
|
478 |
Export item(s) data to clipboard in CSV format |
|
479 |
@param item: Item from which data to export, all items if None |
|
480 |
(default None) |
|
481 |
""" |
|
3773 | 482 |
if item is not None and item.GetData(): |
3764 | 483 |
self.ParentWindow.CopyDataToClipboard( |
484 |
[(item, [entry for entry in item.GetData()]) |
|
485 |
for item in (self.Items |
|
486 |
if item is None |
|
487 |
else [item])]) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
488 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
489 |
def OnZoomFitButton(self): |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
490 |
""" |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
491 |
Function called when Viewer Zoom Fit button is pressed |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
492 |
""" |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
493 |
# Toggle zoom fit flag value |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
494 |
self.SetZoomFit(not self.ZoomFit) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
495 |
|
1209 | 496 |
def GetOnChangeSizeButton(self, height): |
497 |
""" |
|
498 |
Function that generate callback function for change Viewer height to |
|
499 |
pre-defined height button |
|
500 |
@param height: Height that change Viewer to |
|
501 |
@return: callback function |
|
502 |
""" |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
503 |
def OnChangeSizeButton(): |
1264 | 504 |
self.SetCanvasHeight(height) |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
505 |
return OnChangeSizeButton |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
506 |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
507 |
def OnExportGraphButton(self): |
1209 | 508 |
""" |
509 |
Function called when Viewer Export button is pressed |
|
510 |
""" |
|
511 |
# Export data of every item in Viewer |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
512 |
self.ExportGraph() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
513 |
|
1209 | 514 |
def OnForceItemButton(self): |
515 |
""" |
|
516 |
Function called when contextual menu Force button is pressed |
|
517 |
""" |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
518 |
# Open dialog for forcing item variable value |
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
519 |
self.ForceValue(self.ContextualButtonsItem) |
1209 | 520 |
# Close contextual menu |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
521 |
self.DismissContextualButtons() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
522 |
|
1209 | 523 |
def OnReleaseItemButton(self): |
524 |
""" |
|
525 |
Function called when contextual menu Release button is pressed |
|
526 |
""" |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
527 |
# Release item variable value |
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
528 |
self.ReleaseValue(self.ContextualButtonsItem) |
1209 | 529 |
# Close contextual menu |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
530 |
self.DismissContextualButtons() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
531 |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
532 |
def OnExportItemGraphButton(self): |
1209 | 533 |
""" |
534 |
Function called when contextual menu Export button is pressed |
|
535 |
""" |
|
536 |
# Export data of item variable |
|
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
537 |
self.ExportGraph(self.ContextualButtonsItem) |
1209 | 538 |
# Close contextual menu |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
539 |
self.DismissContextualButtons() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
540 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
541 |
def OnRemoveItemButton(self): |
1209 | 542 |
""" |
543 |
Function called when contextual menu Remove button is pressed |
|
544 |
""" |
|
545 |
# Remove item from Viewer |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
546 |
wx.CallAfter(self.ParentWindow.DeleteValue, self, |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
547 |
self.ContextualButtonsItem) |
1209 | 548 |
# Close contextual menu |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
549 |
self.DismissContextualButtons() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
550 |
|
1209 | 551 |
def HandleCursorMove(self, event): |
1212 | 552 |
""" |
553 |
Update Cursor position according to mouse position and graph type |
|
554 |
@param event: Mouse event |
|
555 |
""" |
|
1209 | 556 |
start_tick, end_tick = self.ParentWindow.GetRange() |
557 |
cursor_tick = None |
|
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3660
diff
changeset
|
558 |
items = list(self.ItemsDict.values()) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
559 |
|
1212 | 560 |
# Graph is orthogonal |
1209 | 561 |
if self.GraphType == GRAPH_ORTHOGONAL: |
1212 | 562 |
# Extract items data displayed in canvas figure |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
563 |
start_tick = max(start_tick, self.GetItemsMinCommonTick()) |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
564 |
end_tick = max(end_tick, start_tick) |
1209 | 565 |
x_data = items[0].GetData(start_tick, end_tick) |
566 |
y_data = items[1].GetData(start_tick, end_tick) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
567 |
|
1212 | 568 |
# Search for the nearest point from mouse position |
1209 | 569 |
if len(x_data) > 0 and len(y_data) > 0: |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
570 |
length = min(len(x_data), len(y_data)) |
1764
d5df428640ff
clean-up: fix PEP8 E502 the backslash is redundant between brackets
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1757
diff
changeset
|
571 |
d = numpy.sqrt((x_data[:length, 1]-event.xdata) ** 2 + |
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1737
diff
changeset
|
572 |
(y_data[:length, 1]-event.ydata) ** 2) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
573 |
|
1212 | 574 |
# Set cursor tick to the tick of this point |
1209 | 575 |
cursor_tick = x_data[numpy.argmin(d), 0] |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
576 |
|
1212 | 577 |
# Graph is parallel |
1209 | 578 |
else: |
1212 | 579 |
# Extract items tick |
1209 | 580 |
data = items[0].GetData(start_tick, end_tick) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
581 |
|
1212 | 582 |
# Search for point that tick is the nearest from mouse X position |
583 |
# and set cursor tick to the tick of this point |
|
3773 | 584 |
if data is not None and len(data) > 0: |
1212 | 585 |
cursor_tick = data[numpy.argmin( |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
586 |
numpy.abs(data[:, 0] - event.xdata)), 0] |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
587 |
|
1212 | 588 |
# Update cursor tick |
1209 | 589 |
if cursor_tick is not None: |
590 |
self.ParentWindow.SetCursorTick(cursor_tick) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
591 |
|
1209 | 592 |
def OnCanvasButtonPressed(self, event): |
593 |
""" |
|
594 |
Function called when a button of mouse is pressed |
|
595 |
@param event: Mouse event |
|
596 |
""" |
|
1212 | 597 |
# Get mouse position, graph Y coordinate is inverted in matplotlib |
598 |
# comparing to wx |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
599 |
_width, height = self.GetSize() |
1209 | 600 |
x, y = event.x, height - event.y |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
601 |
|
1209 | 602 |
# Return immediately if mouse is over a button |
603 |
if self.IsOverButton(x, y): |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
604 |
return |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
605 |
|
1209 | 606 |
# Mouse was clicked inside graph figure |
607 |
if event.inaxes == self.Axes: |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
608 |
|
1209 | 609 |
# Find if it was on an item label |
610 |
item_idx = None |
|
611 |
# Check every label paired with corresponding item |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
612 |
for i, t in ([pair for pair in enumerate(self.AxesLabels)] + |
1209 | 613 |
[pair for pair in enumerate(self.Labels)]): |
614 |
# Get label bounding box |
|
615 |
(x0, y0), (x1, y1) = t.get_window_extent().get_points() |
|
616 |
rect = wx.Rect(x0, height - y1, x1 - x0, y1 - y0) |
|
617 |
# Check if mouse was over label |
|
3303
0ffb41625592
Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2450
diff
changeset
|
618 |
if rect.Contains(x, y): |
1209 | 619 |
item_idx = i |
620 |
break |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
621 |
|
1209 | 622 |
# If an item label have been clicked |
623 |
if item_idx is not None: |
|
624 |
# Hide buttons and contextual buttons |
|
625 |
self.ShowButtons(False) |
|
626 |
self.DismissContextualButtons() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
627 |
|
1209 | 628 |
# Start a drag'n drop from mouse position in wx coordinate of |
629 |
# parent |
|
630 |
xw, yw = self.GetPosition() |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
631 |
self.ParentWindow.StartDragNDrop( |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3660
diff
changeset
|
632 |
self, list(self.ItemsDict.values())[item_idx], |
1737
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
633 |
x + xw, y + yw, # Current mouse position |
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
634 |
x + xw, y + yw) # Mouse position when button was clicked |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
635 |
|
1209 | 636 |
# Don't handle mouse button if canvas is 3D and let matplotlib do |
637 |
# the default behavior (rotate 3D axes) |
|
638 |
elif not self.Is3DCanvas(): |
|
639 |
# Save mouse position when clicked |
|
640 |
self.MouseStartPos = wx.Point(x, y) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
641 |
|
1209 | 642 |
# Mouse button was left button, start moving cursor |
643 |
if event.button == 1: |
|
644 |
# Save current tick in case a drag'n drop is initiate to |
|
645 |
# restore it |
|
646 |
self.StartCursorTick = self.CursorTick |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
647 |
|
1209 | 648 |
self.HandleCursorMove(event) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
649 |
|
1209 | 650 |
# Mouse button is middle button and graph is parallel, start |
651 |
# moving graph along X coordinate (tick) |
|
652 |
elif event.button == 2 and self.GraphType == GRAPH_PARALLEL: |
|
653 |
self.StartCursorTick = self.ParentWindow.GetRange()[0] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
654 |
|
1209 | 655 |
# Mouse was clicked outside graph figure and over resize highlight with |
656 |
# left button, start resizing Viewer |
|
657 |
elif event.button == 1 and event.y <= 5: |
|
658 |
self.MouseStartPos = wx.Point(x, y) |
|
659 |
self.CanvasStartSize = height |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
660 |
|
1209 | 661 |
def OnCanvasButtonReleased(self, event): |
662 |
""" |
|
663 |
Function called when a button of mouse is released |
|
664 |
@param event: Mouse event |
|
665 |
""" |
|
666 |
# If a drag'n drop is in progress, stop it |
|
667 |
if self.ParentWindow.IsDragging(): |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
668 |
_width, height = self.GetSize() |
1209 | 669 |
xw, yw = self.GetPosition() |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3660
diff
changeset
|
670 |
item = list(self.ParentWindow.DraggingAxesPanel.ItemsDict.values())[0] |
1209 | 671 |
# Give mouse position in wx coordinate of parent |
672 |
self.ParentWindow.StopDragNDrop(item.GetVariable(), |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
673 |
xw + event.x, yw + height - event.y) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
674 |
|
1209 | 675 |
else: |
676 |
# Reset any move in progress |
|
677 |
self.MouseStartPos = None |
|
678 |
self.CanvasStartSize = None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
679 |
|
1209 | 680 |
# Handle button under mouse if it exist |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
681 |
_width, height = self.GetSize() |
1209 | 682 |
self.HandleButton(event.x, height - event.y) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
683 |
|
1209 | 684 |
def OnCanvasMotion(self, event): |
685 |
""" |
|
686 |
Function called when a button of mouse is moved over Viewer |
|
687 |
@param event: Mouse event |
|
688 |
""" |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
689 |
_width, height = self.GetSize() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
690 |
|
1209 | 691 |
# If a drag'n drop is in progress, move canvas dragged |
692 |
if self.ParentWindow.IsDragging(): |
|
693 |
xw, yw = self.GetPosition() |
|
694 |
# Give mouse position in wx coordinate of parent |
|
695 |
self.ParentWindow.MoveDragNDrop( |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
696 |
xw + event.x, |
1209 | 697 |
yw + height - event.y) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
698 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
699 |
# If a Viewer resize is in progress, change Viewer size |
1209 | 700 |
elif event.button == 1 and self.CanvasStartSize is not None: |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
701 |
_width, height = self.GetSize() |
1264 | 702 |
self.SetCanvasHeight( |
1209 | 703 |
self.CanvasStartSize + height - event.y - self.MouseStartPos.y) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
704 |
|
1209 | 705 |
# If no button is pressed, show or hide contextual buttons or resize |
706 |
# highlight |
|
707 |
elif event.button is None: |
|
708 |
# Compute direction for items label according graph type |
|
1737
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
709 |
if self.GraphType == GRAPH_PARALLEL: # Graph is parallel |
1209 | 710 |
directions = [wx.RIGHT] * len(self.AxesLabels) + \ |
711 |
[wx.LEFT] * len(self.Labels) |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
712 |
elif len(self.AxesLabels) > 0: # Graph is orthogonal in 2D |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
713 |
directions = [wx.RIGHT, wx.TOP, # Directions for AxesLabels |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
714 |
wx.LEFT, wx.BOTTOM] # Directions for Labels |
1737
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
715 |
else: # Graph is orthogonal in 3D |
1209 | 716 |
directions = [wx.LEFT] * len(self.Labels) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
717 |
|
1209 | 718 |
# Find if mouse is over an item label |
719 |
item_idx = None |
|
720 |
menu_direction = None |
|
721 |
for (i, t), dir in zip( |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
722 |
[pair for pair in enumerate(self.AxesLabels)] + |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
723 |
[pair for pair in enumerate(self.Labels)], |
1209 | 724 |
directions): |
725 |
# Check every label paired with corresponding item |
|
726 |
(x0, y0), (x1, y1) = t.get_window_extent().get_points() |
|
727 |
rect = wx.Rect(x0, height - y1, x1 - x0, y1 - y0) |
|
728 |
# Check if mouse was over label |
|
3303
0ffb41625592
Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2450
diff
changeset
|
729 |
if rect.Contains(event.x, height - event.y): |
1209 | 730 |
item_idx = i |
731 |
menu_direction = dir |
|
732 |
break |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
733 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
734 |
# If mouse is over an item label, |
1209 | 735 |
if item_idx is not None: |
736 |
self.PopupContextualButtons( |
|
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3660
diff
changeset
|
737 |
list(self.ItemsDict.values())[item_idx], |
1209 | 738 |
rect, menu_direction) |
739 |
return |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
740 |
|
1209 | 741 |
# If mouse isn't over a contextual menu, hide the current shown one |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
742 |
# if it exists |
1209 | 743 |
if self.IsOverContextualButton(event.x, height - event.y) is None: |
744 |
self.DismissContextualButtons() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
745 |
|
1209 | 746 |
# Update resize highlight |
747 |
if event.y <= 5: |
|
748 |
if self.SetHighlight(HIGHLIGHT_RESIZE): |
|
3303
0ffb41625592
Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2450
diff
changeset
|
749 |
self.SetCursor(wx.Cursor(wx.CURSOR_SIZENS)) |
1209 | 750 |
self.ParentWindow.ForceRefresh() |
751 |
else: |
|
752 |
if self.SetHighlight(HIGHLIGHT_NONE): |
|
753 |
self.SetCursor(wx.NullCursor) |
|
754 |
self.ParentWindow.ForceRefresh() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
755 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
756 |
# Handle buttons if canvas is not 3D |
1209 | 757 |
elif not self.Is3DCanvas(): |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
758 |
|
1209 | 759 |
# If left button is pressed |
760 |
if event.button == 1: |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
761 |
|
1209 | 762 |
# Mouse is inside graph figure |
763 |
if event.inaxes == self.Axes: |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
764 |
|
1209 | 765 |
# If a cursor move is in progress, update cursor position |
766 |
if self.MouseStartPos is not None: |
|
767 |
self.HandleCursorMove(event) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
768 |
|
1209 | 769 |
# Mouse is outside graph figure, cursor move is in progress and |
770 |
# there is only one item in Viewer, start a drag'n drop |
|
771 |
elif self.MouseStartPos is not None and len(self.Items) == 1: |
|
772 |
xw, yw = self.GetPosition() |
|
773 |
self.ParentWindow.SetCursorTick(self.StartCursorTick) |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
774 |
self.ParentWindow.StartDragNDrop( |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3660
diff
changeset
|
775 |
self, list(self.ItemsDict.values())[0], |
1209 | 776 |
# Current mouse position |
777 |
event.x + xw, height - event.y + yw, |
|
778 |
# Mouse position when button was clicked |
|
779 |
self.MouseStartPos.x + xw, |
|
780 |
self.MouseStartPos.y + yw) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
781 |
|
1209 | 782 |
# If middle button is pressed and moving graph along X coordinate |
783 |
# is in progress |
|
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
784 |
elif (event.button == 2 and |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
785 |
self.GraphType == GRAPH_PARALLEL and |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
786 |
self.MouseStartPos is not None): |
1209 | 787 |
start_tick, end_tick = self.ParentWindow.GetRange() |
788 |
rect = self.GetAxesBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
789 |
|
1209 | 790 |
# Move graph along X coordinate |
791 |
self.ParentWindow.SetCanvasPosition( |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
792 |
self.StartCursorTick + |
1209 | 793 |
(self.MouseStartPos.x - event.x) * |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
794 |
(end_tick - start_tick) // rect.width) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
795 |
|
1209 | 796 |
def OnCanvasScroll(self, event): |
797 |
""" |
|
798 |
Function called when a wheel mouse is use in Viewer |
|
799 |
@param event: Mouse event |
|
800 |
""" |
|
801 |
# Change X range of graphs if mouse is in canvas figure and ctrl is |
|
802 |
# pressed |
|
803 |
if event.inaxes is not None and event.guiEvent.ControlDown(): |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
804 |
|
1209 | 805 |
# Calculate position of fixed tick point according to graph type |
806 |
# and mouse position |
|
807 |
if self.GraphType == GRAPH_ORTHOGONAL: |
|
808 |
start_tick, end_tick = self.ParentWindow.GetRange() |
|
809 |
tick = (start_tick + end_tick) / 2. |
|
810 |
else: |
|
811 |
tick = event.xdata |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
812 |
self.ParentWindow.ChangeRange(int(-event.step) // 3, tick) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
813 |
|
1209 | 814 |
# Vetoing event to prevent parent panel to be scrolled |
815 |
self.ParentWindow.VetoScrollEvent = True |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
816 |
|
1214
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
817 |
def OnLeftDClick(self, event): |
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
818 |
""" |
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
819 |
Function called when a left mouse button is double clicked |
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
820 |
@param event: Mouse event |
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
821 |
""" |
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
822 |
# Check that double click was done inside figure |
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
823 |
pos = event.GetPosition() |
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
824 |
rect = self.GetAxesBoundingBox() |
3303
0ffb41625592
Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2450
diff
changeset
|
825 |
if rect.Contains(pos.x, pos.y): |
1214
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
826 |
# Reset Cursor tick to value before starting clicking |
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
827 |
self.ParentWindow.SetCursorTick(self.StartCursorTick) |
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
828 |
# Toggle to text Viewer(s) |
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
829 |
self.ParentWindow.ToggleViewerType(self) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
830 |
|
1214
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
831 |
else: |
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
832 |
event.Skip() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
833 |
|
1209 | 834 |
# Cursor tick move for each arrow key |
835 |
KEY_CURSOR_INCREMENT = { |
|
836 |
wx.WXK_LEFT: -1, |
|
837 |
wx.WXK_RIGHT: 1, |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
838 |
wx.WXK_UP: 10, |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
839 |
wx.WXK_DOWN: -10} |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
840 |
|
1209 | 841 |
def OnKeyDown(self, event): |
842 |
""" |
|
843 |
Function called when key is pressed |
|
844 |
@param event: wx.KeyEvent |
|
845 |
""" |
|
846 |
# If cursor is shown and arrow key is pressed, move cursor tick |
|
847 |
if self.CursorTick is not None: |
|
848 |
move = self.KEY_CURSOR_INCREMENT.get(event.GetKeyCode(), None) |
|
849 |
if move is not None: |
|
850 |
self.ParentWindow.MoveCursorTick(move) |
|
851 |
event.Skip() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
852 |
|
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
853 |
def OnLeave(self, event): |
1209 | 854 |
""" |
855 |
Function called when mouse leave Viewer |
|
856 |
@param event: wx.MouseEvent |
|
857 |
""" |
|
858 |
# If Viewer is not resizing, reset resize highlight |
|
859 |
if self.CanvasStartSize is None: |
|
860 |
self.SetHighlight(HIGHLIGHT_NONE) |
|
861 |
self.SetCursor(wx.NullCursor) |
|
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
862 |
DebugVariableViewer.OnLeave(self, event) |
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
863 |
else: |
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
864 |
event.Skip() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
865 |
|
1212 | 866 |
def GetCanvasMinSize(self): |
867 |
""" |
|
868 |
Return the minimum size of Viewer so that all items label can be |
|
869 |
displayed |
|
870 |
@return: wx.Size containing Viewer minimum size |
|
871 |
""" |
|
872 |
# The minimum height take in account the height of all items, padding |
|
873 |
# inside figure and border around figure |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
874 |
return wx.Size(200, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
875 |
CANVAS_BORDER[0] + CANVAS_BORDER[1] + |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
876 |
2 * CANVAS_PADDING + VALUE_LABEL_HEIGHT * len(self.Items)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
877 |
|
1264 | 878 |
def SetCanvasHeight(self, height): |
1212 | 879 |
""" |
880 |
Set Viewer size checking that it respects Viewer minimum size |
|
881 |
@param height: Viewer height |
|
882 |
""" |
|
1264 | 883 |
min_width, min_height = self.GetCanvasMinSize() |
884 |
height = max(height, min_height) |
|
885 |
self.SetMinSize(wx.Size(min_width, height)) |
|
1212 | 886 |
self.RefreshLabelsPosition(height) |
887 |
self.ParentWindow.RefreshGraphicsSizer() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
888 |
|
1212 | 889 |
def GetAxesBoundingBox(self, parent_coordinate=False): |
890 |
""" |
|
891 |
Return figure bounding box in wx coordinate |
|
892 |
@param parent_coordinate: True if use parent coordinate (default False) |
|
893 |
""" |
|
894 |
# Calculate figure bounding box. Y coordinate is inverted in matplotlib |
|
895 |
# figure comparing to wx panel |
|
896 |
width, height = self.GetSize() |
|
897 |
ax, ay, aw, ah = self.figure.gca().get_position().bounds |
|
898 |
bbox = wx.Rect(ax * width, height - (ay + ah) * height - 1, |
|
899 |
aw * width + 2, ah * height + 1) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
900 |
|
1212 | 901 |
# If parent_coordinate, add Viewer position in parent |
902 |
if parent_coordinate: |
|
903 |
xw, yw = self.GetPosition() |
|
904 |
bbox.x += xw |
|
905 |
bbox.y += yw |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
906 |
|
1212 | 907 |
return bbox |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
908 |
|
1212 | 909 |
def RefreshHighlight(self, x, y): |
910 |
""" |
|
911 |
Refresh Viewer highlight according to mouse position |
|
912 |
@param x: X coordinate of mouse pointer |
|
913 |
@param y: Y coordinate of mouse pointer |
|
914 |
""" |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
915 |
_width, height = self.GetSize() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
916 |
|
1212 | 917 |
# Mouse is over Viewer figure and graph is not 3D |
918 |
bbox = self.GetAxesBoundingBox() |
|
3303
0ffb41625592
Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2450
diff
changeset
|
919 |
if bbox.Contains(x, y) and not self.Is3DCanvas(): |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
920 |
rect = wx.Rect(bbox.x, bbox.y, bbox.width // 2, bbox.height) |
1212 | 921 |
# Mouse is over Viewer left part of figure |
3303
0ffb41625592
Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2450
diff
changeset
|
922 |
if rect.Contains(x, y): |
1212 | 923 |
self.SetHighlight(HIGHLIGHT_LEFT) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
924 |
|
1212 | 925 |
# Mouse is over Viewer right part of figure |
926 |
else: |
|
927 |
self.SetHighlight(HIGHLIGHT_RIGHT) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
928 |
|
1212 | 929 |
# Mouse is over upper part of Viewer |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
930 |
elif y < height // 2: |
1212 | 931 |
# Viewer is upper one in Debug Variable Panel, show highlight |
932 |
if self.ParentWindow.IsViewerFirst(self): |
|
933 |
self.SetHighlight(HIGHLIGHT_BEFORE) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
934 |
|
1212 | 935 |
# Viewer is not the upper one, show highlight in previous one |
936 |
# It prevents highlight to move when mouse leave one Viewer to |
|
937 |
# another |
|
938 |
else: |
|
939 |
self.SetHighlight(HIGHLIGHT_NONE) |
|
940 |
self.ParentWindow.HighlightPreviousViewer(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
941 |
|
1212 | 942 |
# Mouse is over lower part of Viewer |
943 |
else: |
|
944 |
self.SetHighlight(HIGHLIGHT_AFTER) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
945 |
|
1212 | 946 |
def OnAxesMotion(self, event): |
947 |
""" |
|
948 |
Function overriding default function called when mouse is dragged for |
|
949 |
rotating graph preventing refresh to be called too quickly |
|
950 |
@param event: Mouse event |
|
951 |
""" |
|
952 |
if self.Is3DCanvas(): |
|
953 |
# Call default function at most 10 times per second |
|
954 |
current_time = gettime() |
|
955 |
if current_time - self.LastMotionTime > REFRESH_PERIOD: |
|
956 |
self.LastMotionTime = current_time |
|
957 |
Axes3D._on_move(self.Axes, event) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
958 |
|
1212 | 959 |
def GetAddTextFunction(self): |
960 |
""" |
|
961 |
Return function for adding text in figure according to graph type |
|
962 |
@return: Function adding text to figure |
|
963 |
""" |
|
964 |
text_func = (self.Axes.text2D if self.Is3DCanvas() else self.Axes.text) |
|
1750
acf02488f37f
clean-up: fix PEP8 E306 expected 1 blank line before a nested definition, found X
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1746
diff
changeset
|
965 |
|
1212 | 966 |
def AddText(*args, **kwargs): |
967 |
args = [0, 0, ""] |
|
968 |
kwargs["transform"] = self.Axes.transAxes |
|
969 |
return text_func(*args, **kwargs) |
|
970 |
return AddText |
|
1497
7330c85534ea
fix set_color_cycle from matplotlib deprecation warning
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1485
diff
changeset
|
971 |
|
7330c85534ea
fix set_color_cycle from matplotlib deprecation warning
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1485
diff
changeset
|
972 |
def SetAxesColor(self, color): |
1919
ccea0fa6ea91
Another set of meaningless changes to satisfy PEP8 and PyLint.
Edouard Tisserant
parents:
1878
diff
changeset
|
973 |
self.Axes.set_prop_cycle(cycler('color', color)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
974 |
|
1212 | 975 |
def ResetGraphics(self): |
976 |
""" |
|
977 |
Reset figure and graphical elements displayed in it |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
978 |
Called any time list of items or graph type change |
1212 | 979 |
""" |
980 |
# Clear figure from any axes defined |
|
981 |
self.Figure.clear() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
982 |
|
1212 | 983 |
# Add 3D projection if graph is in 3D |
984 |
if self.Is3DCanvas(): |
|
985 |
self.Axes = self.Figure.gca(projection='3d') |
|
1497
7330c85534ea
fix set_color_cycle from matplotlib deprecation warning
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1485
diff
changeset
|
986 |
self.SetAxesColor(['b']) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
987 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
988 |
# Override function to prevent too much refresh when graph is |
1212 | 989 |
# rotated |
990 |
self.LastMotionTime = gettime() |
|
991 |
setattr(self.Axes, "_on_move", self.OnAxesMotion) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
992 |
|
1212 | 993 |
# Init graph mouse event so that graph can be rotated |
994 |
self.Axes.mouse_init() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
995 |
|
1212 | 996 |
# Set size of Z axis labels |
997 |
self.Axes.tick_params(axis='z', labelsize='small') |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
998 |
|
1212 | 999 |
else: |
1000 |
self.Axes = self.Figure.gca() |
|
1497
7330c85534ea
fix set_color_cycle from matplotlib deprecation warning
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1485
diff
changeset
|
1001 |
self.SetAxesColor(COLOR_CYCLE) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1002 |
|
1212 | 1003 |
# Set size of X and Y axis labels |
1004 |
self.Axes.tick_params(axis='x', labelsize='small') |
|
1005 |
self.Axes.tick_params(axis='y', labelsize='small') |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1006 |
|
1212 | 1007 |
# Init variables storing graphical elements added to figure |
1737
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
1008 |
self.Plots = [] # List of curves |
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
1009 |
self.VLine = None # Vertical line for cursor |
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
1010 |
self.HLine = None # Horizontal line for cursor (only orthogonal 2D) |
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
1011 |
self.AxesLabels = [] # List of items variable path text label |
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
1012 |
self.Labels = [] # List of items text label |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1013 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1014 |
# Get function to add a text in figure according to graph type |
1212 | 1015 |
add_text_func = self.GetAddTextFunction() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1016 |
|
1212 | 1017 |
# Graph type is parallel or orthogonal in 3D |
1018 |
if self.GraphType == GRAPH_PARALLEL or self.Is3DCanvas(): |
|
1019 |
num_item = len(self.Items) |
|
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3660
diff
changeset
|
1020 |
for idx in range(num_item): |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1021 |
|
1212 | 1022 |
# Get color from color cycle (black if only one item) |
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
1023 |
color = ('k' if num_item == 1 else |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
1024 |
COLOR_CYCLE[idx % len(COLOR_CYCLE)]) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1025 |
|
1212 | 1026 |
# In 3D graph items variable label are not displayed as text |
1027 |
# in figure, but as axis title |
|
1028 |
if not self.Is3DCanvas(): |
|
1029 |
# Items variable labels are in figure upper left corner |
|
1030 |
self.AxesLabels.append( |
|
1031 |
add_text_func(size='small', color=color, |
|
1032 |
verticalalignment='top')) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1033 |
|
1212 | 1034 |
# Items variable labels are in figure lower right corner |
1035 |
self.Labels.append( |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1036 |
add_text_func(size='large', color=color, |
1212 | 1037 |
horizontalalignment='right')) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1038 |
|
1212 | 1039 |
# Graph type is orthogonal in 2D |
1040 |
else: |
|
1041 |
# X coordinate labels are in figure lower side |
|
1042 |
self.AxesLabels.append(add_text_func(size='small')) |
|
1043 |
self.Labels.append( |
|
1044 |
add_text_func(size='large', |
|
1045 |
horizontalalignment='right')) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1046 |
|
1212 | 1047 |
# Y coordinate labels are vertical and in figure left side |
1048 |
self.AxesLabels.append( |
|
1264 | 1049 |
add_text_func(size='small', rotation='vertical', |
1050 |
verticalalignment='bottom')) |
|
1212 | 1051 |
self.Labels.append( |
1052 |
add_text_func(size='large', rotation='vertical', |
|
1053 |
verticalalignment='top')) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1054 |
|
1212 | 1055 |
# Refresh position of labels according to Viewer size |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
1056 |
_width, height = self.GetSize() |
1212 | 1057 |
self.RefreshLabelsPosition(height) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1058 |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1059 |
def RefreshLabelsPosition(self, height): |
1212 | 1060 |
""" |
1061 |
Function called when mouse leave Viewer |
|
1062 |
@param event: wx.MouseEvent |
|
1063 |
""" |
|
1064 |
# Figure position like text position in figure are expressed is ratio |
|
1065 |
# canvas size and figure size. As we want that border around figure and |
|
1066 |
# text position in figure don't change when canvas size change, we |
|
1067 |
# expressed border and text position in pixel on screen and apply the |
|
1068 |
# ratio calculated hereafter to get border and text position in |
|
1214
2ef048b5383c
Added support for opening text viewer by default and toggling between GraphicViewer and TextViewer
Laurent Bessard
parents:
1212
diff
changeset
|
1069 |
# matplotlib coordinate |
1737
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
1070 |
canvas_ratio = 1. / height # Divide by canvas height in pixel |
1212 | 1071 |
graph_ratio = 1. / ( |
1785
0ff2a45dcefa
clean-up: fix PEP8 W503 line break before binary operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1782
diff
changeset
|
1072 |
(1.0 - (CANVAS_BORDER[0] + CANVAS_BORDER[1]) * canvas_ratio) * |
0ff2a45dcefa
clean-up: fix PEP8 W503 line break before binary operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1782
diff
changeset
|
1073 |
height) # Divide by figure height in pixel |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1074 |
|
1212 | 1075 |
# Update position of figure (keeping up and bottom border the same |
1076 |
# size) |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1077 |
self.Figure.subplotpars.update( |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1741
diff
changeset
|
1078 |
top=1.0 - CANVAS_BORDER[1] * canvas_ratio, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1741
diff
changeset
|
1079 |
bottom=CANVAS_BORDER[0] * canvas_ratio) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1080 |
|
1212 | 1081 |
# Update position of items labels |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1082 |
if self.GraphType == GRAPH_PARALLEL or self.Is3DCanvas(): |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1083 |
num_item = len(self.Items) |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3660
diff
changeset
|
1084 |
for idx in range(num_item): |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1085 |
|
1212 | 1086 |
# In 3D graph items variable label are not displayed |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1087 |
if not self.Is3DCanvas(): |
1212 | 1088 |
# Items variable labels are in figure upper left corner |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1089 |
self.AxesLabels[idx].set_position( |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1090 |
(0.05, |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1091 |
1.0 - (CANVAS_PADDING + |
1212 | 1092 |
AXES_LABEL_HEIGHT * idx) * graph_ratio)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1093 |
|
1212 | 1094 |
# Items variable labels are in figure lower right corner |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1095 |
self.Labels[idx].set_position( |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1096 |
(0.95, |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1097 |
CANVAS_PADDING * graph_ratio + |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1098 |
(num_item - idx - 1) * VALUE_LABEL_HEIGHT * graph_ratio)) |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1099 |
else: |
1212 | 1100 |
# X coordinate labels are in figure lower side |
1101 |
self.AxesLabels[0].set_position( |
|
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1102 |
(0.1, CANVAS_PADDING * graph_ratio)) |
1212 | 1103 |
self.Labels[0].set_position( |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1104 |
(0.95, CANVAS_PADDING * graph_ratio)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1105 |
|
1212 | 1106 |
# Y coordinate labels are vertical and in figure left side |
1107 |
self.AxesLabels[1].set_position( |
|
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1108 |
(0.05, 2 * CANVAS_PADDING * graph_ratio)) |
1212 | 1109 |
self.Labels[1].set_position( |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1110 |
(0.05, 1.0 - CANVAS_PADDING * graph_ratio)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1111 |
|
1212 | 1112 |
# Update subplots |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1113 |
self.Figure.subplots_adjust() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1114 |
|
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1115 |
def RefreshViewer(self, refresh_graphics=True): |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1116 |
""" |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1117 |
Function called to refresh displayed by matplotlib canvas |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1118 |
@param refresh_graphics: Flag indicating that graphs have to be |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1119 |
refreshed (False: only label values have to be refreshed) |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1120 |
""" |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1121 |
# Refresh graphs if needed |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1122 |
if refresh_graphics: |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1123 |
# Get tick range of values to display |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1124 |
start_tick, end_tick = self.ParentWindow.GetRange() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1125 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1126 |
# Graph is parallel |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1127 |
if self.GraphType == GRAPH_PARALLEL: |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1128 |
# Init list of data range for each variable displayed |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1129 |
ranges = [] |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1130 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1131 |
# Get data and range for each variable displayed |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1132 |
for idx, item in enumerate(self.Items): |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1133 |
data, min_value, max_value = item.GetDataAndValueRange( |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1134 |
start_tick, end_tick, not self.ZoomFit) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1135 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1136 |
# Check that data is not empty |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1137 |
if data is not None: |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1138 |
# Add variable range to list of variable data range |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1139 |
ranges.append((min_value, max_value)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1140 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1141 |
# Add plot to canvas if not yet created |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1142 |
if len(self.Plots) <= idx: |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1143 |
self.Plots.append( |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1144 |
self.Axes.plot(data[:, 0], data[:, 1])[0]) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1145 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1146 |
# Set data to already created plot in canvas |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1147 |
else: |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1148 |
self.Plots[idx].set_data(data[:, 0], data[:, 1]) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1149 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1150 |
# Get X and Y axis ranges |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1151 |
x_min, x_max = start_tick, end_tick |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1152 |
y_min, y_max = merge_ranges(ranges) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1153 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1154 |
# Display cursor in canvas if a cursor tick is defined and it is |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1155 |
# include in values tick range |
1766
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
1156 |
if self.CursorTick is not None and \ |
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
1157 |
start_tick <= self.CursorTick <= end_tick: |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1158 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1159 |
# Define a vertical line to display cursor position if no |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1160 |
# line is already defined |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1161 |
if self.VLine is None: |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1162 |
self.VLine = self.Axes.axvline(self.CursorTick, |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1163 |
color=CURSOR_COLOR) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1164 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1165 |
# Set value of vertical line if already defined |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1166 |
else: |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1167 |
self.VLine.set_xdata((self.CursorTick, self.CursorTick)) |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1168 |
self.VLine.set_visible(True) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1169 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1170 |
# Hide vertical line if cursor tick is not defined or reset |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1171 |
elif self.VLine is not None: |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1172 |
self.VLine.set_visible(False) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1173 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1174 |
# Graph is orthogonal |
929
c562031146e4
Improved matplotlib graphic debug panel implementation
Laurent Bessard
parents:
928
diff
changeset
|
1175 |
else: |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1176 |
# Update tick range, removing ticks that don't have a value for |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1177 |
# each variable |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1178 |
start_tick = max(start_tick, self.GetItemsMinCommonTick()) |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1179 |
end_tick = max(end_tick, start_tick) |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3660
diff
changeset
|
1180 |
items = list(self.ItemsDict.values()) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1181 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1182 |
# Get data and range for first variable (X coordinate) |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1183 |
x_data, x_min, x_max = items[0].GetDataAndValueRange( |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1184 |
start_tick, end_tick, not self.ZoomFit) |
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1185 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1186 |
# Get data and range for second variable (Y coordinate) |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1187 |
y_data, y_min, y_max = items[1].GetDataAndValueRange( |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1188 |
start_tick, end_tick, not self.ZoomFit) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1189 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1190 |
# Normalize X and Y coordinates value range |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1191 |
x_min, x_max = merge_ranges([(x_min, x_max)]) |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1192 |
y_min, y_max = merge_ranges([(y_min, y_max)]) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1193 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1194 |
# Get X and Y coordinates for cursor if cursor tick is defined |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1195 |
if self.CursorTick is not None: |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
1196 |
x_cursor, _x_forced = items[0].GetValue( |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1197 |
self.CursorTick, raw=True) |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
1198 |
y_cursor, _y_forced = items[1].GetValue( |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1199 |
self.CursorTick, raw=True) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1200 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1201 |
# Get common data length so that each value has an x and y |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1202 |
# coordinate |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1203 |
length = (min(len(x_data), len(y_data)) |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1204 |
if x_data is not None and y_data is not None |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1205 |
else 0) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1206 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1207 |
# Graph is orthogonal 2D |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1208 |
if len(self.Items) < 3: |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1209 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1210 |
# Check that x and y data are not empty |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1211 |
if x_data is not None and y_data is not None: |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1212 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1213 |
# Add plot to canvas if not yet created |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1214 |
if len(self.Plots) == 0: |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1215 |
self.Plots.append( |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1216 |
self.Axes.plot(x_data[:, 1][:length], |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1217 |
y_data[:, 1][:length])[0]) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1218 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1219 |
# Set data to already created plot in canvas |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1220 |
else: |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1221 |
self.Plots[0].set_data( |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1222 |
x_data[:, 1][:length], |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1223 |
y_data[:, 1][:length]) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1224 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1225 |
# Display cursor in canvas if a cursor tick is defined and it is |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1226 |
# include in values tick range |
1766
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
1227 |
if self.CursorTick is not None and \ |
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
1228 |
start_tick <= self.CursorTick <= end_tick: |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1229 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1230 |
# Define a vertical line to display cursor x coordinate |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1231 |
# if no line is already defined |
924
5f2cc382be8c
Added support for displaying string variables variations in a graph and cursor on graphs
Laurent Bessard
parents:
919
diff
changeset
|
1232 |
if self.VLine is None: |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1233 |
self.VLine = self.Axes.axvline(x_cursor, |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1234 |
color=CURSOR_COLOR) |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1235 |
# Set value of vertical line if already defined |
924
5f2cc382be8c
Added support for displaying string variables variations in a graph and cursor on graphs
Laurent Bessard
parents:
919
diff
changeset
|
1236 |
else: |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1237 |
self.VLine.set_xdata((x_cursor, x_cursor)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1238 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1239 |
# Define a horizontal line to display cursor y |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1240 |
# coordinate if no line is already defined |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1241 |
if self.HLine is None: |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1242 |
self.HLine = self.Axes.axhline(y_cursor, |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1243 |
color=CURSOR_COLOR) |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1244 |
# Set value of horizontal line if already defined |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1245 |
else: |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1246 |
self.HLine.set_ydata((y_cursor, y_cursor)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1247 |
|
924
5f2cc382be8c
Added support for displaying string variables variations in a graph and cursor on graphs
Laurent Bessard
parents:
919
diff
changeset
|
1248 |
self.VLine.set_visible(True) |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1249 |
self.HLine.set_visible(True) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1250 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1251 |
# Hide vertical and horizontal line if cursor tick is not |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1252 |
# defined or reset |
924
5f2cc382be8c
Added support for displaying string variables variations in a graph and cursor on graphs
Laurent Bessard
parents:
919
diff
changeset
|
1253 |
else: |
5f2cc382be8c
Added support for displaying string variables variations in a graph and cursor on graphs
Laurent Bessard
parents:
919
diff
changeset
|
1254 |
if self.VLine is not None: |
5f2cc382be8c
Added support for displaying string variables variations in a graph and cursor on graphs
Laurent Bessard
parents:
919
diff
changeset
|
1255 |
self.VLine.set_visible(False) |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1256 |
if self.HLine is not None: |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1257 |
self.HLine.set_visible(False) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1258 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1259 |
# Graph is orthogonal 3D |
916
697d8b77d716
Improved matplotlib graphic debug panel implementation, adding force, release, split and delete graph buttons, replacing data grid by adding panel displaying non-numeric data between graphs
Laurent Bessard
parents:
912
diff
changeset
|
1260 |
else: |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1261 |
# Remove all plots already defined in 3D canvas |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1262 |
while len(self.Axes.lines) > 0: |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1263 |
self.Axes.lines.pop() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1264 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1265 |
# Get data and range for third variable (Z coordinate) |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1266 |
z_data, z_min, z_max = items[2].GetDataAndValueRange( |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1267 |
start_tick, end_tick, not self.ZoomFit) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1268 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1269 |
# Normalize Z coordinate value range |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1270 |
z_min, z_max = merge_ranges([(z_min, z_max)]) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1271 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1272 |
# Check that x, y and z data are not empty |
1766
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
1273 |
if x_data is not None and \ |
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
1274 |
y_data is not None and \ |
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
1275 |
z_data is not None: |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1276 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1277 |
# Get common data length so that each value has an x, y |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1278 |
# and z coordinate |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1279 |
length = min(length, len(z_data)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1280 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1281 |
# Add plot to canvas |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1282 |
self.Axes.plot(x_data[:, 1][:length], |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1283 |
y_data[:, 1][:length], |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1741
diff
changeset
|
1284 |
zs=z_data[:, 1][:length]) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1285 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1286 |
# Display cursor in canvas if a cursor tick is defined and |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1287 |
# it is include in values tick range |
1766
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
1288 |
if self.CursorTick is not None and \ |
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
1289 |
start_tick <= self.CursorTick <= end_tick: |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1290 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1291 |
# Get Z coordinate for cursor |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
1292 |
z_cursor, _z_forced = items[2].GetValue( |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1293 |
self.CursorTick, raw=True) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1294 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1295 |
# Add 3 lines parallel to x, y and z axis to display |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1296 |
# cursor position in 3D |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1297 |
for kwargs in [{"xs": numpy.array([x_min, x_max])}, |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1298 |
{"ys": numpy.array([y_min, y_max])}, |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1299 |
{"zs": numpy.array([z_min, z_max])}]: |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1300 |
for param, value in [ |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1301 |
("xs", numpy.array([x_cursor, x_cursor])), |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1302 |
("ys", numpy.array([y_cursor, y_cursor])), |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1303 |
("zs", numpy.array([z_cursor, z_cursor]))]: |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1304 |
kwargs.setdefault(param, value) |
1200
501cb0bb4c05
Splitted DebugVariableGraphicPanel.py into several files
Laurent Bessard
parents:
1199
diff
changeset
|
1305 |
kwargs["color"] = CURSOR_COLOR |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1306 |
self.Axes.plot(**kwargs) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1307 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1308 |
# Set Z axis limits |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1309 |
self.Axes.set_zlim(z_min, z_max) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1310 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1311 |
# Set X and Y axis limits |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1312 |
self.Axes.set_xlim(x_min, x_max) |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1313 |
self.Axes.set_ylim(y_min, y_max) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1314 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1315 |
# Get value and forced flag for each variable displayed in graph |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1316 |
# If cursor tick is not defined get value and flag of last received |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1317 |
# or get value and flag of variable at cursor tick |
2440
45b43f275ca1
python3 support: pylint, W1601 # (apply-builtin) apply built-in referenced
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
1318 |
args = [( |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1319 |
item.GetValue(self.CursorTick) |
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1320 |
if self.CursorTick is not None |
2440
45b43f275ca1
python3 support: pylint, W1601 # (apply-builtin) apply built-in referenced
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
1321 |
else (item.GetValue(), item.IsForced())) for item in self.Items] |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3660
diff
changeset
|
1322 |
values, forced = list(zip(*args)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1323 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1324 |
# Get path of each variable displayed simplified using panel variable |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1325 |
# name mask |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1326 |
labels = [item.GetVariable(self.ParentWindow.GetVariableNameMask()) |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1327 |
for item in self.Items] |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1328 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1329 |
# Get style for each variable according to |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3660
diff
changeset
|
1330 |
styles = [{True: 'italic', False: 'normal'}[x] for x in forced] |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1331 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1332 |
# Graph is orthogonal 3D, set variables path as 3D axis label |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1333 |
if self.Is3DCanvas(): |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1334 |
for idx, label_func in enumerate([self.Axes.set_xlabel, |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1335 |
self.Axes.set_ylabel, |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1336 |
self.Axes.set_zlabel]): |
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1337 |
label_func(labels[idx], fontdict={'size': 'small', |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1338 |
'color': COLOR_CYCLE[idx]}) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1339 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1340 |
# Graph is not orthogonal 3D, set variables path in axes labels |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1341 |
else: |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1342 |
for label, text in zip(self.AxesLabels, labels): |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1343 |
label.set_text(text) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1344 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1345 |
# Set value label text and style according to value and forced flag for |
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1346 |
# each variable displayed |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1347 |
for label, value, style in zip(self.Labels, values, styles): |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1348 |
label.set_text(value) |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1349 |
label.set_style(style) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1350 |
|
1267
fae0809eae98
Added support for zooming graph so that it fits canvas size in Debug Variable Panel
Laurent Bessard
parents:
1264
diff
changeset
|
1351 |
# Refresh figure |
1198
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1352 |
self.draw() |
8b4e6bd0aa92
Separated old table debug variable panel and new graphic debug variable panel
Laurent Bessard
parents:
1194
diff
changeset
|
1353 |
|
1209 | 1354 |
def draw(self, drawDC=None): |
1355 |
""" |
|
1356 |
Render the figure. |
|
1357 |
""" |
|
1358 |
# Render figure using agg |
|
1359 |
FigureCanvasAgg.draw(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1360 |
|
1209 | 1361 |
# Get bitmap of figure rendered |
3798
e0117f4b0ff1
Fix private n matplotib function import
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
3793
diff
changeset
|
1362 |
agg_bitmap = self.get_renderer() |
e0117f4b0ff1
Fix private n matplotib function import
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
3793
diff
changeset
|
1363 |
self.bitmap = wx.Bitmap.FromBufferRGBA(int(agg_bitmap.width), int(agg_bitmap.height), |
e0117f4b0ff1
Fix private n matplotib function import
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
3793
diff
changeset
|
1364 |
agg_bitmap.buffer_rgba()) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1365 |
|
1209 | 1366 |
# Create DC for rendering graphics in bitmap |
1367 |
destDC = wx.MemoryDC() |
|
1368 |
destDC.SelectObject(self.bitmap) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1369 |
|
1209 | 1370 |
# Get Graphics Context for DC, for anti-aliased and transparent |
1371 |
# rendering |
|
1372 |
destGC = wx.GCDC(destDC) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1373 |
|
1209 | 1374 |
# Get canvas size and figure bounding box in canvas |
1375 |
width, height = self.GetSize() |
|
1376 |
bbox = self.GetAxesBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1377 |
|
1209 | 1378 |
# If highlight to display is resize, draw thick grey line at bottom |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1379 |
# side of canvas |
1209 | 1380 |
if self.Highlight == HIGHLIGHT_RESIZE: |
1823
1e9a67d68612
fix commit "lazy initialization of highlight pens and brushes
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1785
diff
changeset
|
1381 |
destGC.SetPen(HIGHLIGHT['RESIZE_PEN']) |
1e9a67d68612
fix commit "lazy initialization of highlight pens and brushes
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1785
diff
changeset
|
1382 |
destGC.SetBrush(HIGHLIGHT['RESIZE_BRUSH']) |
1209 | 1383 |
destGC.DrawRectangle(0, height - 5, width, 5) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1384 |
|
1209 | 1385 |
# If highlight to display is merging graph, draw 50% transparent blue |
1386 |
# rectangle on left or right part of figure depending on highlight type |
|
1387 |
elif self.Highlight in [HIGHLIGHT_LEFT, HIGHLIGHT_RIGHT]: |
|
1823
1e9a67d68612
fix commit "lazy initialization of highlight pens and brushes
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1785
diff
changeset
|
1388 |
destGC.SetPen(HIGHLIGHT['DROP_PEN']) |
1e9a67d68612
fix commit "lazy initialization of highlight pens and brushes
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1785
diff
changeset
|
1389 |
destGC.SetBrush(HIGHLIGHT['DROP_BRUSH']) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1390 |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1391 |
x_offset = (bbox.width // 2 |
1209 | 1392 |
if self.Highlight == HIGHLIGHT_RIGHT |
1393 |
else 0) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1394 |
destGC.DrawRectangle(bbox.x + x_offset, bbox.y, |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1395 |
bbox.width // 2, bbox.height) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1396 |
|
1209 | 1397 |
# Draw other Viewer common elements |
1398 |
self.DrawCommonElements(destGC, self.GetButtons()) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
1399 |
|
1209 | 1400 |
self._isDrawn = True |
1401 |
self.gui_repaint(drawDC=drawDC) |