author | usveticic |
Wed, 16 Sep 2020 09:42:26 +0200 | |
branch | svghmi |
changeset 3057 | 696301e869d5 |
parent 2918 | 5cb6ab87b185 |
child 2737 | 38afed869ff6 |
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:
1567
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:
1567
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:
1567
diff
changeset
|
7 |
# Copyright (C) 2007: 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:
1567
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:
1567
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:
1567
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:
1567
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:
1567
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:
1567
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:
1567
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:
1567
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:
1567
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:
1567
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:
1567
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:
1567
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:
1852
diff
changeset
|
25 |
|
47a3f39bead0
fix pylint warning "(relative-import) Relative import 'Y', should be 'X.Y'"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1852
diff
changeset
|
26 |
from __future__ import absolute_import |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
27 |
from __future__ import division |
814 | 28 |
import math |
1224 | 29 |
from time import time as gettime |
814 | 30 |
from threading import Lock |
2457
9deec258ab1a
python3 support: pylint, W1633 # (round-builtin) round built-in referenced
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2450
diff
changeset
|
31 |
from future.builtins import round |
814 | 32 |
|
33 |
import wx |
|
2432
dbc065a2f7a5
python3 support: pylint, W1613 # (xrange-builtin) xrange built-in referenced
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2417
diff
changeset
|
34 |
from six.moves import xrange |
814 | 35 |
|
36 |
from plcopen.structures import * |
|
1948
b9a3f771aaab
Moved some definitions away from controller class, and adaped references them through all code.
Edouard Tisserant
parents:
1931
diff
changeset
|
37 |
from plcopen.types_enums import ComputePouName |
885
fc91d3718b74
Fix bug multiple graph viewer tab displaying values of the same variable can be opened
Laurent Bessard
parents:
882
diff
changeset
|
38 |
from PLCControler import ITEM_VAR_LOCAL, ITEM_POU, ITEM_PROGRAM, ITEM_FUNCTIONBLOCK |
1931 | 39 |
|
40 |
from graphics.GraphicCommons import * |
|
41 |
from graphics.FBD_Objects import * |
|
42 |
from graphics.LD_Objects import * |
|
43 |
from graphics.SFC_Objects import * |
|
44 |
from graphics.RubberBand import RubberBand |
|
45 |
from graphics.DebugDataConsumer import DebugDataConsumer |
|
46 |
||
814 | 47 |
from dialogs import * |
1224 | 48 |
from editors.DebugViewer import DebugViewer, REFRESH_PERIOD |
1853
47a3f39bead0
fix pylint warning "(relative-import) Relative import 'Y', should be 'X.Y'"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1852
diff
changeset
|
49 |
from editors.EditorPanel import EditorPanel |
814 | 50 |
|
51 |
SCROLLBAR_UNIT = 10 |
|
52 |
WINDOW_BORDER = 10 |
|
53 |
SCROLL_ZONE = 10 |
|
54 |
||
55 |
CURSORS = None |
|
1584
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
56 |
SFC_Objects = (SFC_Step, SFC_ActionBlock, SFC_Transition, SFC_Divergence, SFC_Jump) |
814 | 57 |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
58 |
|
814 | 59 |
def ResetCursors(): |
60 |
global CURSORS |
|
1743
c3c3d1318130
clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1741
diff
changeset
|
61 |
if CURSORS is None: |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
62 |
CURSORS = [wx.NullCursor, |
814 | 63 |
wx.StockCursor(wx.CURSOR_HAND), |
64 |
wx.StockCursor(wx.CURSOR_SIZENWSE), |
|
65 |
wx.StockCursor(wx.CURSOR_SIZENESW), |
|
66 |
wx.StockCursor(wx.CURSOR_SIZEWE), |
|
67 |
wx.StockCursor(wx.CURSOR_SIZENS)] |
|
68 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
69 |
|
814 | 70 |
def AppendMenu(parent, help, id, kind, text): |
2177
10aa87518401
Drop support for wxPython 2.6 and below
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1953
diff
changeset
|
71 |
parent.Append(help=help, id=id, kind=kind, text=text) |
814 | 72 |
|
1749
d73b64672238
clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1747
diff
changeset
|
73 |
|
814 | 74 |
if wx.Platform == '__WXMSW__': |
1747
6046ffa2280f
clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
75 |
faces = { |
6046ffa2280f
clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
76 |
'times': 'Times New Roman', |
6046ffa2280f
clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
77 |
'mono': 'Courier New', |
6046ffa2280f
clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
78 |
'helv': 'Arial', |
6046ffa2280f
clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
79 |
'other': 'Comic Sans MS', |
6046ffa2280f
clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
80 |
'size': 10, |
6046ffa2280f
clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
81 |
} |
814 | 82 |
else: |
1747
6046ffa2280f
clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
83 |
faces = { |
6046ffa2280f
clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
84 |
'times': 'Times', |
2918
5cb6ab87b185
Fix unmatched "Courier" font for monospace fonts on latest ubuntu 20.04. Selected "FreeMono" instead, present since at least 18.04
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2804
diff
changeset
|
85 |
'mono': 'FreeMono', |
1747
6046ffa2280f
clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
86 |
'helv': 'Helvetica', |
6046ffa2280f
clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
87 |
'other': 'new century schoolbook', |
2345
a56362c818a3
use the same font size on Windows and GNU/Linux
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2344
diff
changeset
|
88 |
'size': 10, |
1747
6046ffa2280f
clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
89 |
} |
814 | 90 |
|
1123
55ed55ef7aea
Fixed bug on biggest Viewer zoom factor preventing them to be used on Windows
Laurent Bessard
parents:
1122
diff
changeset
|
91 |
if wx.Platform == '__WXMSW__': |
55ed55ef7aea
Fixed bug on biggest Viewer zoom factor preventing them to be used on Windows
Laurent Bessard
parents:
1122
diff
changeset
|
92 |
MAX_ZOOMIN = 4 |
55ed55ef7aea
Fixed bug on biggest Viewer zoom factor preventing them to be used on Windows
Laurent Bessard
parents:
1122
diff
changeset
|
93 |
else: |
55ed55ef7aea
Fixed bug on biggest Viewer zoom factor preventing them to be used on Windows
Laurent Bessard
parents:
1122
diff
changeset
|
94 |
MAX_ZOOMIN = 7 |
55ed55ef7aea
Fixed bug on biggest Viewer zoom factor preventing them to be used on Windows
Laurent Bessard
parents:
1122
diff
changeset
|
95 |
ZOOM_FACTORS = [math.sqrt(2) ** x for x in xrange(-6, MAX_ZOOMIN)] |
814 | 96 |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
97 |
|
814 | 98 |
def GetVariableCreationFunction(variable_type): |
99 |
def variableCreationFunction(viewer, id, specific_values): |
|
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
100 |
return FBD_Variable(viewer, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
101 |
variable_type, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
102 |
specific_values.name, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
103 |
specific_values.value_type, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
104 |
id, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
105 |
specific_values.execution_order) |
814 | 106 |
return variableCreationFunction |
107 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
108 |
|
814 | 109 |
def GetConnectorCreationFunction(connector_type): |
110 |
def connectorCreationFunction(viewer, id, specific_values): |
|
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
111 |
return FBD_Connector(viewer, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
112 |
connector_type, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
113 |
specific_values.name, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
114 |
id) |
814 | 115 |
return connectorCreationFunction |
116 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
117 |
|
814 | 118 |
def commentCreationFunction(viewer, id, specific_values): |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
119 |
return Comment(viewer, specific_values.content, id) |
814 | 120 |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
121 |
|
814 | 122 |
def GetPowerRailCreationFunction(powerrail_type): |
123 |
def powerRailCreationFunction(viewer, id, specific_values): |
|
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
124 |
return LD_PowerRail(viewer, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
125 |
powerrail_type, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
126 |
id, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
127 |
specific_values.connectors) |
814 | 128 |
return powerRailCreationFunction |
129 |
||
1749
d73b64672238
clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1747
diff
changeset
|
130 |
|
1762
fcc406143e5b
clean-up: fix PEP8 E731 do not assign a lambda expression, use a def
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1759
diff
changeset
|
131 |
def NEGATED_VALUE(x): |
fcc406143e5b
clean-up: fix PEP8 E731 do not assign a lambda expression, use a def
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1759
diff
changeset
|
132 |
return x if x is not None else False |
fcc406143e5b
clean-up: fix PEP8 E731 do not assign a lambda expression, use a def
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1759
diff
changeset
|
133 |
|
fcc406143e5b
clean-up: fix PEP8 E731 do not assign a lambda expression, use a def
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1759
diff
changeset
|
134 |
|
fcc406143e5b
clean-up: fix PEP8 E731 do not assign a lambda expression, use a def
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1759
diff
changeset
|
135 |
def MODIFIER_VALUE(x): |
fcc406143e5b
clean-up: fix PEP8 E731 do not assign a lambda expression, use a def
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1759
diff
changeset
|
136 |
return x if x is not None else 'none' |
fcc406143e5b
clean-up: fix PEP8 E731 do not assign a lambda expression, use a def
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1759
diff
changeset
|
137 |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
138 |
|
814 | 139 |
CONTACT_TYPES = {(True, "none"): CONTACT_REVERSE, |
140 |
(False, "rising"): CONTACT_RISING, |
|
141 |
(False, "falling"): CONTACT_FALLING} |
|
142 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
143 |
|
814 | 144 |
def contactCreationFunction(viewer, id, specific_values): |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
145 |
contact_type = CONTACT_TYPES.get((NEGATED_VALUE(specific_values.negated), |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
146 |
MODIFIER_VALUE(specific_values.edge)), |
814 | 147 |
CONTACT_NORMAL) |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
148 |
return LD_Contact(viewer, contact_type, specific_values.name, id) |
814 | 149 |
|
1749
d73b64672238
clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1747
diff
changeset
|
150 |
|
814 | 151 |
COIL_TYPES = {(True, "none", "none"): COIL_REVERSE, |
152 |
(False, "none", "set"): COIL_SET, |
|
153 |
(False, "none", "reset"): COIL_RESET, |
|
154 |
(False, "rising", "none"): COIL_RISING, |
|
155 |
(False, "falling", "none"): COIL_FALLING} |
|
156 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
157 |
|
814 | 158 |
def coilCreationFunction(viewer, id, specific_values): |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
159 |
coil_type = COIL_TYPES.get((NEGATED_VALUE(specific_values.negated), |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
160 |
MODIFIER_VALUE(specific_values.edge), |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
161 |
MODIFIER_VALUE(specific_values.storage)), |
814 | 162 |
COIL_NORMAL) |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
163 |
return LD_Coil(viewer, coil_type, specific_values.name, id) |
814 | 164 |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
165 |
|
814 | 166 |
def stepCreationFunction(viewer, id, specific_values): |
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
167 |
step = SFC_Step(viewer, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
168 |
specific_values.name, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
169 |
specific_values.initial, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
170 |
id) |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
171 |
if specific_values.action is not None: |
814 | 172 |
step.AddAction() |
173 |
connector = step.GetActionConnector() |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
174 |
connector.SetPosition(wx.Point(*specific_values.action.position)) |
814 | 175 |
return step |
176 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
177 |
|
814 | 178 |
def transitionCreationFunction(viewer, id, specific_values): |
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
179 |
transition = SFC_Transition(viewer, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
180 |
specific_values.condition_type, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
181 |
specific_values.condition, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
182 |
specific_values.priority, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
183 |
id) |
814 | 184 |
return transition |
185 |
||
1749
d73b64672238
clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1747
diff
changeset
|
186 |
|
1584
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
187 |
divergence_types = [SELECTION_DIVERGENCE, |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
188 |
SELECTION_CONVERGENCE, SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE] |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
189 |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
190 |
|
814 | 191 |
def GetDivergenceCreationFunction(divergence_type): |
192 |
def divergenceCreationFunction(viewer, id, specific_values): |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
193 |
return SFC_Divergence(viewer, divergence_type, |
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
194 |
specific_values.connectors, id) |
814 | 195 |
return divergenceCreationFunction |
196 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
197 |
|
814 | 198 |
def jumpCreationFunction(viewer, id, specific_values): |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
199 |
return SFC_Jump(viewer, specific_values.target, id) |
814 | 200 |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
201 |
|
814 | 202 |
def actionBlockCreationFunction(viewer, id, specific_values): |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
203 |
return SFC_ActionBlock(viewer, specific_values.actions, id) |
814 | 204 |
|
1749
d73b64672238
clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1747
diff
changeset
|
205 |
|
814 | 206 |
ElementCreationFunctions = { |
207 |
"input": GetVariableCreationFunction(INPUT), |
|
208 |
"output": GetVariableCreationFunction(OUTPUT), |
|
209 |
"inout": GetVariableCreationFunction(INOUT), |
|
210 |
"connector": GetConnectorCreationFunction(CONNECTOR), |
|
211 |
"continuation": GetConnectorCreationFunction(CONTINUATION), |
|
212 |
"comment": commentCreationFunction, |
|
213 |
"leftPowerRail": GetPowerRailCreationFunction(LEFTRAIL), |
|
214 |
"rightPowerRail": GetPowerRailCreationFunction(RIGHTRAIL), |
|
215 |
"contact": contactCreationFunction, |
|
216 |
"coil": coilCreationFunction, |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
217 |
"step": stepCreationFunction, |
814 | 218 |
"transition": transitionCreationFunction, |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
219 |
"selectionDivergence": GetDivergenceCreationFunction(SELECTION_DIVERGENCE), |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
220 |
"selectionConvergence": GetDivergenceCreationFunction(SELECTION_CONVERGENCE), |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
221 |
"simultaneousDivergence": GetDivergenceCreationFunction(SIMULTANEOUS_DIVERGENCE), |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
222 |
"simultaneousConvergence": GetDivergenceCreationFunction(SIMULTANEOUS_CONVERGENCE), |
814 | 223 |
"jump": jumpCreationFunction, |
224 |
"actionBlock": actionBlockCreationFunction, |
|
225 |
} |
|
226 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
227 |
|
814 | 228 |
def sort_blocks(block_infos1, block_infos2): |
229 |
x1, y1 = block_infos1[0].GetPosition() |
|
230 |
x2, y2 = block_infos2[0].GetPosition() |
|
231 |
if y1 == y2: |
|
232 |
return cmp(x1, x2) |
|
233 |
else: |
|
234 |
return cmp(y1, y2) |
|
235 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
236 |
# ------------------------------------------------------------------------------- |
814 | 237 |
# Graphic elements Viewer base class |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
238 |
# ------------------------------------------------------------------------------- |
814 | 239 |
|
1749
d73b64672238
clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1747
diff
changeset
|
240 |
|
814 | 241 |
# ID Constants for alignment menu items |
1773
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
242 |
[ |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
243 |
ID_VIEWERALIGNMENTMENUITEMS0, ID_VIEWERALIGNMENTMENUITEMS1, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
244 |
ID_VIEWERALIGNMENTMENUITEMS2, ID_VIEWERALIGNMENTMENUITEMS4, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
245 |
ID_VIEWERALIGNMENTMENUITEMS5, ID_VIEWERALIGNMENTMENUITEMS6, |
814 | 246 |
] = [wx.NewId() for _init_coll_AlignmentMenu_Items in range(6)] |
247 |
||
248 |
# ID Constants for contextual menu items |
|
1773
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
249 |
[ |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
250 |
ID_VIEWERCONTEXTUALMENUITEMS0, ID_VIEWERCONTEXTUALMENUITEMS1, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
251 |
ID_VIEWERCONTEXTUALMENUITEMS2, ID_VIEWERCONTEXTUALMENUITEMS3, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
252 |
ID_VIEWERCONTEXTUALMENUITEMS5, ID_VIEWERCONTEXTUALMENUITEMS6, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
253 |
ID_VIEWERCONTEXTUALMENUITEMS8, ID_VIEWERCONTEXTUALMENUITEMS9, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
254 |
ID_VIEWERCONTEXTUALMENUITEMS11, ID_VIEWERCONTEXTUALMENUITEMS12, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
255 |
ID_VIEWERCONTEXTUALMENUITEMS14, ID_VIEWERCONTEXTUALMENUITEMS16, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
256 |
ID_VIEWERCONTEXTUALMENUITEMS17, |
814 | 257 |
] = [wx.NewId() for _init_coll_ContextualMenu_Items in range(13)] |
258 |
||
259 |
||
260 |
class ViewerDropTarget(wx.TextDropTarget): |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
261 |
|
814 | 262 |
def __init__(self, parent): |
263 |
wx.TextDropTarget.__init__(self) |
|
264 |
self.ParentWindow = parent |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
265 |
|
814 | 266 |
def OnDropText(self, x, y, data): |
267 |
self.ParentWindow.Select() |
|
268 |
tagname = self.ParentWindow.GetTagName() |
|
269 |
pou_name, pou_type = self.ParentWindow.Controler.GetEditedElementType(tagname, self.ParentWindow.Debug) |
|
270 |
x, y = self.ParentWindow.CalcUnscrolledPosition(x, y) |
|
271 |
x = int(x / self.ParentWindow.ViewScale[0]) |
|
272 |
y = int(y / self.ParentWindow.ViewScale[1]) |
|
273 |
scaling = self.ParentWindow.Scaling |
|
274 |
message = None |
|
275 |
try: |
|
276 |
values = eval(data) |
|
1780
c52d1460cea8
clean-up: fix PEP8 E722 do not use bare except'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1773
diff
changeset
|
277 |
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
|
278 |
message = _("Invalid value \"%s\" for viewer block") % data |
814 | 279 |
values = None |
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
280 |
if not isinstance(values, tuple): |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
281 |
message = _("Invalid value \"%s\" for viewer block") % data |
814 | 282 |
values = None |
283 |
if values is not None: |
|
284 |
if values[1] == "debug": |
|
285 |
pass |
|
286 |
elif values[1] == "program": |
|
287 |
message = _("Programs can't be used by other POUs!") |
|
288 |
elif values[1] in ["function", "functionBlock"]: |
|
289 |
if pou_name == values[0]: |
|
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
290 |
message = _("\"%s\" can't use itself!") % pou_name |
814 | 291 |
elif pou_type == "function" and values[1] != "function": |
292 |
message = _("Function Blocks can't be used in Functions!") |
|
293 |
elif self.ParentWindow.Controler.PouIsUsedBy(pou_name, values[0], self.ParentWindow.Debug): |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
294 |
message = _("\"{a1}\" is already used by \"{a2}\"!").format(a1=pou_name, a2=values[0]) |
814 | 295 |
else: |
296 |
blockname = values[2] |
|
297 |
if len(values) > 3: |
|
298 |
blockinputs = values[3] |
|
299 |
else: |
|
300 |
blockinputs = None |
|
301 |
if values[1] != "function" and blockname == "": |
|
302 |
blockname = self.ParentWindow.GenerateNewName(blocktype=values[0]) |
|
303 |
if blockname.upper() in [name.upper() for name in self.ParentWindow.Controler.GetProjectPouNames(self.ParentWindow.Debug)]: |
|
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
304 |
message = _("\"%s\" pou already exists!") % blockname |
814 | 305 |
elif blockname.upper() in [name.upper() for name in self.ParentWindow.Controler.GetEditedElementVariables(tagname, self.ParentWindow.Debug)]: |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
306 |
message = _("\"%s\" element for this pou already exists!") % blockname |
814 | 307 |
else: |
308 |
id = self.ParentWindow.GetNewId() |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
309 |
block = FBD_Block(self.ParentWindow, values[0], blockname, id, inputs=blockinputs) |
814 | 310 |
width, height = block.GetMinSize() |
311 |
if scaling is not None: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
312 |
x = round(x / scaling[0]) * scaling[0] |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
313 |
y = round(y / scaling[1]) * scaling[1] |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
314 |
width = round(width / scaling[0] + 0.5) * scaling[0] |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
315 |
height = round(height / scaling[1] + 0.5) * scaling[1] |
814 | 316 |
block.SetPosition(x, y) |
317 |
block.SetSize(width, height) |
|
318 |
self.ParentWindow.AddBlock(block) |
|
319 |
self.ParentWindow.Controler.AddEditedElementBlock(tagname, id, values[0], blockname) |
|
320 |
self.ParentWindow.RefreshBlockModel(block) |
|
321 |
self.ParentWindow.RefreshBuffer() |
|
322 |
self.ParentWindow.RefreshScrollBars() |
|
323 |
self.ParentWindow.RefreshVisibleElements() |
|
324 |
self.ParentWindow.RefreshVariablePanel() |
|
1233
5e6d0969bb5d
Fixed bugs in refresh of PouInstanceVariablesPanel
Laurent Bessard
parents:
1229
diff
changeset
|
325 |
self.ParentWindow.ParentWindow.RefreshPouInstanceVariablesPanel() |
814 | 326 |
self.ParentWindow.Refresh(False) |
327 |
elif values[1] == "location": |
|
328 |
if pou_type == "program": |
|
329 |
location = values[0] |
|
330 |
if not location.startswith("%"): |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
331 |
dialog = wx.SingleChoiceDialog( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
332 |
self.ParentWindow.ParentWindow, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
333 |
_("Select a variable class:"), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
334 |
_("Variable class"), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
335 |
[_("Input"), _("Output"), _("Memory")], |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
336 |
wx.DEFAULT_DIALOG_STYLE | wx.OK | wx.CANCEL) |
814 | 337 |
if dialog.ShowModal() == wx.ID_OK: |
338 |
selected = dialog.GetSelection() |
|
339 |
else: |
|
340 |
selected = None |
|
341 |
dialog.Destroy() |
|
342 |
if selected is None: |
|
343 |
return |
|
344 |
if selected == 0: |
|
345 |
location = "%I" + location |
|
346 |
elif selected == 1: |
|
347 |
location = "%Q" + location |
|
348 |
else: |
|
349 |
location = "%M" + location |
|
350 |
var_name = values[3] |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
351 |
dlg = wx.TextEntryDialog( |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
352 |
self.ParentWindow.ParentWindow, |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
353 |
_("Confirm or change variable name"), |
1578
f8e2a04c4445
add localization to time strings in DebugVariablePanel and to dialog shown after variable drag'n'drop
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
354 |
_('Variable Drop'), var_name) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
355 |
dlg.SetValue(var_name) |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
356 |
var_name = dlg.GetValue() if dlg.ShowModal() == wx.ID_OK else None |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
357 |
dlg.Destroy() |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
358 |
if var_name is None: |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
359 |
return |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
360 |
elif var_name.upper() in [name.upper() for name in self.ParentWindow.Controler.GetProjectPouNames(self.ParentWindow.Debug)]: |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
361 |
message = _("\"%s\" pou already exists!") % var_name |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
362 |
elif not var_name.upper() in [name.upper() for name in self.ParentWindow.Controler.GetEditedElementVariables(tagname, self.ParentWindow.Debug)]: |
814 | 363 |
if location[1] == "Q": |
364 |
var_class = OUTPUT |
|
365 |
else: |
|
366 |
var_class = INPUT |
|
367 |
if values[2] is not None: |
|
368 |
var_type = values[2] |
|
369 |
else: |
|
370 |
var_type = LOCATIONDATATYPES.get(location[2], ["BOOL"])[0] |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
371 |
self.ParentWindow.Controler.AddEditedElementPouVar(tagname, var_type, var_name, location=location, description=values[4]) |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
372 |
self.ParentWindow.RefreshVariablePanel() |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
373 |
self.ParentWindow.ParentWindow.RefreshPouInstanceVariablesPanel() |
1406
82db84fe88ea
Added 'NamedConstant' drag'n'drop in programs. It does create a simple variable with initial value and is usefull for drag'n'drop constants from extensions while keeping a name associated with constant
Edouard Tisserant
parents:
1381
diff
changeset
|
374 |
self.ParentWindow.AddVariableBlock(x, y, scaling, var_class, var_name, var_type) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
375 |
else: |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
376 |
message = _("\"%s\" element for this pou already exists!") % var_name |
1406
82db84fe88ea
Added 'NamedConstant' drag'n'drop in programs. It does create a simple variable with initial value and is usefull for drag'n'drop constants from extensions while keeping a name associated with constant
Edouard Tisserant
parents:
1381
diff
changeset
|
377 |
elif values[1] == "NamedConstant": |
82db84fe88ea
Added 'NamedConstant' drag'n'drop in programs. It does create a simple variable with initial value and is usefull for drag'n'drop constants from extensions while keeping a name associated with constant
Edouard Tisserant
parents:
1381
diff
changeset
|
378 |
if pou_type == "program": |
82db84fe88ea
Added 'NamedConstant' drag'n'drop in programs. It does create a simple variable with initial value and is usefull for drag'n'drop constants from extensions while keeping a name associated with constant
Edouard Tisserant
parents:
1381
diff
changeset
|
379 |
initval = values[0] |
82db84fe88ea
Added 'NamedConstant' drag'n'drop in programs. It does create a simple variable with initial value and is usefull for drag'n'drop constants from extensions while keeping a name associated with constant
Edouard Tisserant
parents:
1381
diff
changeset
|
380 |
var_name = values[3] |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
381 |
dlg = wx.TextEntryDialog( |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
382 |
self.ParentWindow.ParentWindow, |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
383 |
_("Confirm or change variable name"), |
1578
f8e2a04c4445
add localization to time strings in DebugVariablePanel and to dialog shown after variable drag'n'drop
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
384 |
_('Variable Drop'), var_name) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
385 |
dlg.SetValue(var_name) |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
386 |
var_name = dlg.GetValue() if dlg.ShowModal() == wx.ID_OK else None |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
387 |
dlg.Destroy() |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
388 |
if var_name is None: |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
389 |
return |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
390 |
elif var_name.upper() in [name.upper() for name in self.ParentWindow.Controler.GetProjectPouNames(self.ParentWindow.Debug)]: |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
391 |
message = _("\"%s\" pou already exists!") % var_name |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
392 |
elif not var_name.upper() in [name.upper() for name in self.ParentWindow.Controler.GetEditedElementVariables(tagname, self.ParentWindow.Debug)]: |
1406
82db84fe88ea
Added 'NamedConstant' drag'n'drop in programs. It does create a simple variable with initial value and is usefull for drag'n'drop constants from extensions while keeping a name associated with constant
Edouard Tisserant
parents:
1381
diff
changeset
|
393 |
var_class = INPUT |
82db84fe88ea
Added 'NamedConstant' drag'n'drop in programs. It does create a simple variable with initial value and is usefull for drag'n'drop constants from extensions while keeping a name associated with constant
Edouard Tisserant
parents:
1381
diff
changeset
|
394 |
var_type = values[2] |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
395 |
self.ParentWindow.Controler.AddEditedElementPouVar(tagname, var_type, var_name, description=values[4], initval=initval) |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
396 |
self.ParentWindow.RefreshVariablePanel() |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
397 |
self.ParentWindow.ParentWindow.RefreshPouInstanceVariablesPanel() |
814 | 398 |
self.ParentWindow.AddVariableBlock(x, y, scaling, var_class, var_name, var_type) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
399 |
else: |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
400 |
message = _("\"%s\" element for this pou already exists!") % var_name |
814 | 401 |
elif values[1] == "Global": |
402 |
var_name = values[0] |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
403 |
dlg = wx.TextEntryDialog( |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
404 |
self.ParentWindow.ParentWindow, |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
405 |
_("Confirm or change variable name"), |
1578
f8e2a04c4445
add localization to time strings in DebugVariablePanel and to dialog shown after variable drag'n'drop
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
406 |
_('Variable Drop'), var_name) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
407 |
dlg.SetValue(var_name) |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
408 |
var_name = dlg.GetValue() if dlg.ShowModal() == wx.ID_OK else None |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
409 |
dlg.Destroy() |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
410 |
if var_name is None: |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
411 |
return |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
412 |
elif var_name.upper() in [name.upper() for name in self.ParentWindow.Controler.GetProjectPouNames(self.ParentWindow.Debug)]: |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
413 |
message = _("\"%s\" pou already exists!") % var_name |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
414 |
elif not var_name.upper() in [name.upper() for name in self.ParentWindow.Controler.GetEditedElementVariables(tagname, self.ParentWindow.Debug)]: |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
415 |
self.ParentWindow.Controler.AddEditedElementPouExternalVar(tagname, values[2], var_name) |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
416 |
self.ParentWindow.RefreshVariablePanel() |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
417 |
self.ParentWindow.ParentWindow.RefreshPouInstanceVariablesPanel() |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
418 |
self.ParentWindow.AddVariableBlock(x, y, scaling, INPUT, var_name, values[2]) |
814 | 419 |
else: |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
420 |
message = _("\"%s\" element for this pou already exists!") % var_name |
814 | 421 |
elif values[1] == "Constant": |
422 |
self.ParentWindow.AddVariableBlock(x, y, scaling, INPUT, values[0], None) |
|
423 |
elif values[3] == tagname: |
|
424 |
if values[1] == "Output": |
|
425 |
var_class = OUTPUT |
|
426 |
elif values[1] == "InOut": |
|
427 |
var_class = INPUT |
|
428 |
else: |
|
429 |
var_class = INPUT |
|
1347
533741e5075c
Fixed pou variables information loading stylesheet
Laurent Bessard
parents:
1342
diff
changeset
|
430 |
tree = dict([(var.Name, var.Tree) for var in self.ParentWindow.Controler.GetEditedElementInterfaceVars(tagname, True, self.ParentWindow.Debug)]).get(values[0], None) |
814 | 431 |
if tree is not None: |
432 |
if len(tree[0]) > 0: |
|
433 |
menu = wx.Menu(title='') |
|
434 |
self.GenerateTreeMenu(x, y, scaling, menu, "", var_class, [(values[0], values[2], tree)]) |
|
435 |
self.ParentWindow.PopupMenuXY(menu) |
|
436 |
else: |
|
437 |
self.ParentWindow.AddVariableBlock(x, y, scaling, var_class, values[0], values[2]) |
|
438 |
else: |
|
439 |
message = _("Unknown variable \"%s\" for this POU!") % values[0] |
|
440 |
else: |
|
441 |
message = _("Variable don't belong to this POU!") |
|
442 |
if message is not None: |
|
443 |
wx.CallAfter(self.ShowMessage, message) |
|
444 |
||
445 |
def GenerateTreeMenu(self, x, y, scaling, menu, base_path, var_class, tree): |
|
446 |
for child_name, child_type, (child_tree, child_dimensions) in tree: |
|
447 |
if base_path: |
|
448 |
child_path = "%s.%s" % (base_path, child_name) |
|
449 |
else: |
|
450 |
child_path = child_name |
|
451 |
if len(child_dimensions) > 0: |
|
452 |
child_path += "[%s]" % ",".join([str(dimension[0]) for dimension in child_dimensions]) |
|
453 |
child_name += "[]" |
|
2555
5dce99e69027
Start fixing wx.NewId abuse in viewer.py. This shows how to avoid using AppendMenu() function, definitely useless.
Edouard Tisserant
parents:
2494
diff
changeset
|
454 |
item = menu.Append(wx.ID_ANY, help='', kind=wx.ITEM_NORMAL, text=child_name) |
5dce99e69027
Start fixing wx.NewId abuse in viewer.py. This shows how to avoid using AppendMenu() function, definitely useless.
Edouard Tisserant
parents:
2494
diff
changeset
|
455 |
self.ParentWindow.Bind(wx.EVT_MENU, self.GetAddVariableBlockFunction(x, y, scaling, var_class, child_path, child_type), item) |
814 | 456 |
if len(child_tree) > 0: |
457 |
child_menu = wx.Menu(title='') |
|
458 |
self.GenerateTreeMenu(x, y, scaling, child_menu, child_path, var_class, child_tree) |
|
2555
5dce99e69027
Start fixing wx.NewId abuse in viewer.py. This shows how to avoid using AppendMenu() function, definitely useless.
Edouard Tisserant
parents:
2494
diff
changeset
|
459 |
menu.AppendMenu(wx.ID_ANY, "%s." % child_name, child_menu) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
460 |
|
814 | 461 |
def GetAddVariableBlockFunction(self, x, y, scaling, var_class, var_name, var_type): |
462 |
def AddVariableFunction(event): |
|
463 |
self.ParentWindow.AddVariableBlock(x, y, scaling, var_class, var_name, var_type) |
|
464 |
return AddVariableFunction |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
465 |
|
814 | 466 |
def ShowMessage(self, message): |
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1744
diff
changeset
|
467 |
message = wx.MessageDialog(self.ParentWindow, message, _("Error"), wx.OK | wx.ICON_ERROR) |
814 | 468 |
message.ShowModal() |
469 |
message.Destroy() |
|
470 |
||
1674
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
471 |
|
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
472 |
class DebugInstanceName(DebugDataConsumer): |
2301
5b8a7dd43f9f
Avoid usage of localized strings before initialization during import in many modules
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2229
diff
changeset
|
473 |
VALUE_TRANSLATION = None |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1711
diff
changeset
|
474 |
|
1674
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
475 |
def __init__(self, parent): |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
476 |
DebugDataConsumer.__init__(self) |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
477 |
self.Parent = parent |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
478 |
self.ActionLastState = None |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
479 |
self.ActionState = None |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
480 |
self.x_offset = 2 |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
481 |
self.y_offset = 2 |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1711
diff
changeset
|
482 |
|
2301
5b8a7dd43f9f
Avoid usage of localized strings before initialization during import in many modules
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2229
diff
changeset
|
483 |
if self.VALUE_TRANSLATION is None: |
5b8a7dd43f9f
Avoid usage of localized strings before initialization during import in many modules
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2229
diff
changeset
|
484 |
self.__class__.VALUE_TRANSLATION = {True: _("Active"), False: _("Inactive")} |
5b8a7dd43f9f
Avoid usage of localized strings before initialization during import in many modules
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2229
diff
changeset
|
485 |
|
1674
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
486 |
def SetValue(self, value): |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
487 |
self.ActionState = value |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
488 |
if self.ActionState != self.ActionLastState: |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
489 |
self.ActionLastState = self.ActionState |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
490 |
wx.CallAfter(self.Parent.ElementNeedRefresh, self) |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
491 |
|
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
492 |
def GetInstanceName(self): |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
493 |
return _("Debug: %s") % self.Parent.InstancePath |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
494 |
|
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
495 |
def GetRedrawRect(self): |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1711
diff
changeset
|
496 |
x, y = self.Parent.CalcUnscrolledPosition(self.x_offset, self.y_offset) |
1674
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
497 |
dc = self.Parent.GetLogicalDC() |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
498 |
ipw, _iph = dc.GetTextExtent(self.GetInstanceName()) |
1674
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
499 |
vw, vh = 0, 0 |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
500 |
for value in self.VALUE_TRANSLATION.itervalues(): |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
501 |
w, h = dc.GetTextExtent(" (%s)" % value) |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
502 |
vw = max(vw, w) |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
503 |
vh = max(vh, h) |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
504 |
return wx.Rect(ipw + x, y, vw, vh) |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
505 |
|
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
506 |
def Draw(self, dc): |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
507 |
scalex, scaley = dc.GetUserScale() |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
508 |
dc.SetUserScale(1, 1) |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
509 |
x, y = self.Parent.CalcUnscrolledPosition(self.x_offset, self.y_offset) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1711
diff
changeset
|
510 |
|
1674
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
511 |
text = self.GetInstanceName() |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
512 |
if self.ActionState is not None: |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
513 |
text += " (" |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
514 |
|
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
515 |
dc.DrawText(text, x, y) |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
516 |
tw, _th = dc.GetTextExtent(text) |
1674
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
517 |
if self.ActionState is not None: |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
518 |
|
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
519 |
text = self.VALUE_TRANSLATION[self.ActionState] |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
520 |
if self.ActionState: |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
521 |
dc.SetTextForeground(wx.GREEN) |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
522 |
dc.DrawText(text, x + tw, y) |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
523 |
if self.ActionState: |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
524 |
dc.SetTextForeground(wx.BLACK) |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
525 |
tw = tw + dc.GetTextExtent(text)[0] |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1711
diff
changeset
|
526 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1711
diff
changeset
|
527 |
text = ")" |
1674
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
528 |
dc.DrawText(text, x + tw, y) |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
529 |
dc.SetUserScale(scalex, scaley) |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
530 |
|
814 | 531 |
|
1176
f4b434672204
Moved and rewrote DebugViewer and DebusDataConsumer classes
Laurent Bessard
parents:
1170
diff
changeset
|
532 |
class Viewer(EditorPanel, DebugViewer): |
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
533 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
534 |
Class that implements a Viewer based on a wx.ScrolledWindow for drawing and |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
535 |
manipulating graphic elements |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
536 |
""" |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
537 |
|
814 | 538 |
# Add list of menu items to the given menu |
539 |
def AddMenuItems(self, menu, items): |
|
540 |
for item in items: |
|
541 |
if item is None: |
|
542 |
menu.AppendSeparator() |
|
543 |
else: |
|
544 |
id, kind, text, help, callback = item |
|
545 |
AppendMenu(menu, help=help, id=id, kind=kind, text=text) |
|
546 |
# Link menu event to corresponding called functions |
|
547 |
self.Bind(wx.EVT_MENU, callback, id=id) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
548 |
|
2557
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
549 |
def AppendItem(self, menu, text, callback, *args, **kwargs): |
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
550 |
item = menu.Append(wx.ID_ANY, text, *args, **kwargs) |
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
551 |
self.Bind(wx.EVT_MENU, callback, item) |
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
552 |
return item |
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
553 |
|
814 | 554 |
# Add Block Pin Menu items to the given menu |
555 |
def AddBlockPinMenuItems(self, menu, connector): |
|
2557
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
556 |
no_modifier = self.AppendItem(menu, _(u'No modifier'), self.OnNoModifierMenu, kind=wx.ITEM_RADIO) |
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
557 |
negated = self.AppendItem(menu, _(u'Negated'), self.OnNegatedMenu, kind=wx.ITEM_RADIO) |
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
558 |
rising_edge = self.AppendItem(menu, _(u'Rising Edge'), self.OnRisingEdgeMenu, kind=wx.ITEM_RADIO) |
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
559 |
falling_edge = self.AppendItem(menu, _(u'Falling Edge'), self.OnFallingEdgeMenu, kind=wx.ITEM_RADIO) |
2556
f07d389772fd
Continued wx.NewID abuse removal in Viewer.py : get rid of one call to AppendMenu method, having no real purpose apparently. To be continued.
Edouard Tisserant
parents:
2555
diff
changeset
|
560 |
|
f07d389772fd
Continued wx.NewID abuse removal in Viewer.py : get rid of one call to AppendMenu method, having no real purpose apparently. To be continued.
Edouard Tisserant
parents:
2555
diff
changeset
|
561 |
not_a_function = self.Controler.GetEditedElementType( |
f07d389772fd
Continued wx.NewID abuse removal in Viewer.py : get rid of one call to AppendMenu method, having no real purpose apparently. To be continued.
Edouard Tisserant
parents:
2555
diff
changeset
|
562 |
self.TagName, self.Debug) != "function" |
f07d389772fd
Continued wx.NewID abuse removal in Viewer.py : get rid of one call to AppendMenu method, having no real purpose apparently. To be continued.
Edouard Tisserant
parents:
2555
diff
changeset
|
563 |
rising_edge.Enable(not_a_function) |
f07d389772fd
Continued wx.NewID abuse removal in Viewer.py : get rid of one call to AppendMenu method, having no real purpose apparently. To be continued.
Edouard Tisserant
parents:
2555
diff
changeset
|
564 |
falling_edge.Enable(not_a_function) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
565 |
|
814 | 566 |
if connector.IsNegated(): |
2556
f07d389772fd
Continued wx.NewID abuse removal in Viewer.py : get rid of one call to AppendMenu method, having no real purpose apparently. To be continued.
Edouard Tisserant
parents:
2555
diff
changeset
|
567 |
negated.Check(True) |
814 | 568 |
elif connector.GetEdge() == "rising": |
2556
f07d389772fd
Continued wx.NewID abuse removal in Viewer.py : get rid of one call to AppendMenu method, having no real purpose apparently. To be continued.
Edouard Tisserant
parents:
2555
diff
changeset
|
569 |
rising_edge.Check(True) |
814 | 570 |
elif connector.GetEdge() == "falling": |
2556
f07d389772fd
Continued wx.NewID abuse removal in Viewer.py : get rid of one call to AppendMenu method, having no real purpose apparently. To be continued.
Edouard Tisserant
parents:
2555
diff
changeset
|
571 |
falling_edge.Check(True) |
814 | 572 |
else: |
2556
f07d389772fd
Continued wx.NewID abuse removal in Viewer.py : get rid of one call to AppendMenu method, having no real purpose apparently. To be continued.
Edouard Tisserant
parents:
2555
diff
changeset
|
573 |
no_modifier.Check(True) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
574 |
|
814 | 575 |
# Add Alignment Menu items to the given menu |
576 |
def AddAlignmentMenuItems(self, menu): |
|
2557
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
577 |
self.AppendItem(menu, _(u'Left'), self.OnAlignLeftMenu) |
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
578 |
self.AppendItem(menu, _(u'Center'), self.OnAlignCenterMenu) |
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
579 |
self.AppendItem(menu, _(u'Right'), self.OnAlignRightMenu) |
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
580 |
menu.AppendSeparator() |
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
581 |
self.AppendItem(menu, _(u'Top'), self.OnAlignTopMenu) |
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
582 |
self.AppendItem(menu, _(u'Middle'), self.OnAlignMiddleMenu) |
a6e7c34497b8
Continued wx.NewID abuse removal in Viewer.py : Added AppendItem to use instead of AppendMenu, made examples with AddBlockPinMenuItems and AddAlignmentMenuItems
Edouard Tisserant
parents:
2556
diff
changeset
|
583 |
self.AppendItem(menu, _(u'Bottom'), self.OnAlignBottomMenu) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
584 |
|
814 | 585 |
# Add Wire Menu items to the given menu |
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
586 |
def AddWireMenuItems(self, menu, delete=False, replace=False): |
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
587 |
self.AppendItem(menu, _(u'Add Wire Segment'), self.OnAddSegmentMenu) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
588 |
delete_segment = self.AppendItem(menu, _(u'Delete Wire Segment'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
589 |
self.OnDeleteSegmentMenu) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
590 |
replace_wire = self.AppendItem(menu, _(u'Replace Wire by connections'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
591 |
self.OnReplaceWireMenu) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
592 |
|
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
593 |
delete_segment.Enable(delete) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
594 |
replace_wire.Enable(replace) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
595 |
|
814 | 596 |
# Add Divergence Menu items to the given menu |
597 |
def AddDivergenceMenuItems(self, menu, delete=False): |
|
2579
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
598 |
self.AppendItem(menu, _(u'Add Divergence Branch'), |
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
599 |
self.OnAddBranchMenu) |
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
600 |
delete_branch = self.AppendItem(menu, _(u'Delete Divergence Branch'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
601 |
self.OnDeleteBranchMenu) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
602 |
|
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
603 |
delete_branch.Enable(delete) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
604 |
|
814 | 605 |
# Add Add Menu items to the given menu |
606 |
def AddAddMenuItems(self, menu): |
|
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
607 |
self.AppendItem(menu, _(u'Block'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
608 |
self.GetAddMenuCallBack(self.AddNewBlock)) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
609 |
self.AppendItem(menu, _(u'Variable'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
610 |
self.GetAddMenuCallBack(self.AddNewVariable)) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
611 |
self.AppendItem(menu, _(u'Connection'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
612 |
self.GetAddMenuCallBack(self.AddNewConnection)) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
613 |
menu.AppendSeparator() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
614 |
|
814 | 615 |
if self.CurrentLanguage != "FBD": |
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
616 |
self.AppendItem(menu, _(u'Power Rail'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
617 |
self.GetAddMenuCallBack(self.AddNewPowerRail)) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
618 |
self.AppendItem(menu, _(u'Contact'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
619 |
self.GetAddMenuCallBack(self.AddNewContact)) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
620 |
|
814 | 621 |
if self.CurrentLanguage != "SFC": |
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
622 |
self.AppendItem(menu, _(u'Coil'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
623 |
self.GetAddMenuCallBack(self.AddNewCoil)) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
624 |
|
814 | 625 |
menu.AppendSeparator() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
626 |
|
814 | 627 |
if self.CurrentLanguage == "SFC": |
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
628 |
self.AppendItem(menu, _(u'Initial Step'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
629 |
self.GetAddMenuCallBack(self.AddNewStep, True)) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
630 |
self.AppendItem(menu, (u'Step'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
631 |
self.GetAddMenuCallBack(self.AddNewStep)) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
632 |
self.AppendItem(menu, (u'Transition'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
633 |
self.GetAddMenuCallBack(self.AddNewTransition)) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
634 |
self.AppendItem(menu, (u'Action Block'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
635 |
self.GetAddMenuCallBack(self.AddNewActionBlock)) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
636 |
self.AppendItem(menu, (u'Divergence'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
637 |
self.GetAddMenuCallBack(self.AddNewDivergence)) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
638 |
self.AppendItem(menu, (u'Jump'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
639 |
self.GetAddMenuCallBack(self.AddNewJump)) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
640 |
menu.AppendSeparator() |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
641 |
|
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
642 |
self.AppendItem(menu, _(u'Comment'), |
2579
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
643 |
self.GetAddMenuCallBack(self.AddNewComment)) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
644 |
|
814 | 645 |
# Add Default Menu items to the given menu |
646 |
def AddDefaultMenuItems(self, menu, edit=False, block=False): |
|
647 |
if block: |
|
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
648 |
edit_block = self.AppendItem(menu, _(u'Edit Block'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
649 |
self.OnEditBlockMenu) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
650 |
self.AppendItem(menu, _(u'Adjust Block Size'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
651 |
self.OnAdjustBlockSizeMenu) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
652 |
self.AppendItem(menu, _(u'Delete'), self.OnDeleteMenu) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
653 |
|
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
654 |
edit_block.Enable(edit) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
655 |
|
814 | 656 |
else: |
1586
e17406dd4f06
remove clear and reset execution order buttons in popup menu in SFC and LD viewers.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1584
diff
changeset
|
657 |
if self.CurrentLanguage == 'FBD': |
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
658 |
self.AppendItem(menu, _(u'Clear Execution Order'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
659 |
self.OnClearExecutionOrderMenu) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
660 |
self.AppendItem(menu, _(u'Reset Execution Order'), |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
661 |
self.OnResetExecutionOrderMenu) |
1586
e17406dd4f06
remove clear and reset execution order buttons in popup menu in SFC and LD viewers.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1584
diff
changeset
|
662 |
menu.AppendSeparator() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
663 |
|
814 | 664 |
add_menu = wx.Menu(title='') |
665 |
self.AddAddMenuItems(add_menu) |
|
666 |
menu.AppendMenu(-1, _(u'Add'), add_menu) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
667 |
|
814 | 668 |
menu.AppendSeparator() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
669 |
|
2579
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
670 |
cut = self.AppendItem(menu, _(u'Cut'), self.GetClipboardCallBack(self.Cut)) |
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
671 |
copy = self.AppendItem(menu, _(u'Copy'), self.GetClipboardCallBack(self.Copy)) |
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
672 |
paste = self.AppendItem(menu, _(u'Paste'), self.GetAddMenuCallBack(self.Paste)) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
673 |
|
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
674 |
cut.Enable(block) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
675 |
copy.Enable(block) |
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
676 |
paste.Enable(self.ParentWindow.GetCopyBuffer() is not None) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
677 |
|
814 | 678 |
def _init_Editor(self, prnt): |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
679 |
self.Editor = wx.ScrolledWindow(prnt, name="Viewer", |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
680 |
pos=wx.Point(0, 0), size=wx.Size(0, 0), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
681 |
style=wx.HSCROLL | wx.VSCROLL) |
814 | 682 |
self.Editor.ParentWindow = self |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
683 |
|
814 | 684 |
# Create a new Viewer |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
685 |
def __init__(self, parent, tagname, window, controler, debug=False, instancepath=""): |
814 | 686 |
self.VARIABLE_PANEL_TYPE = controler.GetPouType(tagname.split("::")[1]) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
687 |
|
814 | 688 |
EditorPanel.__init__(self, parent, tagname, window, controler, debug) |
689 |
DebugViewer.__init__(self, controler, debug) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
690 |
|
814 | 691 |
# Adding a rubberband to Viewer |
692 |
self.rubberBand = RubberBand(viewer=self) |
|
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
693 |
self.Editor.SetBackgroundColour(wx.Colour(255, 255, 255)) |
814 | 694 |
self.Editor.SetBackgroundStyle(wx.BG_STYLE_CUSTOM) |
695 |
self.ResetView() |
|
1342
c17507a10807
Fixed various latency issues removing unnecessary calls
Laurent Bessard
parents:
1338
diff
changeset
|
696 |
self.LastClientSize = None |
814 | 697 |
self.Scaling = None |
698 |
self.DrawGrid = True |
|
699 |
self.GridBrush = wx.TRANSPARENT_BRUSH |
|
700 |
self.PageSize = None |
|
701 |
self.PagePen = wx.TRANSPARENT_PEN |
|
702 |
self.DrawingWire = False |
|
703 |
self.current_id = 0 |
|
704 |
self.TagName = tagname |
|
705 |
self.Highlights = [] |
|
706 |
self.SearchParams = None |
|
707 |
self.SearchResults = None |
|
708 |
self.CurrentFindHighlight = None |
|
709 |
self.InstancePath = instancepath |
|
710 |
self.StartMousePos = None |
|
711 |
self.StartScreenPos = None |
|
1674
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
712 |
self.InstanceName = DebugInstanceName(self) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
713 |
|
1224 | 714 |
# Prevent search for highlighted element to be called too often |
715 |
self.LastHighlightCheckTime = gettime() |
|
716 |
# Prevent search for element producing tooltip to be called too often |
|
717 |
self.LastToolTipCheckTime = gettime() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
718 |
|
814 | 719 |
self.Buffering = False |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
720 |
|
814 | 721 |
# Initialize Cursors |
722 |
ResetCursors() |
|
723 |
self.CurrentCursor = 0 |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
724 |
|
814 | 725 |
# Initialize Block, Wire and Comment numbers |
726 |
self.wire_id = 0 |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
727 |
|
814 | 728 |
# Initialize Viewer mode to Selection mode |
729 |
self.Mode = MODE_SELECTION |
|
730 |
self.SavedMode = False |
|
731 |
self.CurrentLanguage = "FBD" |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
732 |
|
814 | 733 |
if not self.Debug: |
734 |
self.Editor.SetDropTarget(ViewerDropTarget(self)) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
735 |
|
814 | 736 |
self.ElementRefreshList = [] |
737 |
self.ElementRefreshList_lock = Lock() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
738 |
|
814 | 739 |
dc = wx.ClientDC(self.Editor) |
2344
94045bfa2d94
use nice and pretty mono font in graphical languages (SFC, FBD, LD) as well
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2341
diff
changeset
|
740 |
while True: |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
741 |
font = wx.Font(faces["size"], wx.SWISS, wx.NORMAL, wx.NORMAL, faceName=faces["mono"]) |
814 | 742 |
dc.SetFont(font) |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
743 |
width, _height = dc.GetTextExtent("ABCDEFGHIJKLMNOPQRSTUVWXYZ") |
2344
94045bfa2d94
use nice and pretty mono font in graphical languages (SFC, FBD, LD) as well
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2341
diff
changeset
|
744 |
if width < 260: |
94045bfa2d94
use nice and pretty mono font in graphical languages (SFC, FBD, LD) as well
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2341
diff
changeset
|
745 |
break |
94045bfa2d94
use nice and pretty mono font in graphical languages (SFC, FBD, LD) as well
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2341
diff
changeset
|
746 |
faces["size"] -= 1 |
94045bfa2d94
use nice and pretty mono font in graphical languages (SFC, FBD, LD) as well
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2341
diff
changeset
|
747 |
self.Editor.SetFont(font) |
2229
3c94bac4526e
Fix 'DoGetTextExtent - invalid DC' error
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2177
diff
changeset
|
748 |
self.MiniTextDC = wx.MemoryDC(wx.EmptyBitmap(1, 1)) |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
749 |
self.MiniTextDC.SetFont(wx.Font(faces["size"] * 0.75, wx.SWISS, wx.NORMAL, wx.NORMAL, faceName=faces["helv"])) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
750 |
|
814 | 751 |
self.CurrentScale = None |
1123
55ed55ef7aea
Fixed bug on biggest Viewer zoom factor preventing them to be used on Windows
Laurent Bessard
parents:
1122
diff
changeset
|
752 |
self.SetScale(ZOOM_FACTORS.index(1.0), False) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
753 |
|
814 | 754 |
self.RefreshHighlightsTimer = wx.Timer(self, -1) |
755 |
self.Bind(wx.EVT_TIMER, self.OnRefreshHighlightsTimer, self.RefreshHighlightsTimer) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
756 |
|
814 | 757 |
self.ResetView() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
758 |
|
814 | 759 |
# Link Viewer event to corresponding methods |
760 |
self.Editor.Bind(wx.EVT_PAINT, self.OnPaint) |
|
761 |
self.Editor.Bind(wx.EVT_LEFT_DOWN, self.OnViewerLeftDown) |
|
762 |
self.Editor.Bind(wx.EVT_LEFT_UP, self.OnViewerLeftUp) |
|
763 |
self.Editor.Bind(wx.EVT_LEFT_DCLICK, self.OnViewerLeftDClick) |
|
764 |
self.Editor.Bind(wx.EVT_RIGHT_DOWN, self.OnViewerRightDown) |
|
765 |
self.Editor.Bind(wx.EVT_RIGHT_UP, self.OnViewerRightUp) |
|
766 |
self.Editor.Bind(wx.EVT_MIDDLE_DOWN, self.OnViewerMiddleDown) |
|
767 |
self.Editor.Bind(wx.EVT_MIDDLE_UP, self.OnViewerMiddleUp) |
|
768 |
self.Editor.Bind(wx.EVT_LEAVE_WINDOW, self.OnLeaveViewer) |
|
769 |
self.Editor.Bind(wx.EVT_MOTION, self.OnViewerMotion) |
|
770 |
self.Editor.Bind(wx.EVT_CHAR, self.OnChar) |
|
771 |
self.Editor.Bind(wx.EVT_SCROLLWIN, self.OnScrollWindow) |
|
772 |
self.Editor.Bind(wx.EVT_SCROLLWIN_THUMBRELEASE, self.OnScrollStop) |
|
773 |
self.Editor.Bind(wx.EVT_MOUSEWHEEL, self.OnMouseWheelWindow) |
|
774 |
self.Editor.Bind(wx.EVT_SIZE, self.OnMoveWindow) |
|
775 |
self.Editor.Bind(wx.EVT_MOUSE_EVENTS, self.OnViewerMouseEvent) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
776 |
|
814 | 777 |
# Destructor |
778 |
def __del__(self): |
|
779 |
DebugViewer.__del__(self) |
|
780 |
self.Flush() |
|
781 |
self.ResetView() |
|
782 |
self.RefreshHighlightsTimer.Stop() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
783 |
|
814 | 784 |
def SetCurrentCursor(self, cursor): |
785 |
if self.Mode != MODE_MOTION: |
|
786 |
if self.CurrentCursor != cursor: |
|
787 |
self.CurrentCursor = cursor |
|
788 |
self.Editor.SetCursor(CURSORS[cursor]) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
789 |
|
814 | 790 |
def GetScrolledRect(self, rect): |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
791 |
rect.x, rect.y = self.Editor.CalcScrolledPosition(int(rect.x * self.ViewScale[0]), |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
792 |
int(rect.y * self.ViewScale[1])) |
814 | 793 |
rect.width = int(rect.width * self.ViewScale[0]) + 2 |
794 |
rect.height = int(rect.height * self.ViewScale[1]) + 2 |
|
795 |
return rect |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
796 |
|
814 | 797 |
def GetTitle(self): |
798 |
if self.Debug: |
|
799 |
if len(self.InstancePath) > 15: |
|
800 |
return "..." + self.InstancePath[-12:] |
|
801 |
return self.InstancePath |
|
802 |
return EditorPanel.GetTitle(self) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
803 |
|
814 | 804 |
def GetScaling(self): |
805 |
return self.Scaling |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
806 |
|
828
319dac4c4fd3
Fix debug of Action and Transition defined in FBD and LD using Viewer
laurent
parents:
823
diff
changeset
|
807 |
def GetInstancePath(self, variable_base=False): |
319dac4c4fd3
Fix debug of Action and Transition defined in FBD and LD using Viewer
laurent
parents:
823
diff
changeset
|
808 |
if variable_base: |
319dac4c4fd3
Fix debug of Action and Transition defined in FBD and LD using Viewer
laurent
parents:
823
diff
changeset
|
809 |
words = self.TagName.split("::") |
319dac4c4fd3
Fix debug of Action and Transition defined in FBD and LD using Viewer
laurent
parents:
823
diff
changeset
|
810 |
if words[0] in ["A", "T"]: |
319dac4c4fd3
Fix debug of Action and Transition defined in FBD and LD using Viewer
laurent
parents:
823
diff
changeset
|
811 |
return ".".join(self.InstancePath.split(".")[:-1]) |
814 | 812 |
return self.InstancePath |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
813 |
|
814 | 814 |
def IsViewing(self, tagname): |
815 |
if self.Debug: |
|
816 |
return self.InstancePath == tagname |
|
817 |
return EditorPanel.IsViewing(self, tagname) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
818 |
|
814 | 819 |
# Returns a new id |
820 |
def GetNewId(self): |
|
821 |
self.current_id += 1 |
|
822 |
return self.current_id |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
823 |
|
814 | 824 |
def SetScale(self, scale_number, refresh=True, mouse_event=None): |
825 |
new_scale = max(0, min(scale_number, len(ZOOM_FACTORS) - 1)) |
|
826 |
if self.CurrentScale != new_scale: |
|
827 |
if refresh: |
|
828 |
dc = self.GetLogicalDC() |
|
829 |
self.CurrentScale = new_scale |
|
830 |
self.ViewScale = (ZOOM_FACTORS[self.CurrentScale], ZOOM_FACTORS[self.CurrentScale]) |
|
831 |
if refresh: |
|
832 |
self.Editor.Freeze() |
|
833 |
if mouse_event is None: |
|
834 |
client_size = self.Editor.GetClientSize() |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
835 |
mouse_pos = wx.Point(client_size[0] // 2, client_size[1] // 2) |
814 | 836 |
mouse_event = wx.MouseEvent(wx.EVT_MOUSEWHEEL.typeId) |
1498
b11045a2f17c
fix deprecation warnings about accessing properties m_x, m_y of wxKeyEvent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1481
diff
changeset
|
837 |
mouse_event.x = mouse_pos.x |
b11045a2f17c
fix deprecation warnings about accessing properties m_x, m_y of wxKeyEvent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1481
diff
changeset
|
838 |
mouse_event.y = mouse_pos.y |
814 | 839 |
else: |
840 |
mouse_pos = mouse_event.GetPosition() |
|
841 |
pos = mouse_event.GetLogicalPosition(dc) |
|
842 |
xmax = self.GetScrollRange(wx.HORIZONTAL) - self.GetScrollThumb(wx.HORIZONTAL) |
|
843 |
ymax = self.GetScrollRange(wx.VERTICAL) - self.GetScrollThumb(wx.VERTICAL) |
|
844 |
scrollx = max(0, round(pos.x * self.ViewScale[0] - mouse_pos.x) / SCROLLBAR_UNIT) |
|
845 |
scrolly = max(0, round(pos.y * self.ViewScale[1] - mouse_pos.y) / SCROLLBAR_UNIT) |
|
846 |
if scrollx > xmax or scrolly > ymax: |
|
847 |
self.RefreshScrollBars(max(0, scrollx - xmax), max(0, scrolly - ymax)) |
|
848 |
self.Scroll(scrollx, scrolly) |
|
849 |
else: |
|
850 |
self.Scroll(scrollx, scrolly) |
|
851 |
self.RefreshScrollBars() |
|
852 |
self.RefreshScaling(refresh) |
|
853 |
self.Editor.Thaw() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
854 |
|
814 | 855 |
def GetScale(self): |
856 |
return self.CurrentScale |
|
857 |
||
858 |
def GetViewScale(self): |
|
859 |
return self.ViewScale |
|
860 |
||
861 |
def GetLogicalDC(self, buffered=False): |
|
862 |
if buffered: |
|
863 |
bitmap = wx.EmptyBitmap(*self.Editor.GetClientSize()) |
|
864 |
dc = wx.MemoryDC(bitmap) |
|
865 |
else: |
|
866 |
dc = wx.ClientDC(self.Editor) |
|
867 |
dc.SetFont(self.GetFont()) |
|
2177
10aa87518401
Drop support for wxPython 2.6 and below
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1953
diff
changeset
|
868 |
self.Editor.DoPrepareDC(dc) |
814 | 869 |
dc.SetUserScale(self.ViewScale[0], self.ViewScale[1]) |
870 |
return dc |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
871 |
|
814 | 872 |
def RefreshRect(self, rect, eraseBackground=True): |
873 |
self.Editor.RefreshRect(rect, eraseBackground) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
874 |
|
814 | 875 |
def Scroll(self, x, y): |
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
876 |
if self.Debug and wx.Platform == '__WXMSW__': |
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
877 |
self.Editor.Freeze() |
814 | 878 |
self.Editor.Scroll(x, y) |
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
879 |
if self.Debug: |
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
880 |
if wx.Platform == '__WXMSW__': |
1208
d22fcdfae8d0
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1205
diff
changeset
|
881 |
self.Editor.Thaw() |
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
882 |
else: |
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
883 |
self.Editor.Refresh() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
884 |
|
814 | 885 |
def GetScrollPos(self, orientation): |
886 |
return self.Editor.GetScrollPos(orientation) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
887 |
|
814 | 888 |
def GetScrollRange(self, orientation): |
889 |
return self.Editor.GetScrollRange(orientation) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
890 |
|
814 | 891 |
def GetScrollThumb(self, orientation): |
892 |
return self.Editor.GetScrollThumb(orientation) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
893 |
|
814 | 894 |
def CalcUnscrolledPosition(self, x, y): |
895 |
return self.Editor.CalcUnscrolledPosition(x, y) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
896 |
|
814 | 897 |
def GetViewStart(self): |
898 |
return self.Editor.GetViewStart() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
899 |
|
814 | 900 |
def GetTextExtent(self, text): |
901 |
return self.Editor.GetTextExtent(text) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
902 |
|
814 | 903 |
def GetFont(self): |
904 |
return self.Editor.GetFont() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
905 |
|
814 | 906 |
def GetMiniTextExtent(self, text): |
907 |
return self.MiniTextDC.GetTextExtent(text) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
908 |
|
814 | 909 |
def GetMiniFont(self): |
910 |
return self.MiniTextDC.GetFont() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
911 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
912 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
913 |
# Element management functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
914 |
# ------------------------------------------------------------------------------- |
814 | 915 |
|
916 |
def AddBlock(self, block): |
|
917 |
self.Blocks[block.GetId()] = block |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
918 |
|
814 | 919 |
def AddWire(self, wire): |
920 |
self.wire_id += 1 |
|
921 |
self.Wires[wire] = self.wire_id |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
922 |
|
814 | 923 |
def AddComment(self, comment): |
924 |
self.Comments[comment.GetId()] = comment |
|
925 |
||
926 |
def IsBlock(self, block): |
|
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
832
diff
changeset
|
927 |
if block is not None: |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
832
diff
changeset
|
928 |
return self.Blocks.get(block.GetId(), False) |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
832
diff
changeset
|
929 |
return False |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
930 |
|
814 | 931 |
def IsWire(self, wire): |
932 |
return self.Wires.get(wire, False) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
933 |
|
814 | 934 |
def IsComment(self, comment): |
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
832
diff
changeset
|
935 |
if comment is not None: |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
832
diff
changeset
|
936 |
return self.Comments.get(comment.GetId(), False) |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
832
diff
changeset
|
937 |
return False |
814 | 938 |
|
939 |
def RemoveBlock(self, block): |
|
940 |
self.Blocks.pop(block.GetId()) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
941 |
|
814 | 942 |
def RemoveWire(self, wire): |
943 |
self.Wires.pop(wire) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
944 |
|
814 | 945 |
def RemoveComment(self, comment): |
946 |
self.Comments.pop(comment.GetId()) |
|
947 |
||
948 |
def GetElements(self, sort_blocks=False, sort_wires=False, sort_comments=False): |
|
949 |
blocks = self.Blocks.values() |
|
950 |
wires = self.Wires.keys() |
|
951 |
comments = self.Comments.values() |
|
952 |
if sort_blocks: |
|
953 |
blocks.sort(lambda x, y: cmp(x.GetId(), y.GetId())) |
|
954 |
if sort_wires: |
|
955 |
wires.sort(lambda x, y: cmp(self.Wires[x], self.Wires[y])) |
|
956 |
if sort_comments: |
|
957 |
comments.sort(lambda x, y: cmp(x.GetId(), y.GetId())) |
|
958 |
return blocks + wires + comments |
|
959 |
||
1605
0b6b60241230
fix issue that in Debug mode LD instance doesn't show correctly its state after
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1599
diff
changeset
|
960 |
def GetContinuationByName(self, name): |
0b6b60241230
fix issue that in Debug mode LD instance doesn't show correctly its state after
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1599
diff
changeset
|
961 |
blocks = [] |
0b6b60241230
fix issue that in Debug mode LD instance doesn't show correctly its state after
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1599
diff
changeset
|
962 |
for block in self.Blocks.itervalues(): |
0b6b60241230
fix issue that in Debug mode LD instance doesn't show correctly its state after
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1599
diff
changeset
|
963 |
if isinstance(block, FBD_Connector) and\ |
0b6b60241230
fix issue that in Debug mode LD instance doesn't show correctly its state after
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1599
diff
changeset
|
964 |
block.GetType() == CONTINUATION and\ |
0b6b60241230
fix issue that in Debug mode LD instance doesn't show correctly its state after
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1599
diff
changeset
|
965 |
block.GetName() == name: |
0b6b60241230
fix issue that in Debug mode LD instance doesn't show correctly its state after
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1599
diff
changeset
|
966 |
blocks.append(block) |
0b6b60241230
fix issue that in Debug mode LD instance doesn't show correctly its state after
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1599
diff
changeset
|
967 |
return blocks |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1711
diff
changeset
|
968 |
|
814 | 969 |
def GetConnectorByName(self, name): |
970 |
for block in self.Blocks.itervalues(): |
|
971 |
if isinstance(block, FBD_Connector) and\ |
|
972 |
block.GetType() == CONNECTOR and\ |
|
973 |
block.GetName() == name: |
|
974 |
return block |
|
975 |
return None |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
976 |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
977 |
def RefreshVisibleElements(self, xp=None, yp=None): |
814 | 978 |
x, y = self.Editor.CalcUnscrolledPosition(0, 0) |
979 |
if xp is not None: |
|
980 |
x = xp * self.Editor.GetScrollPixelsPerUnit()[0] |
|
981 |
if yp is not None: |
|
982 |
y = yp * self.Editor.GetScrollPixelsPerUnit()[1] |
|
983 |
width, height = self.Editor.GetClientSize() |
|
984 |
screen = wx.Rect(int(x / self.ViewScale[0]), int(y / self.ViewScale[1]), |
|
985 |
int(width / self.ViewScale[0]), int(height / self.ViewScale[1])) |
|
986 |
for comment in self.Comments.itervalues(): |
|
987 |
comment.TestVisible(screen) |
|
988 |
for wire in self.Wires.iterkeys(): |
|
989 |
wire.TestVisible(screen) |
|
990 |
for block in self.Blocks.itervalues(): |
|
991 |
block.TestVisible(screen) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
992 |
|
814 | 993 |
def GetElementIECPath(self, element): |
994 |
iec_path = None |
|
828
319dac4c4fd3
Fix debug of Action and Transition defined in FBD and LD using Viewer
laurent
parents:
823
diff
changeset
|
995 |
instance_path = self.GetInstancePath(True) |
1166
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
996 |
if isinstance(element, (Wire, Connector)): |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
997 |
if isinstance(element, Wire): |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
998 |
element = element.EndConnected |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
999 |
block = element.GetParentBlock() |
814 | 1000 |
if isinstance(block, FBD_Block): |
1001 |
blockname = block.GetName() |
|
1166
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
1002 |
connectorname = element.GetName() |
814 | 1003 |
if blockname != "": |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1004 |
iec_path = "%s.%s.%s" % (instance_path, blockname, connectorname) |
814 | 1005 |
else: |
1006 |
if connectorname == "": |
|
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1007 |
iec_path = "%s.%s%d" % (instance_path, block.GetType(), block.GetId()) |
814 | 1008 |
else: |
2804
a6be58a1a8b7
Fixed one more sequel of 5f79b194fa63 'SVGHMI: filter out temporary variables created while generating ST code out of FBD.'
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2579
diff
changeset
|
1009 |
iec_path = "%s._TMP_%s%d_%s" % (instance_path, block.GetType(), block.GetId(), connectorname) |
814 | 1010 |
elif isinstance(block, FBD_Variable): |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1011 |
iec_path = "%s.%s" % (instance_path, block.GetName()) |
814 | 1012 |
elif isinstance(block, FBD_Connector): |
1013 |
connection = self.GetConnectorByName(block.GetName()) |
|
1014 |
if connection is not None: |
|
1015 |
connector = connection.GetConnector() |
|
1016 |
if len(connector.Wires) == 1: |
|
1017 |
iec_path = self.GetElementIECPath(connector.Wires[0][0]) |
|
1018 |
elif isinstance(element, LD_Contact): |
|
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1019 |
iec_path = "%s.%s" % (instance_path, element.GetName()) |
814 | 1020 |
elif isinstance(element, SFC_Step): |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1021 |
iec_path = "%s.%s.X" % (instance_path, element.GetName()) |
814 | 1022 |
elif isinstance(element, SFC_Transition): |
1023 |
connectors = element.GetConnectors() |
|
1024 |
previous_steps = self.GetPreviousSteps(connectors["inputs"]) |
|
1025 |
next_steps = self.GetNextSteps(connectors["outputs"]) |
|
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1026 |
iec_path = "%s.%s->%s" % (instance_path, ",".join(previous_steps), ",".join(next_steps)) |
814 | 1027 |
return iec_path |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1028 |
|
1377
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1029 |
def GetWireModifier(self, wire): |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1030 |
connector = wire.EndConnected |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1031 |
block = connector.GetParentBlock() |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1032 |
if isinstance(block, FBD_Connector): |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1033 |
connection = self.GetConnectorByName(block.GetName()) |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1034 |
if connection is not None: |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1035 |
connector = connection.GetConnector() |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1036 |
if len(connector.Wires) == 1: |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1037 |
return self.GetWireModifier(connector.Wires[0][0]) |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1038 |
else: |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1039 |
if connector.IsNegated(): |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1040 |
return "negated" |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1041 |
else: |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1042 |
return connector.GetEdge() |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1043 |
return "none" |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1044 |
|
1644
976ce8c6195d
Correct element size, if block type or variable name is wider than block width.
Surkov Sergey <surkovsv93@gmail.com>
parents:
1619
diff
changeset
|
1045 |
def CorrectElementSize(self, element, width, height): |
976ce8c6195d
Correct element size, if block type or variable name is wider than block width.
Surkov Sergey <surkovsv93@gmail.com>
parents:
1619
diff
changeset
|
1046 |
min_width, min_height = element.GetMinSize() |
976ce8c6195d
Correct element size, if block type or variable name is wider than block width.
Surkov Sergey <surkovsv93@gmail.com>
parents:
1619
diff
changeset
|
1047 |
if width < min_width: |
976ce8c6195d
Correct element size, if block type or variable name is wider than block width.
Surkov Sergey <surkovsv93@gmail.com>
parents:
1619
diff
changeset
|
1048 |
width = min_width |
976ce8c6195d
Correct element size, if block type or variable name is wider than block width.
Surkov Sergey <surkovsv93@gmail.com>
parents:
1619
diff
changeset
|
1049 |
if height < min_height: |
976ce8c6195d
Correct element size, if block type or variable name is wider than block width.
Surkov Sergey <surkovsv93@gmail.com>
parents:
1619
diff
changeset
|
1050 |
height = min_height |
976ce8c6195d
Correct element size, if block type or variable name is wider than block width.
Surkov Sergey <surkovsv93@gmail.com>
parents:
1619
diff
changeset
|
1051 |
if element.Size != (width, height): |
976ce8c6195d
Correct element size, if block type or variable name is wider than block width.
Surkov Sergey <surkovsv93@gmail.com>
parents:
1619
diff
changeset
|
1052 |
element.SetSize(width, height) |
976ce8c6195d
Correct element size, if block type or variable name is wider than block width.
Surkov Sergey <surkovsv93@gmail.com>
parents:
1619
diff
changeset
|
1053 |
element.RefreshModel() |
976ce8c6195d
Correct element size, if block type or variable name is wider than block width.
Surkov Sergey <surkovsv93@gmail.com>
parents:
1619
diff
changeset
|
1054 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1055 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1056 |
# Reset functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1057 |
# ------------------------------------------------------------------------------- |
814 | 1058 |
|
1059 |
# Resets Viewer lists |
|
1060 |
def ResetView(self): |
|
1061 |
self.Blocks = {} |
|
1062 |
self.Wires = {} |
|
1063 |
self.Comments = {} |
|
1064 |
self.Subscribed = {} |
|
1065 |
self.SelectedElement = None |
|
1066 |
self.HighlightedElement = None |
|
1067 |
self.ToolTipElement = None |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1068 |
|
814 | 1069 |
def Flush(self): |
1205
638d1d430d24
Fixed bug Viewer not refreshed when debugging
Laurent Bessard
parents:
1204
diff
changeset
|
1070 |
self.UnsubscribeAllDataConsumers(tick=False) |
814 | 1071 |
for block in self.Blocks.itervalues(): |
1072 |
block.Flush() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1073 |
|
814 | 1074 |
# Remove all elements |
1075 |
def CleanView(self): |
|
1076 |
for block in self.Blocks.itervalues(): |
|
1077 |
block.Clean() |
|
1078 |
self.ResetView() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1079 |
|
814 | 1080 |
# Changes Viewer mode |
1081 |
def SetMode(self, mode): |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1082 |
if self.Mode != mode or mode == MODE_SELECTION: |
814 | 1083 |
if self.Mode == MODE_MOTION: |
1084 |
wx.CallAfter(self.Editor.SetCursor, wx.NullCursor) |
|
1085 |
self.Mode = mode |
|
1086 |
self.SavedMode = False |
|
1087 |
else: |
|
1088 |
self.SavedMode = True |
|
1089 |
# Reset selection |
|
1090 |
if self.Mode != MODE_SELECTION and self.SelectedElement: |
|
1091 |
self.SelectedElement.SetSelected(False) |
|
1092 |
self.SelectedElement = None |
|
1093 |
if self.Mode == MODE_MOTION: |
|
1094 |
wx.CallAfter(self.Editor.SetCursor, wx.StockCursor(wx.CURSOR_HAND)) |
|
1095 |
self.SavedMode = True |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1096 |
|
814 | 1097 |
# Return current drawing mode |
1098 |
def GetDrawingMode(self): |
|
1099 |
return self.ParentWindow.GetDrawingMode() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1100 |
|
814 | 1101 |
# Buffer the last model state |
1102 |
def RefreshBuffer(self): |
|
1103 |
self.Controler.BufferProject() |
|
1104 |
if self.ParentWindow: |
|
1105 |
self.ParentWindow.RefreshTitle() |
|
1106 |
self.ParentWindow.RefreshFileMenu() |
|
1107 |
self.ParentWindow.RefreshEditMenu() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1108 |
|
814 | 1109 |
def StartBuffering(self): |
1110 |
if not self.Buffering: |
|
1111 |
self.Buffering = True |
|
1112 |
self.Controler.StartBuffering() |
|
1113 |
if self.ParentWindow: |
|
1114 |
self.ParentWindow.RefreshTitle() |
|
1115 |
self.ParentWindow.RefreshFileMenu() |
|
1116 |
self.ParentWindow.RefreshEditMenu() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1117 |
|
814 | 1118 |
def ResetBuffer(self): |
1119 |
if self.Buffering: |
|
1120 |
self.Controler.EndBuffering() |
|
1121 |
self.Buffering = False |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1122 |
|
814 | 1123 |
def GetBufferState(self): |
1124 |
if not self.Debug: |
|
1125 |
return self.Controler.GetBufferState() |
|
1126 |
return False, False |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1127 |
|
814 | 1128 |
def Undo(self): |
1129 |
if not self.Debug: |
|
1130 |
self.Controler.LoadPrevious() |
|
1131 |
self.ParentWindow.CloseTabsWithoutModel() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1132 |
|
814 | 1133 |
def Redo(self): |
1134 |
if not self.Debug: |
|
1135 |
self.Controler.LoadNext() |
|
1136 |
self.ParentWindow.CloseTabsWithoutModel() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1137 |
|
814 | 1138 |
def HasNoModel(self): |
1139 |
if not self.Debug: |
|
1140 |
return self.Controler.GetEditedElement(self.TagName) is None |
|
1141 |
return False |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1142 |
|
814 | 1143 |
# Refresh the current scaling |
1144 |
def RefreshScaling(self, refresh=True): |
|
1145 |
properties = self.Controler.GetProjectProperties(self.Debug) |
|
1146 |
scaling = properties["scaling"][self.CurrentLanguage] |
|
1147 |
if scaling[0] != 0 and scaling[1] != 0: |
|
1148 |
self.Scaling = scaling |
|
1149 |
if self.DrawGrid: |
|
1150 |
width = max(2, int(scaling[0] * self.ViewScale[0])) |
|
1151 |
height = max(2, int(scaling[1] * self.ViewScale[1])) |
|
1152 |
bitmap = wx.EmptyBitmap(width, height) |
|
1153 |
dc = wx.MemoryDC(bitmap) |
|
1154 |
dc.SetBackground(wx.Brush(self.Editor.GetBackgroundColour())) |
|
1155 |
dc.Clear() |
|
1156 |
dc.SetPen(MiterPen(wx.Colour(180, 180, 180))) |
|
1157 |
dc.DrawPoint(0, 0) |
|
1158 |
self.GridBrush = wx.BrushFromBitmap(bitmap) |
|
1159 |
else: |
|
1160 |
self.GridBrush = wx.TRANSPARENT_BRUSH |
|
1161 |
else: |
|
1162 |
self.Scaling = None |
|
1163 |
self.GridBrush = wx.TRANSPARENT_BRUSH |
|
1164 |
page_size = properties["pageSize"] |
|
1165 |
if page_size != (0, 0): |
|
1166 |
self.PageSize = map(int, page_size) |
|
1167 |
self.PagePen = MiterPen(wx.Colour(180, 180, 180)) |
|
1168 |
else: |
|
1169 |
self.PageSize = None |
|
1170 |
self.PagePen = wx.TRANSPARENT_PEN |
|
1171 |
if refresh: |
|
1172 |
self.RefreshVisibleElements() |
|
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
1173 |
self.Editor.Refresh(False) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1174 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1175 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1176 |
# Refresh functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1177 |
# ------------------------------------------------------------------------------- |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1178 |
|
814 | 1179 |
def ElementNeedRefresh(self, element): |
1180 |
self.ElementRefreshList_lock.acquire() |
|
1181 |
self.ElementRefreshList.append(element) |
|
1182 |
self.ElementRefreshList_lock.release() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1183 |
|
1431 | 1184 |
def NewDataAvailable(self, ticks): |
1366
3756ae754713
Fixed refresh speed so that interface is not blocked when debugging
Laurent Bessard
parents:
1363
diff
changeset
|
1185 |
if self.IsShown(): |
3756ae754713
Fixed refresh speed so that interface is not blocked when debugging
Laurent Bessard
parents:
1363
diff
changeset
|
1186 |
refresh_rect = None |
3756ae754713
Fixed refresh speed so that interface is not blocked when debugging
Laurent Bessard
parents:
1363
diff
changeset
|
1187 |
self.ElementRefreshList_lock.acquire() |
3756ae754713
Fixed refresh speed so that interface is not blocked when debugging
Laurent Bessard
parents:
1363
diff
changeset
|
1188 |
for element in self.ElementRefreshList: |
3756ae754713
Fixed refresh speed so that interface is not blocked when debugging
Laurent Bessard
parents:
1363
diff
changeset
|
1189 |
if refresh_rect is None: |
3756ae754713
Fixed refresh speed so that interface is not blocked when debugging
Laurent Bessard
parents:
1363
diff
changeset
|
1190 |
refresh_rect = element.GetRedrawRect() |
3756ae754713
Fixed refresh speed so that interface is not blocked when debugging
Laurent Bessard
parents:
1363
diff
changeset
|
1191 |
else: |
3756ae754713
Fixed refresh speed so that interface is not blocked when debugging
Laurent Bessard
parents:
1363
diff
changeset
|
1192 |
refresh_rect.Union(element.GetRedrawRect()) |
3756ae754713
Fixed refresh speed so that interface is not blocked when debugging
Laurent Bessard
parents:
1363
diff
changeset
|
1193 |
self.ElementRefreshList = [] |
3756ae754713
Fixed refresh speed so that interface is not blocked when debugging
Laurent Bessard
parents:
1363
diff
changeset
|
1194 |
self.ElementRefreshList_lock.release() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1195 |
|
1366
3756ae754713
Fixed refresh speed so that interface is not blocked when debugging
Laurent Bessard
parents:
1363
diff
changeset
|
1196 |
if refresh_rect is not None: |
3756ae754713
Fixed refresh speed so that interface is not blocked when debugging
Laurent Bessard
parents:
1363
diff
changeset
|
1197 |
self.RefreshRect(self.GetScrolledRect(refresh_rect), False) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1198 |
|
1176
f4b434672204
Moved and rewrote DebugViewer and DebusDataConsumer classes
Laurent Bessard
parents:
1170
diff
changeset
|
1199 |
def SubscribeAllDataConsumers(self): |
1201
3907f10efcf4
Fixed bug Viewer not refreshed when debugging
Laurent Bessard
parents:
1176
diff
changeset
|
1200 |
self.RefreshView() |
1176
f4b434672204
Moved and rewrote DebugViewer and DebusDataConsumer classes
Laurent Bessard
parents:
1170
diff
changeset
|
1201 |
DebugViewer.SubscribeAllDataConsumers(self) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1202 |
|
814 | 1203 |
# Refresh Viewer elements |
1204 |
def RefreshView(self, variablepanel=True, selection=None): |
|
1205 |
EditorPanel.RefreshView(self, variablepanel) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1206 |
|
814 | 1207 |
if self.ToolTipElement is not None: |
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
1208 |
self.ToolTipElement.DestroyToolTip() |
814 | 1209 |
self.ToolTipElement = None |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1210 |
|
814 | 1211 |
self.Inhibit(True) |
1212 |
self.current_id = 0 |
|
1213 |
# Start by reseting Viewer |
|
1214 |
self.Flush() |
|
1215 |
self.ResetView() |
|
1216 |
self.ResetBuffer() |
|
1846
14b40afccd69
remove unused variables found by pylint
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1841
diff
changeset
|
1217 |
|
814 | 1218 |
# List of ids of already loaded blocks |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1219 |
instances = self.Controler.GetEditedElementInstancesInfos(self.TagName, debug=self.Debug) |
814 | 1220 |
# Load Blocks until they are all loaded |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1221 |
while len(instances) > 0: |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1222 |
self.loadInstance(instances.popitem(0)[1], instances, selection) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1223 |
|
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
|
1224 |
if selection is not None and isinstance(self.SelectedElement, Graphic_Group): |
1226
93e7a8abce5e
Fixed lag when selecting all elements using CTRL+A or after paste a lot of blocks
Laurent Bessard
parents:
1225
diff
changeset
|
1225 |
self.SelectedElement.RefreshWireExclusion() |
93e7a8abce5e
Fixed lag when selecting all elements using CTRL+A or after paste a lot of blocks
Laurent Bessard
parents:
1225
diff
changeset
|
1226 |
self.SelectedElement.RefreshBoundingBox() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1227 |
|
814 | 1228 |
self.RefreshScrollBars() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1229 |
|
1674
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
1230 |
if self.TagName.split("::")[0] == "A" and self.Debug: |
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
1231 |
self.AddDataConsumer("%s.Q" % self.InstancePath.upper(), self.InstanceName) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1711
diff
changeset
|
1232 |
|
814 | 1233 |
for wire in self.Wires: |
1234 |
if not wire.IsConnectedCompatible(): |
|
1235 |
wire.SetValid(False) |
|
1236 |
if self.Debug: |
|
1237 |
iec_path = self.GetElementIECPath(wire) |
|
1238 |
if iec_path is None: |
|
1239 |
block = wire.EndConnected.GetParentBlock() |
|
1240 |
if isinstance(block, LD_PowerRail): |
|
1241 |
wire.SetValue(True) |
|
1242 |
elif self.AddDataConsumer(iec_path.upper(), wire) is None: |
|
1243 |
wire.SetValue("undefined") |
|
1377
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1244 |
else: |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1366
diff
changeset
|
1245 |
wire.SetModifier(self.GetWireModifier(wire)) |
814 | 1246 |
|
1247 |
if self.Debug: |
|
1248 |
for block in self.Blocks.itervalues(): |
|
1249 |
block.SpreadCurrent() |
|
1166
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
1250 |
if isinstance(block, FBD_Block): |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
1251 |
for output_connector in block.GetConnectors()["outputs"]: |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
1252 |
if len(output_connector.GetWires()) == 0: |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
1253 |
iec_path = self.GetElementIECPath(output_connector) |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
1254 |
if iec_path is not None: |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
1255 |
self.AddDataConsumer(iec_path.upper(), output_connector) |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
1256 |
else: |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
1257 |
iec_path = self.GetElementIECPath(block) |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
1258 |
if iec_path is not None: |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1141
diff
changeset
|
1259 |
self.AddDataConsumer(iec_path.upper(), block) |
814 | 1260 |
|
1261 |
self.Inhibit(False) |
|
1262 |
self.RefreshVisibleElements() |
|
1263 |
self.ShowHighlights() |
|
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
1264 |
self.Editor.Refresh(False) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1265 |
|
814 | 1266 |
def GetPreviousSteps(self, connectors): |
1267 |
steps = [] |
|
1268 |
for connector in connectors: |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1269 |
for wire, _handle in connector.GetWires(): |
814 | 1270 |
previous = wire.GetOtherConnected(connector).GetParentBlock() |
1271 |
if isinstance(previous, SFC_Step): |
|
1272 |
steps.append(previous.GetName()) |
|
1273 |
elif isinstance(previous, SFC_Divergence) and previous.GetType() in [SIMULTANEOUS_CONVERGENCE, SELECTION_DIVERGENCE]: |
|
1274 |
connectors = previous.GetConnectors() |
|
1275 |
steps.extend(self.GetPreviousSteps(connectors["inputs"])) |
|
1276 |
return steps |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1277 |
|
814 | 1278 |
def GetNextSteps(self, connectors): |
1279 |
steps = [] |
|
1280 |
for connector in connectors: |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1281 |
for wire, _handle in connector.GetWires(): |
814 | 1282 |
next = wire.GetOtherConnected(connector).GetParentBlock() |
1283 |
if isinstance(next, SFC_Step): |
|
1284 |
steps.append(next.GetName()) |
|
1285 |
elif isinstance(next, SFC_Jump): |
|
1286 |
steps.append(next.GetTarget()) |
|
1287 |
elif isinstance(next, SFC_Divergence) and next.GetType() in [SIMULTANEOUS_DIVERGENCE, SELECTION_CONVERGENCE]: |
|
1288 |
connectors = next.GetConnectors() |
|
1289 |
steps.extend(self.GetNextSteps(connectors["outputs"])) |
|
1290 |
return steps |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1291 |
|
814 | 1292 |
def GetMaxSize(self): |
1293 |
maxx = maxy = 0 |
|
1294 |
for element in self.GetElements(): |
|
1295 |
bbox = element.GetBoundingBox() |
|
1296 |
maxx = max(maxx, bbox.x + bbox.width) |
|
1297 |
maxy = max(maxy, bbox.y + bbox.height) |
|
1298 |
return maxx, maxy |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1299 |
|
814 | 1300 |
def RefreshScrollBars(self, width_incr=0, height_incr=0): |
1301 |
xstart, ystart = self.GetViewStart() |
|
1302 |
window_size = self.Editor.GetClientSize() |
|
1303 |
maxx, maxy = self.GetMaxSize() |
|
1304 |
maxx = max(maxx + WINDOW_BORDER, (xstart * SCROLLBAR_UNIT + window_size[0]) / self.ViewScale[0]) |
|
1305 |
maxy = max(maxy + WINDOW_BORDER, (ystart * SCROLLBAR_UNIT + window_size[1]) / self.ViewScale[1]) |
|
1306 |
if self.rubberBand.IsShown(): |
|
1307 |
extent = self.rubberBand.GetCurrentExtent() |
|
1308 |
maxx = max(maxx, extent.x + extent.width) |
|
1309 |
maxy = max(maxy, extent.y + extent.height) |
|
1310 |
maxx = int(maxx * self.ViewScale[0]) |
|
1311 |
maxy = int(maxy * self.ViewScale[1]) |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1312 |
self.Editor.SetScrollbars( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1313 |
SCROLLBAR_UNIT, SCROLLBAR_UNIT, |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1314 |
round(maxx / SCROLLBAR_UNIT) + width_incr, |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1315 |
round(maxy / SCROLLBAR_UNIT) + height_incr, |
814 | 1316 |
xstart, ystart, True) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1317 |
|
814 | 1318 |
def EnsureVisible(self, block): |
1319 |
xstart, ystart = self.GetViewStart() |
|
1320 |
window_size = self.Editor.GetClientSize() |
|
1321 |
block_bbx = block.GetBoundingBox() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1322 |
|
814 | 1323 |
screen_minx, screen_miny = xstart * SCROLLBAR_UNIT, ystart * SCROLLBAR_UNIT |
1324 |
screen_maxx, screen_maxy = screen_minx + window_size[0], screen_miny + window_size[1] |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1325 |
block_minx = int(block_bbx.x * self.ViewScale[0]) |
814 | 1326 |
block_miny = int(block_bbx.y * self.ViewScale[1]) |
1327 |
block_maxx = int(round((block_bbx.x + block_bbx.width) * self.ViewScale[0])) |
|
1328 |
block_maxy = int(round((block_bbx.y + block_bbx.height) * self.ViewScale[1])) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1329 |
|
814 | 1330 |
xpos, ypos = xstart, ystart |
1331 |
if block_minx < screen_minx and block_maxx < screen_maxx: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1332 |
xpos -= (screen_minx - block_minx) // SCROLLBAR_UNIT + 1 |
814 | 1333 |
elif block_maxx > screen_maxx and block_minx > screen_minx: |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1334 |
xpos += (block_maxx - screen_maxx) // SCROLLBAR_UNIT + 1 |
814 | 1335 |
if block_miny < screen_miny and block_maxy < screen_maxy: |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1336 |
ypos -= (screen_miny - block_miny) // SCROLLBAR_UNIT + 1 |
814 | 1337 |
elif block_maxy > screen_maxy and block_miny > screen_miny: |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1338 |
ypos += (block_maxy - screen_maxy) // SCROLLBAR_UNIT + 1 |
814 | 1339 |
self.Scroll(xpos, ypos) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1340 |
|
814 | 1341 |
def SelectInGroup(self, element): |
1342 |
element.SetSelected(True) |
|
1343 |
if self.SelectedElement is None: |
|
1344 |
self.SelectedElement = element |
|
1345 |
elif isinstance(self.SelectedElement, Graphic_Group): |
|
1226
93e7a8abce5e
Fixed lag when selecting all elements using CTRL+A or after paste a lot of blocks
Laurent Bessard
parents:
1225
diff
changeset
|
1346 |
self.SelectedElement.AddElement(element) |
814 | 1347 |
else: |
1348 |
group = Graphic_Group(self) |
|
1226
93e7a8abce5e
Fixed lag when selecting all elements using CTRL+A or after paste a lot of blocks
Laurent Bessard
parents:
1225
diff
changeset
|
1349 |
group.AddElement(self.SelectedElement) |
93e7a8abce5e
Fixed lag when selecting all elements using CTRL+A or after paste a lot of blocks
Laurent Bessard
parents:
1225
diff
changeset
|
1350 |
group.AddElement(element) |
814 | 1351 |
self.SelectedElement = group |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1352 |
|
814 | 1353 |
# Load instance from given informations |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1354 |
def loadInstance(self, instance, remaining_instances, selection): |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1355 |
self.current_id = max(self.current_id, instance.id) |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1356 |
creation_function = ElementCreationFunctions.get(instance.type, None) |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
1357 |
connectors = {"inputs": [], "outputs": []} |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1358 |
specific_values = instance.specific_values |
814 | 1359 |
if creation_function is not None: |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1360 |
element = creation_function(self, instance.id, specific_values) |
814 | 1361 |
if isinstance(element, SFC_Step): |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1362 |
if len(instance.inputs) > 0: |
814 | 1363 |
element.AddInput() |
1364 |
else: |
|
1365 |
element.RemoveInput() |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1366 |
if len(instance.outputs) > 0: |
814 | 1367 |
element.AddOutput() |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1368 |
if isinstance(element, SFC_Transition) and specific_values.condition_type == "connection": |
814 | 1369 |
connector = element.GetConditionConnector() |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1370 |
self.CreateWires(connector, instance.id, specific_values.connection.links, remaining_instances, selection) |
814 | 1371 |
else: |
1372 |
executionControl = False |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1373 |
for input in instance.inputs: |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1374 |
input_edge = MODIFIER_VALUE(input.edge) |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1375 |
if input.negated: |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1376 |
connectors["inputs"].append((input.name, None, "negated")) |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1377 |
elif input_edge: |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1378 |
connectors["inputs"].append((input.name, None, input_edge)) |
814 | 1379 |
else: |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1380 |
connectors["inputs"].append((input.name, None, "none")) |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1381 |
for output in instance.outputs: |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1382 |
output_edge = MODIFIER_VALUE(output.edge) |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1383 |
if output.negated: |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1384 |
connectors["outputs"].append((output.name, None, "negated")) |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1385 |
elif output_edge: |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1386 |
connectors["outputs"].append((output.name, None, output_edge)) |
814 | 1387 |
else: |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1388 |
connectors["outputs"].append((output.name, None, "none")) |
814 | 1389 |
if len(connectors["inputs"]) > 0 and connectors["inputs"][0][0] == "EN": |
1390 |
connectors["inputs"].pop(0) |
|
1391 |
executionControl = True |
|
1392 |
if len(connectors["outputs"]) > 0 and connectors["outputs"][0][0] == "ENO": |
|
1393 |
connectors["outputs"].pop(0) |
|
1394 |
executionControl = True |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1395 |
block_name = specific_values.name if specific_values.name is not None else "" |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1396 |
element = FBD_Block( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1397 |
self, instance.type, block_name, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1398 |
instance.id, len(connectors["inputs"]), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1399 |
connectors=connectors, executionControl=executionControl, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1400 |
executionOrder=specific_values.execution_order) |
814 | 1401 |
if isinstance(element, Comment): |
1402 |
self.AddComment(element) |
|
1403 |
else: |
|
1404 |
self.AddBlock(element) |
|
1405 |
connectors = element.GetConnectors() |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1406 |
element.SetPosition(instance.x, instance.y) |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1407 |
element.SetSize(instance.width, instance.height) |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1408 |
for i, output_connector in enumerate(instance.outputs): |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1409 |
connector_pos = wx.Point(*output_connector.position) |
1141
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1410 |
if isinstance(element, FBD_Block): |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1411 |
connector = element.GetConnector(connector_pos, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1412 |
output_name=output_connector.name) |
1141
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1413 |
elif i < len(connectors["outputs"]): |
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1414 |
connector = connectors["outputs"][i] |
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1415 |
else: |
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1416 |
connector = None |
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1417 |
if connector is not None: |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1418 |
if output_connector.negated: |
1141
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1419 |
connector.SetNegated(True) |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1420 |
if output_connector.edge is not None: |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1421 |
connector.SetEdge(output_connector.edge) |
1141
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1422 |
if connectors["outputs"].index(connector) == i: |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1423 |
connector.SetPosition(connector_pos) |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1424 |
for i, input_connector in enumerate(instance.inputs): |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1425 |
connector_pos = wx.Point(*input_connector.position) |
1141
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1426 |
if isinstance(element, FBD_Block): |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1427 |
connector = element.GetConnector(connector_pos, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1428 |
input_name=input_connector.name) |
1141
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1429 |
elif i < len(connectors["inputs"]): |
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1430 |
connector = connectors["inputs"][i] |
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1431 |
else: |
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1432 |
connector = None |
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1433 |
if connector is not None: |
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1434 |
if connectors["inputs"].index(connector) == i: |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1435 |
connector.SetPosition(connector_pos) |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1436 |
if input_connector.negated: |
1141
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1437 |
connector.SetNegated(True) |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1438 |
if input_connector.edge is not None: |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1439 |
connector.SetEdge(input_connector.edge) |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1440 |
if not self.CreateWires(connector, instance.id, input_connector.links, remaining_instances, selection): |
1141
5069a28486b9
Fixed bug connection disappear when removing variable from interface of an already used POU
Laurent Bessard
parents:
1135
diff
changeset
|
1441 |
element.RefreshModel() |
1130
f96e0254f0ce
Fixed loading of Blocks in Viewer when block interface have changed
Laurent Bessard
parents:
1123
diff
changeset
|
1442 |
element.RefreshConnectors() |
1644
976ce8c6195d
Correct element size, if block type or variable name is wider than block width.
Surkov Sergey <surkovsv93@gmail.com>
parents:
1619
diff
changeset
|
1443 |
self.CorrectElementSize(element, instance.width, instance.height) |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1444 |
if selection is not None and selection[0].get(instance.id, False): |
814 | 1445 |
self.SelectInGroup(element) |
1446 |
||
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1447 |
def CreateWires(self, start_connector, id, links, remaining_instances, selection=None): |
1135
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1448 |
links_connected = True |
814 | 1449 |
for link in links: |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1450 |
refLocalId = link.refLocalId |
1135
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1451 |
if refLocalId is None: |
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1452 |
links_connected = False |
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1453 |
continue |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1454 |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1455 |
new_instance = remaining_instances.pop(refLocalId, None) |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1456 |
if new_instance is not None: |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1457 |
self.loadInstance(new_instance, remaining_instances, selection) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1458 |
|
1135
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1459 |
connected = self.FindElementById(refLocalId) |
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1460 |
if connected is None: |
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1461 |
links_connected = False |
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1462 |
continue |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1463 |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1464 |
points = link.points |
1335
1b9610fc1e6b
Fixed bug when loading graphic pou connection between blocks and no points for drawing wire are defined
Laurent Bessard
parents:
1331
diff
changeset
|
1465 |
end_connector = connected.GetConnector( |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1466 |
wx.Point(points[-1].x, points[-1].y) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1467 |
if len(points) > 0 else wx.Point(0, 0), |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1335
diff
changeset
|
1468 |
link.formalParameter) |
1135
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1469 |
if end_connector is not None: |
1335
1b9610fc1e6b
Fixed bug when loading graphic pou connection between blocks and no points for drawing wire are defined
Laurent Bessard
parents:
1331
diff
changeset
|
1470 |
if len(points) > 0: |
1b9610fc1e6b
Fixed bug when loading graphic pou connection between blocks and no points for drawing wire are defined
Laurent Bessard
parents:
1331
diff
changeset
|
1471 |
wire = Wire(self) |
1b9610fc1e6b
Fixed bug when loading graphic pou connection between blocks and no points for drawing wire are defined
Laurent Bessard
parents:
1331
diff
changeset
|
1472 |
wire.SetPoints(points) |
1b9610fc1e6b
Fixed bug when loading graphic pou connection between blocks and no points for drawing wire are defined
Laurent Bessard
parents:
1331
diff
changeset
|
1473 |
else: |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1474 |
wire = Wire( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1475 |
self, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1476 |
[wx.Point(*start_connector.GetPosition()), start_connector.GetDirection()], |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1477 |
[wx.Point(*end_connector.GetPosition()), end_connector.GetDirection()]) |
1342
c17507a10807
Fixed various latency issues removing unnecessary calls
Laurent Bessard
parents:
1338
diff
changeset
|
1478 |
start_connector.Wires.append((wire, 0)) |
c17507a10807
Fixed various latency issues removing unnecessary calls
Laurent Bessard
parents:
1338
diff
changeset
|
1479 |
end_connector.Wires.append((wire, -1)) |
c17507a10807
Fixed various latency issues removing unnecessary calls
Laurent Bessard
parents:
1338
diff
changeset
|
1480 |
wire.StartConnected = start_connector |
c17507a10807
Fixed various latency issues removing unnecessary calls
Laurent Bessard
parents:
1338
diff
changeset
|
1481 |
wire.EndConnected = end_connector |
1135
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1482 |
connected.RefreshConnectors() |
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1483 |
self.AddWire(wire) |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1484 |
if selection is not None and (selection[1].get((id, refLocalId), False) or |
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1485 |
selection[1].get((refLocalId, id), False)): |
1135
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1486 |
self.SelectInGroup(wire) |
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1487 |
else: |
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1488 |
links_connected = False |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1489 |
|
1135
519a21ddbc40
Added support for updating model when broken connection is detected in Viewer
Laurent Bessard
parents:
1133
diff
changeset
|
1490 |
return links_connected |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1491 |
|
814 | 1492 |
def IsOfType(self, type, reference): |
1493 |
return self.Controler.IsOfType(type, reference, self.Debug) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1494 |
|
814 | 1495 |
def IsEndType(self, type): |
1496 |
return self.Controler.IsEndType(type) |
|
1497 |
||
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1498 |
def GetBlockType(self, type, inputs=None): |
814 | 1499 |
return self.Controler.GetBlockType(type, inputs, self.Debug) |
1500 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1501 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1502 |
# Search Element functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1503 |
# ------------------------------------------------------------------------------- |
814 | 1504 |
|
1505 |
def FindBlock(self, event): |
|
1506 |
dc = self.GetLogicalDC() |
|
1507 |
pos = event.GetLogicalPosition(dc) |
|
1508 |
for block in self.Blocks.itervalues(): |
|
1509 |
if block.HitTest(pos) or block.TestHandle(event) != (0, 0): |
|
1510 |
return block |
|
1511 |
return None |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1512 |
|
814 | 1513 |
def FindWire(self, event): |
1514 |
dc = self.GetLogicalDC() |
|
1515 |
pos = event.GetLogicalPosition(dc) |
|
1516 |
for wire in self.Wires: |
|
1517 |
if wire.HitTest(pos) or wire.TestHandle(event) != (0, 0): |
|
1518 |
return wire |
|
1519 |
return None |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1520 |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1521 |
def FindElement(self, event, exclude_group=False, connectors=True): |
814 | 1522 |
dc = self.GetLogicalDC() |
1523 |
pos = event.GetLogicalPosition(dc) |
|
1524 |
if self.SelectedElement and not (exclude_group and isinstance(self.SelectedElement, Graphic_Group)): |
|
1525 |
if self.SelectedElement.HitTest(pos, connectors) or self.SelectedElement.TestHandle(event) != (0, 0): |
|
1526 |
return self.SelectedElement |
|
1527 |
for element in self.GetElements(): |
|
1528 |
if element.HitTest(pos, connectors) or element.TestHandle(event) != (0, 0): |
|
1529 |
return element |
|
1530 |
return None |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1531 |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1532 |
def FindBlockConnector(self, pos, direction=None, exclude=None): |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1533 |
result, _error = self.FindBlockConnectorWithError(pos, direction, exclude) |
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1498
diff
changeset
|
1534 |
return result |
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1498
diff
changeset
|
1535 |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1536 |
def FindBlockConnectorWithError(self, pos, direction=None, exclude=None): |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1711
diff
changeset
|
1537 |
error = False |
1567
a4bf874e4949
now only correct chart can be created in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1556
diff
changeset
|
1538 |
startblock = None |
814 | 1539 |
for block in self.Blocks.itervalues(): |
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1498
diff
changeset
|
1540 |
connector = block.TestConnector(pos, direction, exclude) |
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1498
diff
changeset
|
1541 |
if connector: |
1567
a4bf874e4949
now only correct chart can be created in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1556
diff
changeset
|
1542 |
if self.IsWire(self.SelectedElement): |
a4bf874e4949
now only correct chart can be created in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1556
diff
changeset
|
1543 |
startblock = self.SelectedElement.StartConnected.GetParentBlock() |
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1498
diff
changeset
|
1544 |
avail, error = connector.ConnectionAvailable(direction, exclude) |
1567
a4bf874e4949
now only correct chart can be created in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1556
diff
changeset
|
1545 |
if not avail or not self.BlockCompatibility(startblock, block, direction): |
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1498
diff
changeset
|
1546 |
connector = None |
1567
a4bf874e4949
now only correct chart can be created in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1556
diff
changeset
|
1547 |
error = True |
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1498
diff
changeset
|
1548 |
return connector, error |
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1498
diff
changeset
|
1549 |
return None, error |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1711
diff
changeset
|
1550 |
|
814 | 1551 |
def FindElementById(self, id): |
1552 |
block = self.Blocks.get(id, None) |
|
1553 |
if block is not None: |
|
1554 |
return block |
|
1555 |
comment = self.Comments.get(id, None) |
|
1556 |
if comment is not None: |
|
1557 |
return comment |
|
1558 |
return None |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1559 |
|
814 | 1560 |
def SearchElements(self, bbox): |
1561 |
elements = [] |
|
1562 |
for element in self.GetElements(): |
|
1563 |
if element.IsInSelection(bbox): |
|
1564 |
elements.append(element) |
|
1565 |
return elements |
|
1566 |
||
1567 |
def SelectAll(self): |
|
1568 |
if self.SelectedElement is not None: |
|
1569 |
self.SelectedElement.SetSelected(False) |
|
1570 |
self.SelectedElement = Graphic_Group(self) |
|
1226
93e7a8abce5e
Fixed lag when selecting all elements using CTRL+A or after paste a lot of blocks
Laurent Bessard
parents:
1225
diff
changeset
|
1571 |
self.SelectedElement.SetElements(self.GetElements()) |
814 | 1572 |
self.SelectedElement.SetSelected(True) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1573 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1574 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1575 |
# Popup menu functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1576 |
# ------------------------------------------------------------------------------- |
814 | 1577 |
|
1578 |
def GetForceVariableMenuFunction(self, iec_path, element): |
|
1579 |
iec_type = self.GetDataType(iec_path) |
|
1750
acf02488f37f
clean-up: fix PEP8 E306 expected 1 blank line before a nested definition, found X
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
1580 |
|
814 | 1581 |
def ForceVariableFunction(event): |
1582 |
if iec_type is not None: |
|
1583 |
dialog = ForceVariableDialog(self.ParentWindow, iec_type, str(element.GetValue())) |
|
1584 |
if dialog.ShowModal() == wx.ID_OK: |
|
1585 |
self.ParentWindow.AddDebugVariable(iec_path) |
|
1586 |
self.ForceDataValue(iec_path, dialog.GetValue()) |
|
1587 |
return ForceVariableFunction |
|
1588 |
||
1589 |
def GetReleaseVariableMenuFunction(self, iec_path): |
|
1590 |
def ReleaseVariableFunction(event): |
|
1591 |
self.ReleaseDataValue(iec_path) |
|
1592 |
return ReleaseVariableFunction |
|
1593 |
||
857
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1594 |
def GetChangeVariableTypeMenuFunction(self, type): |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1595 |
def ChangeVariableTypeMenu(event): |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1596 |
self.ChangeVariableType(self.SelectedElement, type) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1597 |
return ChangeVariableTypeMenu |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1598 |
|
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1599 |
def GetChangeConnectionTypeMenuFunction(self, type): |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1600 |
def ChangeConnectionTypeMenu(event): |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1601 |
self.ChangeConnectionType(self.SelectedElement, type) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1602 |
return ChangeConnectionTypeMenu |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1603 |
|
814 | 1604 |
def PopupForceMenu(self): |
1605 |
iec_path = self.GetElementIECPath(self.SelectedElement) |
|
1606 |
if iec_path is not None: |
|
1607 |
menu = wx.Menu(title='') |
|
2565 | 1608 |
item = menu.Append(wx.ID_ANY, help='', kind=wx.ITEM_NORMAL, text=_("Force value")) |
2555
5dce99e69027
Start fixing wx.NewId abuse in viewer.py. This shows how to avoid using AppendMenu() function, definitely useless.
Edouard Tisserant
parents:
2494
diff
changeset
|
1609 |
self.Bind(wx.EVT_MENU, self.GetForceVariableMenuFunction(iec_path.upper(), self.SelectedElement), item) |
2565 | 1610 |
ritem = menu.Append(wx.ID_ANY, help='', kind=wx.ITEM_NORMAL, text=_("Release value")) |
2555
5dce99e69027
Start fixing wx.NewId abuse in viewer.py. This shows how to avoid using AppendMenu() function, definitely useless.
Edouard Tisserant
parents:
2494
diff
changeset
|
1611 |
self.Bind(wx.EVT_MENU, self.GetReleaseVariableMenuFunction(iec_path.upper()), ritem) |
814 | 1612 |
if self.SelectedElement.IsForced(): |
2555
5dce99e69027
Start fixing wx.NewId abuse in viewer.py. This shows how to avoid using AppendMenu() function, definitely useless.
Edouard Tisserant
parents:
2494
diff
changeset
|
1613 |
ritem.Enable(True) |
814 | 1614 |
else: |
2555
5dce99e69027
Start fixing wx.NewId abuse in viewer.py. This shows how to avoid using AppendMenu() function, definitely useless.
Edouard Tisserant
parents:
2494
diff
changeset
|
1615 |
ritem.Enable(False) |
1711
a0682ec03f1f
fixes double mouse capturing after forcing variable in debug mode
Surkov Sergey <surkovsv93@gmail.com>
parents:
1674
diff
changeset
|
1616 |
if self.Editor.HasCapture(): |
a0682ec03f1f
fixes double mouse capturing after forcing variable in debug mode
Surkov Sergey <surkovsv93@gmail.com>
parents:
1674
diff
changeset
|
1617 |
self.Editor.ReleaseMouse() |
814 | 1618 |
self.Editor.PopupMenu(menu) |
1619 |
menu.Destroy() |
|
1620 |
||
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1621 |
def PopupBlockMenu(self, connector=None): |
814 | 1622 |
menu = wx.Menu(title='') |
1623 |
if connector is not None and connector.IsCompatible("BOOL"): |
|
1624 |
self.AddBlockPinMenuItems(menu, connector) |
|
1625 |
else: |
|
1626 |
edit = self.SelectedElement.GetType() in self.Controler.GetProjectPouNames(self.Debug) |
|
1627 |
self.AddDefaultMenuItems(menu, block=True, edit=edit) |
|
1628 |
self.Editor.PopupMenu(menu) |
|
1629 |
menu.Destroy() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1630 |
|
857
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1631 |
def PopupVariableMenu(self): |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1632 |
menu = wx.Menu(title='') |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1633 |
variable_type = self.SelectedElement.GetType() |
2579
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
1634 |
for type_label, vtype in [(_("Input"), INPUT), |
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
1635 |
(_("Output"), OUTPUT), |
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
1636 |
(_("InOut"), INOUT)]: |
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
1637 |
item = self.AppendItem(menu, type_label, |
2579
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
1638 |
self.GetChangeVariableTypeMenuFunction(vtype), |
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
1639 |
kind=wx.ITEM_RADIO) |
2579
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
1640 |
if vtype == variable_type: |
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
1641 |
item.Check(True) |
857
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1642 |
menu.AppendSeparator() |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1643 |
self.AddDefaultMenuItems(menu, block=True) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1644 |
self.Editor.PopupMenu(menu) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1645 |
menu.Destroy() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1646 |
|
857
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1647 |
def PopupConnectionMenu(self): |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1648 |
menu = wx.Menu(title='') |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1649 |
connection_type = self.SelectedElement.GetType() |
2579
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
1650 |
for type_label, ctype in [(_("Connector"), CONNECTOR), |
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
1651 |
(_("Continuation"), CONTINUATION)]: |
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
1652 |
item = self.AppendItem(menu, type_label, |
2579
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
1653 |
self.GetChangeConnectionTypeMenuFunction(ctype), |
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
1654 |
kind=wx.ITEM_RADIO) |
2579
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
1655 |
if ctype == connection_type: |
2567
eb9392511989
More wx.NewID abuse removal. All Viewer.py got cured.
Edouard Tisserant
parents:
2557
diff
changeset
|
1656 |
item.Check(True) |
857
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1657 |
menu.AppendSeparator() |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1658 |
self.AddDefaultMenuItems(menu, block=True) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1659 |
self.Editor.PopupMenu(menu) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
1660 |
menu.Destroy() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1661 |
|
814 | 1662 |
def PopupWireMenu(self, delete=True): |
1663 |
menu = wx.Menu(title='') |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1664 |
|
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1665 |
# If Check that wire can be replace by connections or abort |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1666 |
connected = self.SelectedElement.GetConnected() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1667 |
start_connector = ( |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1668 |
self.SelectedElement.GetEndConnected() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1669 |
if self.SelectedElement.GetStartConnected() in connected |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1670 |
else self.SelectedElement.GetStartConnected()) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1671 |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1672 |
self.AddWireMenuItems( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1673 |
menu, delete, |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1674 |
start_connector.GetDirection() == EAST and |
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1675 |
not isinstance(start_connector.GetParentBlock(), SFC_Step)) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1676 |
|
814 | 1677 |
menu.AppendSeparator() |
1678 |
self.AddDefaultMenuItems(menu, block=True) |
|
1679 |
self.Editor.PopupMenu(menu) |
|
1680 |
menu.Destroy() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1681 |
|
814 | 1682 |
def PopupDivergenceMenu(self, connector): |
1683 |
menu = wx.Menu(title='') |
|
1684 |
self.AddDivergenceMenuItems(menu, connector) |
|
1685 |
menu.AppendSeparator() |
|
1686 |
self.AddDefaultMenuItems(menu, block=True) |
|
1687 |
self.Editor.PopupMenu(menu) |
|
1688 |
menu.Destroy() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1689 |
|
814 | 1690 |
def PopupGroupMenu(self): |
1691 |
menu = wx.Menu(title='') |
|
1692 |
align_menu = wx.Menu(title='') |
|
1693 |
self.AddAlignmentMenuItems(align_menu) |
|
1694 |
menu.AppendMenu(-1, _(u'Alignment'), align_menu) |
|
1695 |
menu.AppendSeparator() |
|
1696 |
self.AddDefaultMenuItems(menu, block=True) |
|
1697 |
self.Editor.PopupMenu(menu) |
|
1698 |
menu.Destroy() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1699 |
|
814 | 1700 |
def PopupDefaultMenu(self, block=True): |
1701 |
menu = wx.Menu(title='') |
|
1702 |
self.AddDefaultMenuItems(menu, block=block) |
|
1703 |
self.Editor.PopupMenu(menu) |
|
1704 |
menu.Destroy() |
|
1705 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1706 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1707 |
# Menu items functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1708 |
# ------------------------------------------------------------------------------- |
814 | 1709 |
|
1710 |
def OnAlignLeftMenu(self, event): |
|
1711 |
if self.SelectedElement is not None and isinstance(self.SelectedElement, Graphic_Group): |
|
1712 |
self.SelectedElement.AlignElements(ALIGN_LEFT, None) |
|
1713 |
self.RefreshBuffer() |
|
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
1714 |
self.Editor.Refresh(False) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1715 |
|
814 | 1716 |
def OnAlignCenterMenu(self, event): |
1717 |
if self.SelectedElement is not None and isinstance(self.SelectedElement, Graphic_Group): |
|
1718 |
self.SelectedElement.AlignElements(ALIGN_CENTER, None) |
|
1719 |
self.RefreshBuffer() |
|
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
1720 |
self.Editor.Refresh(False) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1721 |
|
814 | 1722 |
def OnAlignRightMenu(self, event): |
1723 |
if self.SelectedElement is not None and isinstance(self.SelectedElement, Graphic_Group): |
|
1724 |
self.SelectedElement.AlignElements(ALIGN_RIGHT, None) |
|
1725 |
self.RefreshBuffer() |
|
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
1726 |
self.Editor.Refresh(False) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1727 |
|
814 | 1728 |
def OnAlignTopMenu(self, event): |
1729 |
if self.SelectedElement is not None and isinstance(self.SelectedElement, Graphic_Group): |
|
1730 |
self.SelectedElement.AlignElements(None, ALIGN_TOP) |
|
1731 |
self.RefreshBuffer() |
|
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
1732 |
self.Editor.Refresh(False) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1733 |
|
814 | 1734 |
def OnAlignMiddleMenu(self, event): |
1735 |
if self.SelectedElement is not None and isinstance(self.SelectedElement, Graphic_Group): |
|
1736 |
self.SelectedElement.AlignElements(None, ALIGN_MIDDLE) |
|
1737 |
self.RefreshBuffer() |
|
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
1738 |
self.Editor.Refresh(False) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1739 |
|
814 | 1740 |
def OnAlignBottomMenu(self, event): |
1741 |
if self.SelectedElement is not None and isinstance(self.SelectedElement, Graphic_Group): |
|
1742 |
self.SelectedElement.AlignElements(None, ALIGN_BOTTOM) |
|
1743 |
self.RefreshBuffer() |
|
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
1744 |
self.Editor.Refresh(False) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1745 |
|
814 | 1746 |
def OnNoModifierMenu(self, event): |
1747 |
if self.SelectedElement is not None and self.IsBlock(self.SelectedElement): |
|
1748 |
self.SelectedElement.SetConnectorNegated(False) |
|
1749 |
self.SelectedElement.Refresh() |
|
1750 |
self.RefreshBuffer() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1751 |
|
814 | 1752 |
def OnNegatedMenu(self, event): |
1753 |
if self.SelectedElement is not None and self.IsBlock(self.SelectedElement): |
|
1754 |
self.SelectedElement.SetConnectorNegated(True) |
|
1755 |
self.SelectedElement.Refresh() |
|
1756 |
self.RefreshBuffer() |
|
1757 |
||
1758 |
def OnRisingEdgeMenu(self, event): |
|
1759 |
if self.SelectedElement is not None and self.IsBlock(self.SelectedElement): |
|
1760 |
self.SelectedElement.SetConnectorEdge("rising") |
|
1761 |
self.SelectedElement.Refresh() |
|
1762 |
self.RefreshBuffer() |
|
1763 |
||
1764 |
def OnFallingEdgeMenu(self, event): |
|
1765 |
if self.SelectedElement is not None and self.IsBlock(self.SelectedElement): |
|
1766 |
self.SelectedElement.SetConnectorEdge("falling") |
|
1767 |
self.SelectedElement.Refresh() |
|
1768 |
self.RefreshBuffer() |
|
1769 |
||
1770 |
def OnAddSegmentMenu(self, event): |
|
1771 |
if self.SelectedElement is not None and self.IsWire(self.SelectedElement): |
|
1772 |
self.SelectedElement.AddSegment() |
|
1773 |
self.SelectedElement.Refresh() |
|
1774 |
||
1775 |
def OnDeleteSegmentMenu(self, event): |
|
1776 |
if self.SelectedElement is not None and self.IsWire(self.SelectedElement): |
|
1777 |
self.SelectedElement.DeleteSegment() |
|
1778 |
self.SelectedElement.Refresh() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1779 |
|
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1780 |
def OnReplaceWireMenu(self, event): |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1781 |
# Check that selected element is a wire before applying replace |
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
|
1782 |
if self.SelectedElement is not None and self.IsWire(self.SelectedElement): |
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1783 |
# Get wire redraw bbox to erase it from screen |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1784 |
wire = self.SelectedElement |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1785 |
redraw_rect = wire.GetRedrawRect() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1786 |
|
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1787 |
# Get connector at both ends of wire |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1788 |
connected = wire.GetConnected() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1789 |
if wire.GetStartConnected() in connected: |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1790 |
start_connector = wire.GetEndConnected() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1791 |
end_connector = wire.GetStartConnected() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1792 |
wire.UnConnectStartPoint() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1793 |
point_to_connect = 0 |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1794 |
else: |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1795 |
start_connector = wire.GetStartConnected() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1796 |
end_connector = wire.GetEndConnected() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1797 |
wire.UnConnectEndPoint() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1798 |
point_to_connect = -1 |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1799 |
|
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1800 |
# Get a new default connection name |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1801 |
connection_name = self.Controler.GenerateNewName( |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
1802 |
self.TagName, None, "Connection%d", 0) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1803 |
|
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1804 |
# Create a connector to connect to wire |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1805 |
id = self.GetNewId() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1806 |
connection = FBD_Connector(self, CONNECTOR, connection_name, id) |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1807 |
connection.SetSize(*self.GetScaledSize(*connection.GetMinSize())) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1808 |
|
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1809 |
# Calculate position of connector at the right of start connector |
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1810 |
connector = connection.GetConnectors()["inputs"][0] |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1811 |
rel_pos = connector.GetRelPosition() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1812 |
start_point = start_connector.GetPosition(False) |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1813 |
end_point = (start_point[0] + LD_WIRE_SIZE, start_point[1]) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1814 |
connection.SetPosition(end_point[0] - rel_pos[0], |
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1815 |
end_point[1] - rel_pos[1]) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1816 |
|
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1817 |
# Connect connector to wire |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1818 |
connector.Connect((wire, point_to_connect)) |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1819 |
if point_to_connect == 0: |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1820 |
wire.SetPoints([end_point, start_point]) |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1821 |
else: |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1822 |
wire.SetPoints([start_point, end_point]) |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1823 |
# Update redraw bbox with new wire trace so that it will be redraw |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1824 |
# on screen |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1825 |
redraw_rect.Union(wire.GetRedrawRect()) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1826 |
|
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1827 |
# Add connector to Viewer and model |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1828 |
self.AddBlock(connection) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1829 |
self.Controler.AddEditedElementConnection(self.TagName, id, |
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1830 |
CONNECTOR) |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1831 |
connection.RefreshModel() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1832 |
# Update redraw bbox with new connector bbox so that it will be |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1833 |
# drawn on screen |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1834 |
redraw_rect.Union(connection.GetRedrawRect()) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1835 |
|
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1836 |
# Add new continuation |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1837 |
id = self.GetNewId() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1838 |
connection = FBD_Connector(self, CONTINUATION, connection_name, id) |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1839 |
connection.SetSize(*self.GetScaledSize(*connection.GetMinSize())) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1840 |
|
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1841 |
# Calculate position of connection at the left of end connector |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1842 |
connector = connection.GetConnectors()["outputs"][0] |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1843 |
rel_pos = connector.GetRelPosition() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1844 |
end_point = end_connector.GetPosition(False) |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1845 |
start_point = (end_point[0] - LD_WIRE_SIZE, end_point[1]) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1846 |
connection.SetPosition(start_point[0] - rel_pos[0], |
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1847 |
start_point[1] - rel_pos[1]) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1848 |
|
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1849 |
# Add Wire to Viewer and connect it to blocks |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1850 |
new_wire = Wire(self, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1851 |
[wx.Point(*start_point), connector.GetDirection()], |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1852 |
[wx.Point(*end_point), end_connector.GetDirection()]) |
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1853 |
self.AddWire(new_wire) |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1854 |
connector.Connect((new_wire, 0), False) |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1855 |
end_connector.Connect((new_wire, -1), False) |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1856 |
new_wire.ConnectStartPoint(None, connector) |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1857 |
new_wire.ConnectEndPoint(None, end_connector) |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1858 |
# Update redraw bbox with new wire bbox so that it will be drawn on |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1859 |
# screen |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1860 |
redraw_rect.Union(new_wire.GetRedrawRect()) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1861 |
|
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1862 |
# Add connection to Viewer and model |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1863 |
self.AddBlock(connection) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1864 |
self.Controler.AddEditedElementConnection(self.TagName, id, |
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1865 |
CONTINUATION) |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1866 |
connection.RefreshModel() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1867 |
# Update redraw bbox with new connection bbox so that it will be |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1868 |
# drawn on screen |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1869 |
redraw_rect.Union(connection.GetRedrawRect()) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1870 |
|
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1871 |
# Refresh model for new wire |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1872 |
end_connector.RefreshParentBlock() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1873 |
|
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1874 |
# Redraw |
1263
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1875 |
self.RefreshBuffer() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1876 |
self.RefreshScrollBars() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1877 |
self.RefreshVisibleElements() |
895605ccac70
Added support for replacing a wire by two connections
Laurent Bessard
parents:
1260
diff
changeset
|
1878 |
self.RefreshRect(self.GetScrolledRect(redraw_rect), False) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1879 |
|
814 | 1880 |
def OnAddBranchMenu(self, event): |
1881 |
if self.SelectedElement is not None and self.IsBlock(self.SelectedElement): |
|
1882 |
self.AddDivergenceBranch(self.SelectedElement) |
|
1883 |
||
1884 |
def OnDeleteBranchMenu(self, event): |
|
1885 |
if self.SelectedElement is not None and self.IsBlock(self.SelectedElement): |
|
1886 |
self.RemoveDivergenceBranch(self.SelectedElement) |
|
1887 |
||
1888 |
def OnEditBlockMenu(self, event): |
|
1889 |
if self.SelectedElement is not None: |
|
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1890 |
self.ParentWindow.EditProjectElement(ITEM_POU, "P::%s" % self.SelectedElement.GetType()) |
814 | 1891 |
|
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
832
diff
changeset
|
1892 |
def OnAdjustBlockSizeMenu(self, event): |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
832
diff
changeset
|
1893 |
if self.SelectedElement is not None: |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
832
diff
changeset
|
1894 |
movex, movey = self.SelectedElement.SetBestSize(self.Scaling) |
872
6aadbde5f41e
Fix bug when adjusting block size, block informations was not saved when using control + shift + double click
Laurent Bessard
parents:
857
diff
changeset
|
1895 |
self.SelectedElement.RefreshModel(True) |
6aadbde5f41e
Fix bug when adjusting block size, block informations was not saved when using control + shift + double click
Laurent Bessard
parents:
857
diff
changeset
|
1896 |
self.RefreshBuffer() |
6aadbde5f41e
Fix bug when adjusting block size, block informations was not saved when using control + shift + double click
Laurent Bessard
parents:
857
diff
changeset
|
1897 |
self.RefreshRect(self.GetScrolledRect(self.SelectedElement.GetRedrawRect(movex, movey)), False) |
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
832
diff
changeset
|
1898 |
|
814 | 1899 |
def OnDeleteMenu(self, event): |
1900 |
if self.SelectedElement is not None: |
|
1901 |
self.SelectedElement.Delete() |
|
1902 |
self.SelectedElement = None |
|
1903 |
self.RefreshBuffer() |
|
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
1904 |
self.Editor.Refresh(False) |
814 | 1905 |
|
1906 |
def OnClearExecutionOrderMenu(self, event): |
|
1907 |
self.Controler.ClearEditedElementExecutionOrder(self.TagName) |
|
1908 |
self.RefreshBuffer() |
|
1909 |
self.RefreshView() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1910 |
|
814 | 1911 |
def OnResetExecutionOrderMenu(self, event): |
1912 |
self.Controler.ResetEditedElementExecutionOrder(self.TagName) |
|
1913 |
self.RefreshBuffer() |
|
1914 |
self.RefreshView() |
|
1915 |
||
1916 |
def GetAddMenuCallBack(self, func, *args): |
|
1917 |
def AddMenuCallBack(event): |
|
1918 |
wx.CallAfter(func, self.rubberBand.GetCurrentExtent(), *args) |
|
1919 |
return AddMenuCallBack |
|
1920 |
||
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
1921 |
def GetAddToWireMenuCallBack(self, func, *args): |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
1922 |
args += (self.SelectedElement,) |
1750
acf02488f37f
clean-up: fix PEP8 E306 expected 1 blank line before a nested definition, found X
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
1923 |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
1924 |
def AddToWireMenuCallBack(event): |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
1925 |
func(wx.Rect(0, 0, 0, 0), *args) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
1926 |
return AddToWireMenuCallBack |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
1927 |
|
814 | 1928 |
def GetClipboardCallBack(self, func): |
1929 |
def ClipboardCallback(event): |
|
1930 |
wx.CallAfter(func) |
|
1931 |
return ClipboardCallback |
|
1932 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1933 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1934 |
# Mouse event functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
1935 |
# ------------------------------------------------------------------------------- |
814 | 1936 |
|
1937 |
def OnViewerMouseEvent(self, event): |
|
1224 | 1938 |
self.ResetBuffer() |
1228 | 1939 |
if event.Leaving() and self.ToolTipElement is not None: |
1224 | 1940 |
self.ToolTipElement.DestroyToolTip() |
1228 | 1941 |
elif (not event.Entering() and |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1942 |
gettime() - self.LastToolTipCheckTime > REFRESH_PERIOD): |
1224 | 1943 |
self.LastToolTipCheckTime = gettime() |
814 | 1944 |
element = None |
1945 |
if not event.Leaving() and not event.LeftUp() and not event.LeftDClick(): |
|
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
1946 |
dc = self.GetLogicalDC() |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
1947 |
pos = event.GetLogicalPosition(dc) |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
1948 |
element = self.FindBlockConnector(pos) |
1224 | 1949 |
if element is None or len(element.GetWires()) > 0: |
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
1950 |
element = self.FindElement(event, True, False) |
1228 | 1951 |
if self.ToolTipElement is not None: |
1952 |
self.ToolTipElement.DestroyToolTip() |
|
814 | 1953 |
self.ToolTipElement = element |
1954 |
if self.ToolTipElement is not None: |
|
1955 |
tooltip_pos = self.Editor.ClientToScreen(event.GetPosition()) |
|
1956 |
tooltip_pos.x += 10 |
|
1957 |
tooltip_pos.y += 10 |
|
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
1958 |
self.ToolTipElement.DisplayToolTip(tooltip_pos) |
814 | 1959 |
event.Skip() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
1960 |
|
814 | 1961 |
def OnViewerLeftDown(self, event): |
1962 |
self.Editor.CaptureMouse() |
|
1273
921858d68a13
Fix refresh bug when scrolling Viewer while dragging graphic element or rubberband
Laurent Bessard
parents:
1263
diff
changeset
|
1963 |
self.StartMousePos = event.GetPosition() |
814 | 1964 |
if self.Mode == MODE_SELECTION: |
1965 |
dc = self.GetLogicalDC() |
|
1966 |
pos = event.GetLogicalPosition(dc) |
|
1967 |
if event.ShiftDown() and not event.ControlDown() and self.SelectedElement is not None: |
|
1968 |
element = self.FindElement(event, True) |
|
1969 |
if element is not None: |
|
1970 |
if isinstance(self.SelectedElement, Graphic_Group): |
|
1971 |
self.SelectedElement.SetSelected(False) |
|
1972 |
self.SelectedElement.SelectElement(element) |
|
1973 |
elif self.SelectedElement is not None: |
|
1974 |
group = Graphic_Group(self) |
|
1975 |
group.SelectElement(self.SelectedElement) |
|
1976 |
group.SelectElement(element) |
|
1977 |
self.SelectedElement = group |
|
1978 |
elements = self.SelectedElement.GetElements() |
|
1979 |
if len(elements) == 0: |
|
1980 |
self.SelectedElement = element |
|
1981 |
elif len(elements) == 1: |
|
1982 |
self.SelectedElement = elements[0] |
|
1983 |
self.SelectedElement.SetSelected(True) |
|
1984 |
else: |
|
1985 |
self.rubberBand.Reset() |
|
1986 |
self.rubberBand.OnLeftDown(event, dc, self.Scaling) |
|
1987 |
else: |
|
1988 |
element = self.FindElement(event) |
|
1989 |
if not self.Debug and (element is None or element.TestHandle(event) == (0, 0)): |
|
1990 |
connector = self.FindBlockConnector(pos) |
|
1991 |
else: |
|
1992 |
connector = None |
|
1993 |
if not self.Debug and self.DrawingWire: |
|
1994 |
self.DrawingWire = False |
|
1995 |
if self.SelectedElement is not None: |
|
1996 |
if element is None or element.TestHandle(event) == (0, 0): |
|
1997 |
connector = self.FindBlockConnector(pos, self.SelectedElement.GetConnectionDirection()) |
|
1998 |
if connector is not None: |
|
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
1999 |
event.Dragging = lambda: True |
814 | 2000 |
self.SelectedElement.OnMotion(event, dc, self.Scaling) |
2001 |
if self.SelectedElement.EndConnected is not None: |
|
2002 |
self.SelectedElement.ResetPoints() |
|
2003 |
self.SelectedElement.GeneratePoints() |
|
2004 |
self.SelectedElement.RefreshModel() |
|
2005 |
self.SelectedElement.SetSelected(True) |
|
2006 |
element = self.SelectedElement |
|
2007 |
self.RefreshBuffer() |
|
2008 |
else: |
|
2009 |
rect = self.SelectedElement.GetRedrawRect() |
|
2010 |
self.SelectedElement.Delete() |
|
2011 |
self.SelectedElement = None |
|
2012 |
element = None |
|
2013 |
self.RefreshRect(self.GetScrolledRect(rect), False) |
|
2014 |
elif not self.Debug and connector is not None and not event.ControlDown(): |
|
2015 |
self.DrawingWire = True |
|
2016 |
scaled_pos = GetScaledEventPosition(event, dc, self.Scaling) |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2017 |
directions = { |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2018 |
EAST: [EAST, WEST], |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2019 |
WEST: [WEST, EAST], |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2020 |
NORTH: [NORTH, SOUTH], |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2021 |
SOUTH: [SOUTH, NORTH]}[connector.GetDirection()] |
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
2022 |
wire = Wire(self, |
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
2023 |
*map(list, zip( |
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
2024 |
[wx.Point(pos.x, pos.y), |
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
2025 |
wx.Point(scaled_pos.x, scaled_pos.y)], |
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
2026 |
directions))) |
814 | 2027 |
wire.oldPos = scaled_pos |
2028 |
wire.Handle = (HANDLE_POINT, 0) |
|
2029 |
wire.ProcessDragging(0, 0, event, None) |
|
2030 |
wire.Handle = (HANDLE_POINT, 1) |
|
2031 |
self.AddWire(wire) |
|
2032 |
if self.SelectedElement is not None: |
|
2033 |
self.SelectedElement.SetSelected(False) |
|
2034 |
self.SelectedElement = wire |
|
2035 |
if self.HighlightedElement is not None: |
|
2036 |
self.HighlightedElement.SetHighlighted(False) |
|
2037 |
self.HighlightedElement = wire |
|
2038 |
self.RefreshVisibleElements() |
|
2039 |
self.SelectedElement.SetHighlighted(True) |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2040 |
self.SelectedElement.StartConnected.HighlightParentBlock(True) |
814 | 2041 |
else: |
2042 |
if self.SelectedElement is not None and self.SelectedElement != element: |
|
2043 |
self.SelectedElement.SetSelected(False) |
|
2044 |
self.SelectedElement = None |
|
2045 |
if element is not None: |
|
2046 |
self.SelectedElement = element |
|
2047 |
if self.Debug: |
|
2048 |
Graphic_Element.OnLeftDown(self.SelectedElement, event, dc, self.Scaling) |
|
2049 |
else: |
|
2050 |
self.SelectedElement.OnLeftDown(event, dc, self.Scaling) |
|
2051 |
self.SelectedElement.Refresh() |
|
2052 |
else: |
|
2053 |
self.rubberBand.Reset() |
|
2054 |
self.rubberBand.OnLeftDown(event, dc, self.Scaling) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2055 |
elif self.Mode in [MODE_BLOCK, MODE_VARIABLE, MODE_CONNECTION, MODE_COMMENT, |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2056 |
MODE_CONTACT, MODE_COIL, MODE_POWERRAIL, MODE_INITIALSTEP, |
814 | 2057 |
MODE_STEP, MODE_TRANSITION, MODE_DIVERGENCE, MODE_JUMP, MODE_ACTION]: |
2058 |
self.rubberBand.Reset() |
|
2059 |
self.rubberBand.OnLeftDown(event, self.GetLogicalDC(), self.Scaling) |
|
2060 |
elif self.Mode == MODE_MOTION: |
|
2061 |
self.StartScreenPos = self.GetScrollPos(wx.HORIZONTAL), self.GetScrollPos(wx.VERTICAL) |
|
2062 |
event.Skip() |
|
2063 |
||
2064 |
def OnViewerLeftUp(self, event): |
|
2065 |
self.StartMousePos = None |
|
2066 |
if self.rubberBand.IsShown(): |
|
2067 |
if self.Mode == MODE_SELECTION: |
|
2068 |
new_elements = self.SearchElements(self.rubberBand.GetCurrentExtent()) |
|
2069 |
self.rubberBand.OnLeftUp(event, self.GetLogicalDC(), self.Scaling) |
|
2070 |
if event.ShiftDown() and self.SelectedElement is not None: |
|
2071 |
if isinstance(self.SelectedElement, Graphic_Group): |
|
2072 |
elements = self.SelectedElement.GetElements() |
|
2073 |
else: |
|
2074 |
elements = [self.SelectedElement] |
|
2075 |
for element in elements: |
|
2076 |
if element not in new_elements: |
|
2077 |
new_elements.append(element) |
|
2078 |
if len(new_elements) == 1: |
|
2079 |
self.SelectedElement = new_elements[0] |
|
2080 |
self.SelectedElement.SetSelected(True) |
|
2081 |
elif len(new_elements) > 1: |
|
2082 |
self.SelectedElement = Graphic_Group(self) |
|
2083 |
self.SelectedElement.SetElements(new_elements) |
|
2084 |
self.SelectedElement.SetSelected(True) |
|
2085 |
else: |
|
2086 |
bbox = self.rubberBand.GetCurrentExtent() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2087 |
self.rubberBand.OnLeftUp(event, self.GetLogicalDC(), self.Scaling) |
814 | 2088 |
if self.Mode == MODE_BLOCK: |
2089 |
wx.CallAfter(self.AddNewBlock, bbox) |
|
2090 |
elif self.Mode == MODE_VARIABLE: |
|
2091 |
wx.CallAfter(self.AddNewVariable, bbox) |
|
2092 |
elif self.Mode == MODE_CONNECTION: |
|
2093 |
wx.CallAfter(self.AddNewConnection, bbox) |
|
2094 |
elif self.Mode == MODE_COMMENT: |
|
2095 |
wx.CallAfter(self.AddNewComment, bbox) |
|
2096 |
elif self.Mode == MODE_CONTACT: |
|
2097 |
wx.CallAfter(self.AddNewContact, bbox) |
|
2098 |
elif self.Mode == MODE_COIL: |
|
2099 |
wx.CallAfter(self.AddNewCoil, bbox) |
|
2100 |
elif self.Mode == MODE_POWERRAIL: |
|
2101 |
wx.CallAfter(self.AddNewPowerRail, bbox) |
|
2102 |
elif self.Mode == MODE_INITIALSTEP: |
|
2103 |
wx.CallAfter(self.AddNewStep, bbox, True) |
|
2104 |
elif self.Mode == MODE_STEP: |
|
2105 |
wx.CallAfter(self.AddNewStep, bbox, False) |
|
2106 |
elif self.Mode == MODE_TRANSITION: |
|
2107 |
wx.CallAfter(self.AddNewTransition, bbox) |
|
2108 |
elif self.Mode == MODE_DIVERGENCE: |
|
2109 |
wx.CallAfter(self.AddNewDivergence, bbox) |
|
2110 |
elif self.Mode == MODE_JUMP: |
|
2111 |
wx.CallAfter(self.AddNewJump, bbox) |
|
2112 |
elif self.Mode == MODE_ACTION: |
|
2113 |
wx.CallAfter(self.AddNewActionBlock, bbox) |
|
2114 |
elif self.Mode == MODE_SELECTION and self.SelectedElement is not None: |
|
2115 |
dc = self.GetLogicalDC() |
|
2116 |
if not self.Debug and self.DrawingWire: |
|
2117 |
pos = event.GetLogicalPosition(dc) |
|
2118 |
connector = self.FindBlockConnector(pos, self.SelectedElement.GetConnectionDirection()) |
|
2119 |
if self.SelectedElement.EndConnected is not None: |
|
2120 |
self.DrawingWire = False |
|
2121 |
self.SelectedElement.StartConnected.HighlightParentBlock(False) |
|
2122 |
self.SelectedElement.EndConnected.HighlightParentBlock(False) |
|
2123 |
self.SelectedElement.ResetPoints() |
|
2124 |
self.SelectedElement.OnMotion(event, dc, self.Scaling) |
|
2125 |
self.SelectedElement.GeneratePoints() |
|
2126 |
self.SelectedElement.RefreshModel() |
|
2127 |
self.SelectedElement.SetSelected(True) |
|
2128 |
self.SelectedElement.HighlightPoint(pos) |
|
2129 |
self.RefreshBuffer() |
|
2130 |
elif connector is None or self.SelectedElement.GetDragging(): |
|
1584
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2131 |
items = self.GetPopupMenuItems() |
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2132 |
if len(items) > 0: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2133 |
if self.Editor.HasCapture(): |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2134 |
self.Editor.ReleaseMouse() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2135 |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2136 |
# Popup contextual menu |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2137 |
menu = wx.Menu() |
2579
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
2138 |
for text, callback in items: |
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2568
diff
changeset
|
2139 |
self.AppendItem(menu, text, callback) |
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2140 |
self.PopupMenu(menu) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2141 |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2142 |
self.SelectedElement.StartConnected.HighlightParentBlock(False) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2143 |
if self.DrawingWire: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2144 |
self.DrawingWire = False |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2145 |
rect = self.SelectedElement.GetRedrawRect() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2146 |
wire = self.SelectedElement |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2147 |
self.SelectedElement = self.SelectedElement.StartConnected.GetParentBlock() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2148 |
self.SelectedElement.SetSelected(True) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2149 |
rect.Union(self.SelectedElement.GetRedrawRect()) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2150 |
wire.Delete() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2151 |
self.RefreshRect(self.GetScrolledRect(rect), False) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2152 |
else: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2153 |
self.SelectedElement.SetSelected(True) |
1260
11903e79ce66
Fixed bug when adding block into Viewer and added wire validity after adding block with wire drop support
Laurent Bessard
parents:
1259
diff
changeset
|
2154 |
if not self.SelectedElement.IsConnectedCompatible(): |
11903e79ce66
Fixed bug when adding block into Viewer and added wire validity after adding block with wire drop support
Laurent Bessard
parents:
1259
diff
changeset
|
2155 |
self.SelectedElement.SetValid(False) |
814 | 2156 |
else: |
2157 |
if self.Debug: |
|
2158 |
Graphic_Element.OnLeftUp(self.SelectedElement, event, dc, self.Scaling) |
|
2159 |
else: |
|
2160 |
self.SelectedElement.OnLeftUp(event, dc, self.Scaling) |
|
2161 |
wx.CallAfter(self.SetCurrentCursor, 0) |
|
2162 |
elif self.Mode == MODE_MOTION: |
|
2163 |
self.StartScreenPos = None |
|
2164 |
if self.Mode != MODE_SELECTION and not self.SavedMode: |
|
2165 |
wx.CallAfter(self.ParentWindow.ResetCurrentMode) |
|
2166 |
if self.Editor.HasCapture(): |
|
2167 |
self.Editor.ReleaseMouse() |
|
2168 |
event.Skip() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2169 |
|
814 | 2170 |
def OnViewerMiddleDown(self, event): |
2171 |
self.Editor.CaptureMouse() |
|
2172 |
self.StartMousePos = event.GetPosition() |
|
2173 |
self.StartScreenPos = self.GetScrollPos(wx.HORIZONTAL), self.GetScrollPos(wx.VERTICAL) |
|
2174 |
event.Skip() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2175 |
|
814 | 2176 |
def OnViewerMiddleUp(self, event): |
2177 |
self.StartMousePos = None |
|
2178 |
self.StartScreenPos = None |
|
2179 |
if self.Editor.HasCapture(): |
|
2180 |
self.Editor.ReleaseMouse() |
|
2181 |
event.Skip() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2182 |
|
814 | 2183 |
def OnViewerRightDown(self, event): |
2184 |
self.Editor.CaptureMouse() |
|
2185 |
if self.Mode == MODE_SELECTION: |
|
2186 |
element = self.FindElement(event) |
|
2187 |
if self.SelectedElement is not None and self.SelectedElement != element: |
|
2188 |
self.SelectedElement.SetSelected(False) |
|
2189 |
self.SelectedElement = None |
|
2190 |
if element is not None: |
|
2191 |
self.SelectedElement = element |
|
2192 |
if self.Debug: |
|
2193 |
Graphic_Element.OnRightDown(self.SelectedElement, event, self.GetLogicalDC(), self.Scaling) |
|
2194 |
else: |
|
2195 |
self.SelectedElement.OnRightDown(event, self.GetLogicalDC(), self.Scaling) |
|
2196 |
self.SelectedElement.Refresh() |
|
2197 |
event.Skip() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2198 |
|
814 | 2199 |
def OnViewerRightUp(self, event): |
2200 |
dc = self.GetLogicalDC() |
|
2201 |
self.rubberBand.Reset() |
|
2202 |
self.rubberBand.OnLeftDown(event, dc, self.Scaling) |
|
2203 |
self.rubberBand.OnLeftUp(event, dc, self.Scaling) |
|
2204 |
if self.SelectedElement is not None: |
|
2205 |
if self.Debug: |
|
2206 |
Graphic_Element.OnRightUp(self.SelectedElement, event, self.GetLogicalDC(), self.Scaling) |
|
2207 |
else: |
|
2208 |
self.SelectedElement.OnRightUp(event, self.GetLogicalDC(), self.Scaling) |
|
2209 |
wx.CallAfter(self.SetCurrentCursor, 0) |
|
2210 |
elif not self.Debug: |
|
2211 |
self.PopupDefaultMenu(False) |
|
2212 |
if self.Editor.HasCapture(): |
|
2213 |
self.Editor.ReleaseMouse() |
|
2214 |
event.Skip() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2215 |
|
814 | 2216 |
def OnViewerLeftDClick(self, event): |
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2217 |
element = self.FindElement(event) |
814 | 2218 |
if self.Mode == MODE_SELECTION and element is not None: |
2219 |
if self.SelectedElement is not None and self.SelectedElement != element: |
|
2220 |
self.SelectedElement.SetSelected(False) |
|
2221 |
if self.HighlightedElement is not None and self.HighlightedElement != element: |
|
2222 |
self.HighlightedElement.SetHighlighted(False) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2223 |
|
814 | 2224 |
self.SelectedElement = element |
2225 |
self.HighlightedElement = element |
|
2226 |
self.SelectedElement.SetHighlighted(True) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2227 |
|
814 | 2228 |
if self.Debug: |
820
d981fe154c36
Fix bug when Dclick on step and actionBlock in debug mode
laurent
parents:
814
diff
changeset
|
2229 |
if isinstance(self.SelectedElement, FBD_Block): |
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2230 |
dc = self.GetLogicalDC() |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2231 |
pos = event.GetLogicalPosition(dc) |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2232 |
connector = self.SelectedElement.TestConnector(pos, EAST) |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2233 |
if connector is not None and len(connector.GetWires()) == 0: |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2234 |
iec_path = self.GetElementIECPath(connector) |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2235 |
if iec_path is not None: |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2236 |
self.ParentWindow.OpenDebugViewer( |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2237 |
ITEM_VAR_LOCAL, iec_path, connector.GetType()) |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2238 |
else: |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2239 |
instance_type = self.SelectedElement.GetType() |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2240 |
pou_type = { |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2241 |
"program": ITEM_PROGRAM, |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2242 |
"functionBlock": ITEM_FUNCTIONBLOCK, |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2243 |
}.get(self.Controler.GetPouType(instance_type)) |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2244 |
if pou_type is not None and instance_type in self.Controler.GetProjectPouNames(self.Debug): |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2245 |
self.ParentWindow.OpenDebugViewer( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2246 |
pou_type, |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
2247 |
"%s.%s" % (self.GetInstancePath(True), self.SelectedElement.GetName()), |
1948
b9a3f771aaab
Moved some definitions away from controller class, and adaped references them through all code.
Edouard Tisserant
parents:
1931
diff
changeset
|
2248 |
ComputePouName(instance_type)) |
814 | 2249 |
else: |
2250 |
iec_path = self.GetElementIECPath(self.SelectedElement) |
|
2251 |
if iec_path is not None: |
|
2252 |
if isinstance(self.SelectedElement, Wire): |
|
2253 |
if self.SelectedElement.EndConnected is not None: |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2254 |
self.ParentWindow.OpenDebugViewer( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2255 |
ITEM_VAR_LOCAL, iec_path, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2256 |
self.SelectedElement.EndConnected.GetType()) |
814 | 2257 |
else: |
885
fc91d3718b74
Fix bug multiple graph viewer tab displaying values of the same variable can be opened
Laurent Bessard
parents:
882
diff
changeset
|
2258 |
self.ParentWindow.OpenDebugViewer(ITEM_VAR_LOCAL, iec_path, "BOOL") |
814 | 2259 |
elif event.ControlDown() and not event.ShiftDown(): |
857
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
2260 |
if not isinstance(self.SelectedElement, Graphic_Group): |
882
3c6ce0a5ab2c
Fix bug when double click while pressing CTRL on other elements than blocks
Laurent Bessard
parents:
872
diff
changeset
|
2261 |
if isinstance(self.SelectedElement, FBD_Block): |
3c6ce0a5ab2c
Fix bug when double click while pressing CTRL on other elements than blocks
Laurent Bessard
parents:
872
diff
changeset
|
2262 |
instance_type = self.SelectedElement.GetType() |
3c6ce0a5ab2c
Fix bug when double click while pressing CTRL on other elements than blocks
Laurent Bessard
parents:
872
diff
changeset
|
2263 |
else: |
3c6ce0a5ab2c
Fix bug when double click while pressing CTRL on other elements than blocks
Laurent Bessard
parents:
872
diff
changeset
|
2264 |
instance_type = None |
3c6ce0a5ab2c
Fix bug when double click while pressing CTRL on other elements than blocks
Laurent Bessard
parents:
872
diff
changeset
|
2265 |
if instance_type in self.Controler.GetProjectPouNames(self.Debug): |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2266 |
self.ParentWindow.EditProjectElement( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2267 |
ITEM_POU, |
1948
b9a3f771aaab
Moved some definitions away from controller class, and adaped references them through all code.
Edouard Tisserant
parents:
1931
diff
changeset
|
2268 |
ComputePouName(instance_type)) |
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
832
diff
changeset
|
2269 |
else: |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
832
diff
changeset
|
2270 |
self.SelectedElement.OnLeftDClick(event, self.GetLogicalDC(), self.Scaling) |
814 | 2271 |
elif event.ControlDown() and event.ShiftDown(): |
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
832
diff
changeset
|
2272 |
movex, movey = self.SelectedElement.SetBestSize(self.Scaling) |
872
6aadbde5f41e
Fix bug when adjusting block size, block informations was not saved when using control + shift + double click
Laurent Bessard
parents:
857
diff
changeset
|
2273 |
self.SelectedElement.RefreshModel() |
6aadbde5f41e
Fix bug when adjusting block size, block informations was not saved when using control + shift + double click
Laurent Bessard
parents:
857
diff
changeset
|
2274 |
self.RefreshBuffer() |
6aadbde5f41e
Fix bug when adjusting block size, block informations was not saved when using control + shift + double click
Laurent Bessard
parents:
857
diff
changeset
|
2275 |
self.RefreshRect(self.GetScrolledRect(self.SelectedElement.GetRedrawRect(movex, movey)), False) |
814 | 2276 |
else: |
2277 |
self.SelectedElement.OnLeftDClick(event, self.GetLogicalDC(), self.Scaling) |
|
2278 |
event.Skip() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2279 |
|
814 | 2280 |
def OnViewerMotion(self, event): |
2281 |
if self.Editor.HasCapture() and not event.Dragging(): |
|
2282 |
return |
|
2283 |
dc = self.GetLogicalDC() |
|
2284 |
pos = GetScaledEventPosition(event, dc, self.Scaling) |
|
2285 |
if event.MiddleIsDown() or self.Mode == MODE_MOTION: |
|
2286 |
if self.StartMousePos is not None and self.StartScreenPos is not None: |
|
2287 |
new_pos = event.GetPosition() |
|
2288 |
xmax = self.GetScrollRange(wx.HORIZONTAL) - self.GetScrollThumb(wx.HORIZONTAL) |
|
2289 |
ymax = self.GetScrollRange(wx.VERTICAL) - self.GetScrollThumb(wx.VERTICAL) |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2290 |
scrollx = max(0, self.StartScreenPos[0] - (new_pos[0] - self.StartMousePos[0]) // SCROLLBAR_UNIT) |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2291 |
scrolly = max(0, self.StartScreenPos[1] - (new_pos[1] - self.StartMousePos[1]) // SCROLLBAR_UNIT) |
814 | 2292 |
if scrollx > xmax or scrolly > ymax: |
2293 |
self.RefreshScrollBars(max(0, scrollx - xmax), max(0, scrolly - ymax)) |
|
2294 |
self.Scroll(scrollx, scrolly) |
|
2295 |
else: |
|
2296 |
self.Scroll(scrollx, scrolly) |
|
2297 |
self.RefreshScrollBars() |
|
2298 |
self.RefreshVisibleElements() |
|
2299 |
else: |
|
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
|
2300 |
if not event.Dragging() and (gettime() - self.LastHighlightCheckTime) > REFRESH_PERIOD: |
1224 | 2301 |
self.LastHighlightCheckTime = gettime() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2302 |
highlighted = self.FindElement(event, connectors=False) |
814 | 2303 |
if self.HighlightedElement is not None and self.HighlightedElement != highlighted: |
2304 |
self.HighlightedElement.SetHighlighted(False) |
|
2305 |
self.HighlightedElement = None |
|
2306 |
if highlighted is not None: |
|
1225
ed8a89171a6c
Fixed removing display of wire point in debug Viewer
Laurent Bessard
parents:
1224
diff
changeset
|
2307 |
if not self.Debug and isinstance(highlighted, (Wire, Graphic_Group)): |
814 | 2308 |
highlighted.HighlightPoint(pos) |
2309 |
if self.HighlightedElement != highlighted: |
|
2310 |
highlighted.SetHighlighted(True) |
|
2311 |
self.HighlightedElement = highlighted |
|
2312 |
if self.rubberBand.IsShown(): |
|
2313 |
self.rubberBand.OnMotion(event, dc, self.Scaling) |
|
2314 |
elif not self.Debug and self.Mode == MODE_SELECTION and self.SelectedElement is not None: |
|
2315 |
if self.DrawingWire: |
|
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1498
diff
changeset
|
2316 |
connector, errorHighlight = self.FindBlockConnectorWithError(pos, self.SelectedElement.GetConnectionDirection(), self.SelectedElement.EndConnected) |
1752
d14ff9d7eb76
clean-up: fix PEP8 E703 statement ends with a semicolon
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1750
diff
changeset
|
2317 |
self.SelectedElement.ErrHighlight = errorHighlight |
1743
c3c3d1318130
clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1741
diff
changeset
|
2318 |
if not connector or self.SelectedElement.EndConnected is None: |
814 | 2319 |
self.SelectedElement.ResetPoints() |
2320 |
movex, movey = self.SelectedElement.OnMotion(event, dc, self.Scaling) |
|
2321 |
self.SelectedElement.GeneratePoints() |
|
2322 |
if movex != 0 or movey != 0: |
|
2323 |
self.RefreshRect(self.GetScrolledRect(self.SelectedElement.GetRedrawRect(movex, movey)), False) |
|
1225
ed8a89171a6c
Fixed removing display of wire point in debug Viewer
Laurent Bessard
parents:
1224
diff
changeset
|
2324 |
elif not self.Debug: |
814 | 2325 |
self.SelectedElement.HighlightPoint(pos) |
2326 |
else: |
|
2327 |
movex, movey = self.SelectedElement.OnMotion(event, dc, self.Scaling) |
|
2328 |
if movex != 0 or movey != 0: |
|
2329 |
self.RefreshRect(self.GetScrolledRect(self.SelectedElement.GetRedrawRect(movex, movey)), False) |
|
2330 |
elif self.Debug and self.StartMousePos is not None and event.Dragging(): |
|
2331 |
pos = event.GetPosition() |
|
2332 |
if abs(self.StartMousePos.x - pos.x) > 5 or abs(self.StartMousePos.y - pos.y) > 5: |
|
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2333 |
element = self.SelectedElement |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2334 |
if isinstance(self.SelectedElement, FBD_Block): |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2335 |
dc = self.GetLogicalDC() |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2336 |
connector = self.SelectedElement.TestConnector( |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2337 |
wx.Point(dc.DeviceToLogicalX(self.StartMousePos.x), |
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2338 |
dc.DeviceToLogicalY(self.StartMousePos.y))) |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2339 |
if connector is not None: |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2340 |
element = connector |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1166
diff
changeset
|
2341 |
iec_path = self.GetElementIECPath(element) |
814 | 2342 |
if iec_path is not None: |
2343 |
self.StartMousePos = None |
|
2344 |
if self.HighlightedElement is not None: |
|
2345 |
self.HighlightedElement.SetHighlighted(False) |
|
2346 |
self.HighlightedElement = None |
|
2347 |
data = wx.TextDataObject(str((iec_path, "debug"))) |
|
2348 |
dragSource = wx.DropSource(self.Editor) |
|
2349 |
dragSource.SetData(data) |
|
2350 |
dragSource.DoDragDrop() |
|
908
50a8192fbb23
Fixed bug with mouse capture not released in graphic Viewers in debug mode when drag'n dropping wire variable to DebugVariablePanel
Laurent Bessard
parents:
896
diff
changeset
|
2351 |
if self.Editor.HasCapture(): |
50a8192fbb23
Fixed bug with mouse capture not released in graphic Viewers in debug mode when drag'n dropping wire variable to DebugVariablePanel
Laurent Bessard
parents:
896
diff
changeset
|
2352 |
self.Editor.ReleaseMouse() |
50a8192fbb23
Fixed bug with mouse capture not released in graphic Viewers in debug mode when drag'n dropping wire variable to DebugVariablePanel
Laurent Bessard
parents:
896
diff
changeset
|
2353 |
wx.CallAfter(self.SetCurrentCursor, 0) |
814 | 2354 |
self.UpdateScrollPos(event) |
2355 |
event.Skip() |
|
2356 |
||
2357 |
def OnLeaveViewer(self, event): |
|
2358 |
if self.SelectedElement is not None and self.SelectedElement.GetDragging(): |
|
2359 |
event.Skip() |
|
2360 |
elif self.HighlightedElement is not None: |
|
2361 |
self.HighlightedElement.SetHighlighted(False) |
|
2362 |
self.HighlightedElement = None |
|
2363 |
event.Skip() |
|
2364 |
||
2365 |
def UpdateScrollPos(self, event): |
|
2366 |
if (event.Dragging() and self.SelectedElement is not None) or self.rubberBand.IsShown(): |
|
2367 |
position = event.GetPosition() |
|
2368 |
move_window = wx.Point() |
|
2369 |
window_size = self.Editor.GetClientSize() |
|
2370 |
xstart, ystart = self.GetViewStart() |
|
2371 |
if position.x < SCROLL_ZONE and xstart > 0: |
|
2372 |
move_window.x = -1 |
|
2373 |
elif position.x > window_size[0] - SCROLL_ZONE: |
|
2374 |
move_window.x = 1 |
|
2375 |
if position.y < SCROLL_ZONE and ystart > 0: |
|
2376 |
move_window.y = -1 |
|
2377 |
elif position.y > window_size[1] - SCROLL_ZONE: |
|
2378 |
move_window.y = 1 |
|
2379 |
if move_window.x != 0 or move_window.y != 0: |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
2380 |
self.RefreshVisibleElements(xp=xstart + move_window.x, yp=ystart + move_window.y) |
814 | 2381 |
self.Scroll(xstart + move_window.x, ystart + move_window.y) |
2382 |
self.RefreshScrollBars(move_window.x, move_window.y) |
|
2383 |
||
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
2384 |
def BlockCompatibility(self, startblock=None, endblock=None, direction=None): |
1567
a4bf874e4949
now only correct chart can be created in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1556
diff
changeset
|
2385 |
return True |
a4bf874e4949
now only correct chart can be created in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1556
diff
changeset
|
2386 |
|
1584
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2387 |
def GetPopupMenuItems(self): |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2388 |
start_connector = self.SelectedElement.GetStartConnected() |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2389 |
start_direction = start_connector.GetDirection() |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2390 |
startblock = start_connector.GetParentBlock() |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2391 |
items = [] |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2392 |
if isinstance(startblock, SFC_Objects): |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2393 |
startblockname = self.GetBlockName(startblock) |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2394 |
poss_div_types = [] |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2395 |
|
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2396 |
SFC_WireMenu_Buttons = { |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2397 |
'SFC_Step': (_(u'Step'), self.GetAddToWireMenuCallBack(self.AddNewStep, False)), |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2398 |
'SFC_Jump': (_(u'Jump'), self.GetAddToWireMenuCallBack(self.AddNewJump)), |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2399 |
'SFC_Transition': (_(u'Transition'), self.GetAddToWireMenuCallBack(self.AddNewTransition, False)), |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2400 |
'SFC_ActionBlock': (_(u'Action Block'), self.GetAddToWireMenuCallBack(self.AddNewActionBlock))} |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2401 |
|
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2402 |
for endblock in self.SFC_StandardRules.get(startblockname): |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2403 |
if start_direction in endblock: |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2404 |
if endblock[0] in divergence_types: |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2405 |
poss_div_types.append(endblock[0]) |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2406 |
else: |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2407 |
items.append(SFC_WireMenu_Buttons[endblock[0]]) |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2408 |
if len(poss_div_types) > 0: |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2409 |
items.append((_(u'Divergence'), self.GetAddToWireMenuCallBack(self.AddNewDivergence, |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2410 |
poss_div_types))) |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2411 |
elif start_direction == EAST: |
1838
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2412 |
items.extend([ |
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2413 |
(_(u'Block'), self.GetAddToWireMenuCallBack(self.AddNewBlock)), |
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2414 |
(_(u'Connection'), self.GetAddToWireMenuCallBack(self.AddNewConnection))]) |
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2415 |
|
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2416 |
if self.CurrentLanguage != "FBD": |
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2417 |
items.append((_(u'Contact'), self.GetAddToWireMenuCallBack(self.AddNewContact))) |
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2418 |
|
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2419 |
if self.CurrentLanguage == "LD": |
1584
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2420 |
items.extend([ |
1838
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2421 |
(_(u'Coil'), self.GetAddToWireMenuCallBack(self.AddNewCoil)), |
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2422 |
(_(u'Power Rail'), self.GetAddToWireMenuCallBack(self.AddNewPowerRail))]) |
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2423 |
|
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2424 |
if self.CurrentLanguage == "SFC": |
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2425 |
items.append( |
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2426 |
(_(u'Transition'), self.GetAddToWireMenuCallBack(self.AddNewTransition, True))) |
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2427 |
else: |
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2428 |
items.append( |
646245c1c0d9
fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
2429 |
(_(u'Variable'), self.GetAddToWireMenuCallBack(self.AddNewVariable, True))) |
1584
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2430 |
return items |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2431 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
2432 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
2433 |
# Keyboard event functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
2434 |
# ------------------------------------------------------------------------------- |
814 | 2435 |
|
2436 |
ARROW_KEY_MOVE = { |
|
2437 |
wx.WXK_LEFT: (-1, 0), |
|
2438 |
wx.WXK_RIGHT: (1, 0), |
|
2439 |
wx.WXK_UP: (0, -1), |
|
2440 |
wx.WXK_DOWN: (0, 1), |
|
2441 |
} |
|
2442 |
||
2443 |
def OnChar(self, event): |
|
2444 |
xpos, ypos = self.GetScrollPos(wx.HORIZONTAL), self.GetScrollPos(wx.VERTICAL) |
|
2445 |
xmax = self.GetScrollRange(wx.HORIZONTAL) - self.GetScrollThumb(wx.HORIZONTAL) |
|
2446 |
ymax = self.GetScrollRange(wx.VERTICAL) - self.GetScrollThumb(wx.VERTICAL) |
|
2447 |
keycode = event.GetKeyCode() |
|
2448 |
if self.Scaling is not None: |
|
2449 |
scaling = self.Scaling |
|
2450 |
else: |
|
2451 |
scaling = (8, 8) |
|
2452 |
if not self.Debug and keycode == wx.WXK_DELETE and self.SelectedElement is not None: |
|
2453 |
rect = self.SelectedElement.GetRedrawRect(1, 1) |
|
2454 |
self.SelectedElement.Delete() |
|
2455 |
self.SelectedElement = None |
|
2456 |
self.RefreshBuffer() |
|
2457 |
self.RefreshScrollBars() |
|
2458 |
wx.CallAfter(self.SetCurrentCursor, 0) |
|
2459 |
self.RefreshRect(self.GetScrolledRect(rect), False) |
|
2460 |
elif not self.Debug and keycode == wx.WXK_RETURN and self.SelectedElement is not None: |
|
2461 |
self.SelectedElement.OnLeftDClick(event, self.GetLogicalDC(), self.Scaling) |
|
1763
bcc07ff2362c
clean-up: fix PEP8 W601 .has_key() is deprecated, use 'in'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1762
diff
changeset
|
2462 |
elif keycode in self.ARROW_KEY_MOVE: |
814 | 2463 |
move = self.ARROW_KEY_MOVE[keycode] |
2464 |
if event.ControlDown() and event.ShiftDown(): |
|
2465 |
self.Scroll({-1: 0, 0: xpos, 1: xmax}[move[0]], |
|
2466 |
{-1: 0, 0: ypos, 1: ymax}[move[1]]) |
|
2467 |
self.RefreshVisibleElements() |
|
2468 |
elif event.ControlDown(): |
|
2469 |
self.Scroll(xpos + move[0], ypos + move[1]) |
|
2470 |
self.RefreshScrollBars() |
|
2471 |
self.RefreshVisibleElements() |
|
2472 |
elif not self.Debug and self.SelectedElement is not None: |
|
2473 |
movex, movey = move |
|
2474 |
if not event.AltDown() or event.ShiftDown(): |
|
2475 |
movex *= scaling[0] |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2476 |
movey *= scaling[1] |
814 | 2477 |
if event.ShiftDown() and not event.AltDown(): |
2478 |
movex *= 10 |
|
2479 |
movey *= 10 |
|
2480 |
self.SelectedElement.Move(movex, movey) |
|
2481 |
self.StartBuffering() |
|
2482 |
self.SelectedElement.RefreshModel() |
|
2483 |
self.RefreshScrollBars() |
|
1042
6dbdc6844eb9
Fixed refresh bug when moving selected elements
Laurent Bessard
parents:
980
diff
changeset
|
2484 |
self.RefreshVisibleElements() |
814 | 2485 |
self.RefreshRect(self.GetScrolledRect(self.SelectedElement.GetRedrawRect(movex, movey)), False) |
2486 |
elif not self.Debug and keycode == wx.WXK_SPACE and self.SelectedElement is not None and self.SelectedElement.Dragging: |
|
2487 |
if self.IsBlock(self.SelectedElement) or self.IsComment(self.SelectedElement): |
|
2488 |
block = self.CopyBlock(self.SelectedElement, wx.Point(*self.SelectedElement.GetPosition())) |
|
2489 |
event = wx.MouseEvent() |
|
1498
b11045a2f17c
fix deprecation warnings about accessing properties m_x, m_y of wxKeyEvent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1481
diff
changeset
|
2490 |
event.x, event.y = self.Editor.ScreenToClient(wx.GetMousePosition()) |
814 | 2491 |
dc = self.GetLogicalDC() |
2492 |
self.SelectedElement.OnLeftUp(event, dc, self.Scaling) |
|
2493 |
self.SelectedElement.SetSelected(False) |
|
2494 |
block.OnLeftDown(event, dc, self.Scaling) |
|
2495 |
self.SelectedElement = block |
|
2496 |
self.SelectedElement.SetSelected(True) |
|
2497 |
self.RefreshVariablePanel() |
|
2498 |
self.RefreshVisibleElements() |
|
2499 |
else: |
|
2500 |
event.Skip() |
|
2501 |
elif keycode == ord("+"): |
|
2502 |
self.SetScale(self.CurrentScale + 1) |
|
2503 |
self.ParentWindow.RefreshDisplayMenu() |
|
2504 |
elif keycode == ord("-"): |
|
2505 |
self.SetScale(self.CurrentScale - 1) |
|
2506 |
self.ParentWindow.RefreshDisplayMenu() |
|
2507 |
else: |
|
2508 |
event.Skip() |
|
2509 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
2510 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
2511 |
# Model adding functions from Drop Target |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
2512 |
# ------------------------------------------------------------------------------- |
814 | 2513 |
|
2514 |
def AddVariableBlock(self, x, y, scaling, var_class, var_name, var_type): |
|
2515 |
id = self.GetNewId() |
|
2516 |
variable = FBD_Variable(self, var_class, var_name, var_type, id) |
|
2517 |
width, height = variable.GetMinSize() |
|
2518 |
if scaling is not None: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2519 |
x = round(x / scaling[0]) * scaling[0] |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2520 |
y = round(y / scaling[1]) * scaling[1] |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2521 |
width = round(width / scaling[0] + 0.5) * scaling[0] |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2522 |
height = round(height / scaling[1] + 0.5) * scaling[1] |
814 | 2523 |
variable.SetPosition(x, y) |
2524 |
variable.SetSize(width, height) |
|
2525 |
self.AddBlock(variable) |
|
2526 |
self.Controler.AddEditedElementVariable(self.GetTagName(), id, var_class) |
|
2527 |
self.RefreshVariableModel(variable) |
|
2528 |
self.RefreshBuffer() |
|
2529 |
self.RefreshScrollBars() |
|
2530 |
self.RefreshVisibleElements() |
|
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
2531 |
self.Editor.Refresh(False) |
814 | 2532 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
2533 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
2534 |
# Model adding functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
2535 |
# ------------------------------------------------------------------------------- |
814 | 2536 |
|
2537 |
def GetScaledSize(self, width, height): |
|
2538 |
if self.Scaling is not None: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2539 |
width = round(width / self.Scaling[0] + 0.4) * self.Scaling[0] |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2540 |
height = round(height / self.Scaling[1] + 0.4) * self.Scaling[1] |
814 | 2541 |
return width, height |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2542 |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2543 |
def AddNewElement(self, element, bbox, wire=None, connector=None): |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2544 |
min_width, min_height = (element.GetMinSize(True) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2545 |
if isinstance(element, (LD_PowerRail, |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2546 |
SFC_Divergence)) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2547 |
else element.GetMinSize()) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2548 |
element.SetSize(*self.GetScaledSize( |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2549 |
max(bbox.width, min_width), max(bbox.height, min_height))) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2550 |
if wire is not None: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2551 |
if connector is None: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2552 |
connector = element.GetConnectors()["inputs"][0] |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2553 |
point = wire.GetPoint(-1) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2554 |
rel_pos = connector.GetRelPosition() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2555 |
direction = connector.GetDirection() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2556 |
element.SetPosition( |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2557 |
point[0] - rel_pos[0] - direction[0] * CONNECTOR_SIZE, |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2558 |
point[1] - rel_pos[1] - direction[1] * CONNECTOR_SIZE, |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2559 |
) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2560 |
connector.Connect((wire, -1)) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2561 |
wire.Refresh() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2562 |
self.DrawingWire = False |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2563 |
else: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2564 |
element.SetPosition(bbox.x, bbox.y) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2565 |
self.AddBlock(element) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2566 |
element.RefreshModel() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2567 |
self.RefreshBuffer() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2568 |
self.RefreshScrollBars() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2569 |
self.RefreshVisibleElements() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2570 |
element.Refresh() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2571 |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2572 |
def AddNewBlock(self, bbox, wire=None): |
1236
a5d1d2a2f366
Added support for default function block name in FBDBlockDialog
Laurent Bessard
parents:
1233
diff
changeset
|
2573 |
dialog = FBDBlockDialog(self.ParentWindow, self.Controler, self.TagName) |
814 | 2574 |
dialog.SetPreviewFont(self.GetFont()) |
1244 | 2575 |
dialog.SetMinElementSize((bbox.width, bbox.height)) |
814 | 2576 |
if dialog.ShowModal() == wx.ID_OK: |
2577 |
id = self.GetNewId() |
|
2578 |
values = dialog.GetValues() |
|
2579 |
values.setdefault("name", "") |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2580 |
block = FBD_Block( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2581 |
self, values["type"], values["name"], id, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2582 |
values["extension"], values["inputs"], |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2583 |
executionControl=values["executionControl"], |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2584 |
executionOrder=values["executionOrder"]) |
1260
11903e79ce66
Fixed bug when adding block into Viewer and added wire validity after adding block with wire drop support
Laurent Bessard
parents:
1259
diff
changeset
|
2585 |
self.Controler.AddEditedElementBlock(self.TagName, id, values["type"], values.get("name", None)) |
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2586 |
connector = None |
1287 | 2587 |
if wire is not None: |
2588 |
for input_connector in block.GetConnectors()["inputs"]: |
|
2589 |
if input_connector.IsCompatible( |
|
2590 |
wire.GetStartConnectedType()): |
|
2591 |
connector = input_connector |
|
2592 |
break |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2593 |
self.AddNewElement(block, bbox, wire, connector) |
1671
0dc834721d8e
add function block to variable panel if fb is added using toolbar
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1660
diff
changeset
|
2594 |
self.RefreshVariablePanel() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1711
diff
changeset
|
2595 |
self.ParentWindow.RefreshPouInstanceVariablesPanel() |
814 | 2596 |
dialog.Destroy() |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2597 |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2598 |
def AddNewVariable(self, bbox, exclude_input=False, wire=None): |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2599 |
dialog = FBDVariableDialog(self.ParentWindow, self.Controler, self.TagName, exclude_input) |
814 | 2600 |
dialog.SetPreviewFont(self.GetFont()) |
1244 | 2601 |
dialog.SetMinElementSize((bbox.width, bbox.height)) |
814 | 2602 |
if dialog.ShowModal() == wx.ID_OK: |
2603 |
id = self.GetNewId() |
|
2604 |
values = dialog.GetValues() |
|
1247 | 2605 |
variable = FBD_Variable(self, values["class"], values["expression"], values["var_type"], id) |
1248
2f08985625c0
Fixed bug FBD variable execution not set when newly created
Laurent Bessard
parents:
1247
diff
changeset
|
2606 |
variable.SetExecutionOrder(values["executionOrder"]) |
1244 | 2607 |
self.Controler.AddEditedElementVariable(self.TagName, id, values["class"]) |
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2608 |
self.AddNewElement(variable, bbox, wire) |
814 | 2609 |
dialog.Destroy() |
2610 |
||
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2611 |
def AddNewConnection(self, bbox, wire=None): |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2612 |
if wire is not None: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2613 |
values = { |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2614 |
"type": CONNECTOR, |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2615 |
"name": self.Controler.GenerateNewName( |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2616 |
self.TagName, None, "Connection%d", 0)} |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2617 |
else: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2618 |
dialog = ConnectionDialog(self.ParentWindow, self.Controler, self.TagName) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2619 |
dialog.SetPreviewFont(self.GetFont()) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2620 |
dialog.SetMinElementSize((bbox.width, bbox.height)) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2621 |
values = (dialog.GetValues() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2622 |
if dialog.ShowModal() == wx.ID_OK |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2623 |
else None) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2624 |
dialog.Destroy() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2625 |
if values is not None: |
814 | 2626 |
id = self.GetNewId() |
2627 |
connection = FBD_Connector(self, values["type"], values["name"], id) |
|
2628 |
self.Controler.AddEditedElementConnection(self.TagName, id, values["type"]) |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2629 |
self.AddNewElement(connection, bbox, wire) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2630 |
|
814 | 2631 |
def AddNewComment(self, bbox): |
2347
6dca42cd2b2b
Add custom dialog to add/edit comment block in graphical editors
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2345
diff
changeset
|
2632 |
dialog = CommentEditDialog(self.ParentWindow, |
6dca42cd2b2b
Add custom dialog to add/edit comment block in graphical editors
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2345
diff
changeset
|
2633 |
self.GetFont()) |
814 | 2634 |
if dialog.ShowModal() == wx.ID_OK: |
2635 |
value = dialog.GetValue() |
|
2636 |
id = self.GetNewId() |
|
2637 |
comment = Comment(self, value, id) |
|
2638 |
comment.SetPosition(bbox.x, bbox.y) |
|
2639 |
min_width, min_height = comment.GetMinSize() |
|
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
2640 |
comment.SetSize(*self.GetScaledSize(max(min_width, bbox.width), max(min_height, bbox.height))) |
814 | 2641 |
self.AddComment(comment) |
2642 |
self.Controler.AddEditedElementComment(self.TagName, id) |
|
2643 |
self.RefreshCommentModel(comment) |
|
2644 |
self.RefreshBuffer() |
|
2645 |
self.RefreshScrollBars() |
|
2646 |
self.RefreshVisibleElements() |
|
2647 |
comment.Refresh() |
|
2648 |
dialog.Destroy() |
|
2649 |
||
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2650 |
def AddNewContact(self, bbox, wire=None): |
1246 | 2651 |
dialog = LDElementDialog(self.ParentWindow, self.Controler, self.TagName, "contact") |
814 | 2652 |
dialog.SetPreviewFont(self.GetFont()) |
1246 | 2653 |
dialog.SetMinElementSize((bbox.width, bbox.height)) |
814 | 2654 |
if dialog.ShowModal() == wx.ID_OK: |
2655 |
id = self.GetNewId() |
|
2656 |
values = dialog.GetValues() |
|
1246 | 2657 |
contact = LD_Contact(self, values["modifier"], values["variable"], id) |
814 | 2658 |
self.Controler.AddEditedElementContact(self.TagName, id) |
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2659 |
self.AddNewElement(contact, bbox, wire) |
814 | 2660 |
dialog.Destroy() |
2661 |
||
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2662 |
def AddNewCoil(self, bbox, wire=None): |
1246 | 2663 |
dialog = LDElementDialog(self.ParentWindow, self.Controler, self.TagName, "coil") |
814 | 2664 |
dialog.SetPreviewFont(self.GetFont()) |
1246 | 2665 |
dialog.SetMinElementSize((bbox.width, bbox.height)) |
814 | 2666 |
if dialog.ShowModal() == wx.ID_OK: |
2667 |
id = self.GetNewId() |
|
2668 |
values = dialog.GetValues() |
|
1246 | 2669 |
coil = LD_Coil(self, values["modifier"], values["variable"], id) |
814 | 2670 |
self.Controler.AddEditedElementCoil(self.TagName, id) |
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2671 |
self.AddNewElement(coil, bbox, wire) |
814 | 2672 |
dialog.Destroy() |
2673 |
||
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2674 |
def AddNewPowerRail(self, bbox, wire=None): |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2675 |
if wire is not None: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2676 |
values = { |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2677 |
"type": RIGHTRAIL, |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2678 |
"pin_number": 1} |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2679 |
else: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2680 |
dialog = LDPowerRailDialog(self.ParentWindow, self.Controler, self.TagName) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2681 |
dialog.SetPreviewFont(self.GetFont()) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2682 |
dialog.SetMinElementSize((bbox.width, bbox.height)) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2683 |
values = (dialog.GetValues() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2684 |
if dialog.ShowModal() == wx.ID_OK |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2685 |
else None) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2686 |
dialog.Destroy() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2687 |
if values is not None: |
814 | 2688 |
id = self.GetNewId() |
1249 | 2689 |
powerrail = LD_PowerRail(self, values["type"], id, values["pin_number"]) |
814 | 2690 |
self.Controler.AddEditedElementPowerRail(self.TagName, id, values["type"]) |
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2691 |
self.AddNewElement(powerrail, bbox, wire) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2692 |
|
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2693 |
def AddNewStep(self, bbox, initial=False, wire=None): |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2694 |
if wire is not None: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2695 |
values = { |
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
2696 |
"name": self.Controler.GenerateNewName(self.TagName, None, "Step%d", 0), |
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
2697 |
"input": True, |
1599
466c26b0cfc2
by default init input and output in step sfc block, and output for initial step sfc block
Sergey Surkov <surkovsv93@gmail.com>
parents:
1586
diff
changeset
|
2698 |
"output": True, |
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
2699 |
"action": False |
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
2700 |
} |
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2701 |
else: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2702 |
dialog = SFCStepDialog(self.ParentWindow, self.Controler, self.TagName, initial) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2703 |
dialog.SetPreviewFont(self.GetFont()) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2704 |
dialog.SetMinElementSize((bbox.width, bbox.height)) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2705 |
values = (dialog.GetValues() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2706 |
if dialog.ShowModal() == wx.ID_OK |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2707 |
else None) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2708 |
dialog.Destroy() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2709 |
if values is not None: |
814 | 2710 |
id = self.GetNewId() |
2711 |
step = SFC_Step(self, values["name"], initial, id) |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2712 |
self.Controler.AddEditedElementStep(self.TagName, id) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2713 |
for connector in ["input", "output", "action"]: |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2714 |
getattr(step, ("Add" |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2715 |
if values[connector] |
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2716 |
else "Remove") + connector.capitalize())() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2717 |
self.AddNewElement(step, bbox, wire) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2718 |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2719 |
def AddNewTransition(self, bbox, connection=False, wire=None): |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2720 |
if wire is not None and connection: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2721 |
values = { |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2722 |
"type": "connection", |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2723 |
"value": None, |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2724 |
"priority": 0} |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2725 |
else: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2726 |
dialog = SFCTransitionDialog(self.ParentWindow, self.Controler, self.TagName, self.GetDrawingMode() == FREEDRAWING_MODE) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2727 |
dialog.SetPreviewFont(self.GetFont()) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2728 |
dialog.SetMinElementSize((bbox.width, bbox.height)) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2729 |
values = (dialog.GetValues() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2730 |
if dialog.ShowModal() == wx.ID_OK |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2731 |
else None) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2732 |
dialog.Destroy() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2733 |
if values is not None: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2734 |
id = self.GetNewId() |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2735 |
transition = SFC_Transition(self, values["type"], values["value"], values["priority"], id) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2736 |
self.Controler.AddEditedElementTransition(self.TagName, id) |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2737 |
if connection: |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2738 |
connector = transition.GetConditionConnector() |
814 | 2739 |
else: |
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2740 |
connector = transition.GetConnectors()["inputs"][0] |
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2741 |
self.AddNewElement(transition, bbox, wire, connector) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2742 |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
2743 |
def AddNewDivergence(self, bbox, poss_div_types=None, wire=None): |
1584
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1581
diff
changeset
|
2744 |
dialog = SFCDivergenceDialog(self.ParentWindow, self.Controler, self.TagName, poss_div_types) |
814 | 2745 |
dialog.SetPreviewFont(self.GetFont()) |
1251 | 2746 |
dialog.SetMinElementSize((bbox.width, bbox.height)) |
814 | 2747 |
if dialog.ShowModal() == wx.ID_OK: |
2748 |
id = self.GetNewId() |
|
2749 |
values = dialog.GetValues() |
|
2750 |
divergence = SFC_Divergence(self, values["type"], values["number"], id) |
|
2751 |
self.Controler.AddEditedElementDivergence(self.TagName, id, values["type"]) |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2752 |
self.AddNewElement(divergence, bbox, wire) |
814 | 2753 |
dialog.Destroy() |
2754 |
||
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2755 |
def AddNewJump(self, bbox, wire=None): |
814 | 2756 |
choices = [] |
2757 |
for block in self.Blocks.itervalues(): |
|
2758 |
if isinstance(block, SFC_Step): |
|
2759 |
choices.append(block.GetName()) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2760 |
dialog = wx.SingleChoiceDialog(self.ParentWindow, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2761 |
_("Add a new jump"), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2762 |
_("Please choose a target"), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2763 |
choices, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2764 |
wx.DEFAULT_DIALOG_STYLE | wx.OK | wx.CANCEL) |
814 | 2765 |
if dialog.ShowModal() == wx.ID_OK: |
2766 |
id = self.GetNewId() |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2767 |
jump = SFC_Jump(self, dialog.GetStringSelection(), id) |
814 | 2768 |
self.Controler.AddEditedElementJump(self.TagName, id) |
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2769 |
self.AddNewElement(jump, bbox, wire) |
814 | 2770 |
dialog.Destroy() |
2771 |
||
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2772 |
def AddNewActionBlock(self, bbox, wire=None): |
814 | 2773 |
dialog = ActionBlockDialog(self.ParentWindow) |
2774 |
dialog.SetQualifierList(self.Controler.GetQualifierTypes()) |
|
2775 |
dialog.SetActionList(self.Controler.GetEditedElementActions(self.TagName, self.Debug)) |
|
1347
533741e5075c
Fixed pou variables information loading stylesheet
Laurent Bessard
parents:
1342
diff
changeset
|
2776 |
dialog.SetVariableList(self.Controler.GetEditedElementInterfaceVars(self.TagName, debug=self.Debug)) |
814 | 2777 |
if dialog.ShowModal() == wx.ID_OK: |
2778 |
id = self.GetNewId() |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2779 |
actionblock = SFC_ActionBlock(self, dialog.GetValues(), id) |
814 | 2780 |
self.Controler.AddEditedElementActionBlock(self.TagName, id) |
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1252
diff
changeset
|
2781 |
self.AddNewElement(actionblock, bbox, wire) |
814 | 2782 |
dialog.Destroy() |
2783 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
2784 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
2785 |
# Edit element content functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
2786 |
# ------------------------------------------------------------------------------- |
814 | 2787 |
|
2788 |
def EditBlockContent(self, block): |
|
1236
a5d1d2a2f366
Added support for default function block name in FBDBlockDialog
Laurent Bessard
parents:
1233
diff
changeset
|
2789 |
dialog = FBDBlockDialog(self.ParentWindow, self.Controler, self.TagName) |
814 | 2790 |
dialog.SetPreviewFont(self.GetFont()) |
1244 | 2791 |
dialog.SetMinElementSize(block.GetSize()) |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2792 |
old_values = { |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2793 |
"name": block.GetName(), |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2794 |
"type": block.GetType(), |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2795 |
"extension": block.GetExtension(), |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2796 |
"inputs": block.GetInputTypes(), |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2797 |
"executionControl": block.GetExecutionControl(), |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2798 |
"executionOrder": block.GetExecutionOrder() |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2799 |
} |
814 | 2800 |
dialog.SetValues(old_values) |
2801 |
if dialog.ShowModal() == wx.ID_OK: |
|
2802 |
new_values = dialog.GetValues() |
|
2803 |
rect = block.GetRedrawRect(1, 1) |
|
2804 |
if "name" in new_values: |
|
2805 |
block.SetName(new_values["name"]) |
|
2806 |
else: |
|
2807 |
block.SetName("") |
|
2808 |
block.SetSize(*self.GetScaledSize(new_values["width"], new_values["height"])) |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
2809 |
block.SetType(new_values["type"], new_values["extension"], executionControl=new_values["executionControl"]) |
814 | 2810 |
block.SetExecutionOrder(new_values["executionOrder"]) |
2811 |
rect = rect.Union(block.GetRedrawRect()) |
|
2812 |
self.RefreshBlockModel(block) |
|
2813 |
self.RefreshBuffer() |
|
2814 |
if old_values["executionOrder"] != new_values["executionOrder"]: |
|
2815 |
self.RefreshView(selection=({block.GetId(): True}, {})) |
|
2816 |
else: |
|
2817 |
self.RefreshScrollBars() |
|
2818 |
self.RefreshVisibleElements() |
|
2819 |
block.Refresh(rect) |
|
2820 |
self.RefreshVariablePanel() |
|
2821 |
self.ParentWindow.RefreshPouInstanceVariablesPanel() |
|
2822 |
dialog.Destroy() |
|
2823 |
||
2824 |
def EditVariableContent(self, variable): |
|
1244 | 2825 |
dialog = FBDVariableDialog(self.ParentWindow, self.Controler, self.TagName) |
814 | 2826 |
dialog.SetPreviewFont(self.GetFont()) |
1244 | 2827 |
dialog.SetMinElementSize(variable.GetSize()) |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2828 |
old_values = { |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2829 |
"expression": variable.GetName(), |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2830 |
"class": variable.GetType(), |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2831 |
"executionOrder": variable.GetExecutionOrder() |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2832 |
} |
814 | 2833 |
dialog.SetValues(old_values) |
2834 |
if dialog.ShowModal() == wx.ID_OK: |
|
2835 |
new_values = dialog.GetValues() |
|
2836 |
rect = variable.GetRedrawRect(1, 1) |
|
1244 | 2837 |
variable.SetName(new_values["expression"]) |
2838 |
variable.SetType(new_values["class"], new_values["var_type"]) |
|
814 | 2839 |
variable.SetSize(*self.GetScaledSize(new_values["width"], new_values["height"])) |
2840 |
variable.SetExecutionOrder(new_values["executionOrder"]) |
|
2841 |
rect = rect.Union(variable.GetRedrawRect()) |
|
1244 | 2842 |
if old_values["class"] != new_values["class"]: |
814 | 2843 |
id = variable.GetId() |
2844 |
self.Controler.RemoveEditedElementInstance(self.TagName, id) |
|
1244 | 2845 |
self.Controler.AddEditedElementVariable(self.TagName, id, new_values["class"]) |
814 | 2846 |
self.RefreshVariableModel(variable) |
2847 |
self.RefreshBuffer() |
|
2848 |
if old_values["executionOrder"] != new_values["executionOrder"]: |
|
2849 |
self.RefreshView(selection=({variable.GetId(): True}, {})) |
|
2850 |
else: |
|
2851 |
self.RefreshVisibleElements() |
|
2852 |
self.RefreshScrollBars() |
|
2853 |
variable.Refresh(rect) |
|
2854 |
dialog.Destroy() |
|
2855 |
||
2856 |
def EditConnectionContent(self, connection): |
|
1245 | 2857 |
dialog = ConnectionDialog(self.ParentWindow, self.Controler, self.TagName, True) |
814 | 2858 |
dialog.SetPreviewFont(self.GetFont()) |
1245 | 2859 |
dialog.SetMinElementSize(connection.GetSize()) |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2860 |
values = {"name": connection.GetName(), "type": connection.GetType()} |
814 | 2861 |
dialog.SetValues(values) |
856
b64e436f000e
Adding button in ConnectionDialog to propagate connection name modification to all connections with the same name in POU
Laurent Bessard
parents:
852
diff
changeset
|
2862 |
result = dialog.ShowModal() |
b64e436f000e
Adding button in ConnectionDialog to propagate connection name modification to all connections with the same name in POU
Laurent Bessard
parents:
852
diff
changeset
|
2863 |
dialog.Destroy() |
b64e436f000e
Adding button in ConnectionDialog to propagate connection name modification to all connections with the same name in POU
Laurent Bessard
parents:
852
diff
changeset
|
2864 |
if result in [wx.ID_OK, wx.ID_YESTOALL]: |
814 | 2865 |
old_type = connection.GetType() |
2866 |
old_name = connection.GetName() |
|
2867 |
values = dialog.GetValues() |
|
2868 |
rect = connection.GetRedrawRect(1, 1) |
|
2869 |
connection.SetName(values["name"]) |
|
2870 |
connection.SetType(values["type"]) |
|
2871 |
connection.SetSize(*self.GetScaledSize(values["width"], values["height"])) |
|
2872 |
rect = rect.Union(connection.GetRedrawRect()) |
|
2873 |
if old_type != values["type"]: |
|
2874 |
id = connection.GetId() |
|
2875 |
self.Controler.RemoveEditedElementInstance(self.TagName, id) |
|
2876 |
self.Controler.AddEditedElementConnection(self.TagName, id, values["type"]) |
|
2877 |
self.RefreshConnectionModel(connection) |
|
856
b64e436f000e
Adding button in ConnectionDialog to propagate connection name modification to all connections with the same name in POU
Laurent Bessard
parents:
852
diff
changeset
|
2878 |
if old_name != values["name"] and result == wx.ID_YESTOALL: |
814 | 2879 |
self.Controler.UpdateEditedElementUsedVariable(self.TagName, old_name, values["name"]) |
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
832
diff
changeset
|
2880 |
self.RefreshBuffer() |
814 | 2881 |
self.RefreshView(selection=({connection.GetId(): True}, {})) |
2882 |
else: |
|
856
b64e436f000e
Adding button in ConnectionDialog to propagate connection name modification to all connections with the same name in POU
Laurent Bessard
parents:
852
diff
changeset
|
2883 |
self.RefreshBuffer() |
814 | 2884 |
self.RefreshScrollBars() |
2885 |
self.RefreshVisibleElements() |
|
2886 |
connection.Refresh(rect) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2887 |
|
814 | 2888 |
def EditContactContent(self, contact): |
1246 | 2889 |
dialog = LDElementDialog(self.ParentWindow, self.Controler, self.TagName, "contact") |
814 | 2890 |
dialog.SetPreviewFont(self.GetFont()) |
1246 | 2891 |
dialog.SetMinElementSize(contact.GetSize()) |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2892 |
dialog.SetValues({"variable": contact.GetName(), |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2893 |
"modifier": contact.GetType()}) |
814 | 2894 |
if dialog.ShowModal() == wx.ID_OK: |
2895 |
values = dialog.GetValues() |
|
2896 |
rect = contact.GetRedrawRect(1, 1) |
|
1246 | 2897 |
contact.SetName(values["variable"]) |
2898 |
contact.SetType(values["modifier"]) |
|
814 | 2899 |
contact.SetSize(*self.GetScaledSize(values["width"], values["height"])) |
2900 |
rect = rect.Union(contact.GetRedrawRect()) |
|
2901 |
self.RefreshContactModel(contact) |
|
2902 |
self.RefreshBuffer() |
|
2903 |
self.RefreshScrollBars() |
|
2904 |
self.RefreshVisibleElements() |
|
2905 |
contact.Refresh(rect) |
|
2906 |
dialog.Destroy() |
|
2907 |
||
2908 |
def EditCoilContent(self, coil): |
|
1246 | 2909 |
dialog = LDElementDialog(self.ParentWindow, self.Controler, self.TagName, "coil") |
814 | 2910 |
dialog.SetPreviewFont(self.GetFont()) |
1246 | 2911 |
dialog.SetMinElementSize(coil.GetSize()) |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2912 |
dialog.SetValues({"variable": coil.GetName(), |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2913 |
"modifier": coil.GetType()}) |
814 | 2914 |
if dialog.ShowModal() == wx.ID_OK: |
2915 |
values = dialog.GetValues() |
|
2916 |
rect = coil.GetRedrawRect(1, 1) |
|
1246 | 2917 |
coil.SetName(values["variable"]) |
2918 |
coil.SetType(values["modifier"]) |
|
814 | 2919 |
coil.SetSize(*self.GetScaledSize(values["width"], values["height"])) |
2920 |
rect = rect.Union(coil.GetRedrawRect()) |
|
2921 |
self.RefreshCoilModel(coil) |
|
2922 |
self.RefreshBuffer() |
|
2923 |
self.RefreshScrollBars() |
|
2924 |
self.RefreshVisibleElements() |
|
2925 |
coil.Refresh(rect) |
|
2926 |
dialog.Destroy() |
|
2927 |
||
2928 |
def EditPowerRailContent(self, powerrail): |
|
1249 | 2929 |
dialog = LDPowerRailDialog(self.ParentWindow, self.Controler, self.TagName) |
814 | 2930 |
dialog.SetPreviewFont(self.GetFont()) |
1249 | 2931 |
dialog.SetMinElementSize(powerrail.GetSize()) |
2932 |
powerrail_type = powerrail.GetType() |
|
2933 |
dialog.SetValues({ |
|
2934 |
"type": powerrail.GetType(), |
|
2935 |
"pin_number": len(powerrail.GetConnectors()[ |
|
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
2936 |
("outputs" if powerrail_type == LEFTRAIL else "inputs")])}) |
814 | 2937 |
if dialog.ShowModal() == wx.ID_OK: |
2938 |
values = dialog.GetValues() |
|
2939 |
rect = powerrail.GetRedrawRect(1, 1) |
|
1249 | 2940 |
powerrail.SetType(values["type"], values["pin_number"]) |
814 | 2941 |
powerrail.SetSize(*self.GetScaledSize(values["width"], values["height"])) |
2942 |
rect = rect.Union(powerrail.GetRedrawRect()) |
|
1249 | 2943 |
if powerrail_type != values["type"]: |
814 | 2944 |
id = powerrail.GetId() |
2945 |
self.Controler.RemoveEditedElementInstance(self.TagName, id) |
|
2946 |
self.Controler.AddEditedElementPowerRail(self.TagName, id, values["type"]) |
|
2947 |
self.RefreshPowerRailModel(powerrail) |
|
2948 |
self.RefreshBuffer() |
|
2949 |
self.RefreshScrollBars() |
|
2950 |
self.RefreshVisibleElements() |
|
2951 |
powerrail.Refresh(rect) |
|
2952 |
dialog.Destroy() |
|
2953 |
||
2954 |
def EditStepContent(self, step): |
|
1250
7e6de17c687a
Rewrite SFCStepDialog and factorize code for creating common dialog sizers
Laurent Bessard
parents:
1249
diff
changeset
|
2955 |
dialog = SFCStepDialog(self.ParentWindow, self.Controler, self.TagName, step.GetInitial()) |
814 | 2956 |
dialog.SetPreviewFont(self.GetFont()) |
1250
7e6de17c687a
Rewrite SFCStepDialog and factorize code for creating common dialog sizers
Laurent Bessard
parents:
1249
diff
changeset
|
2957 |
dialog.SetMinElementSize(step.GetSize()) |
814 | 2958 |
connectors = step.GetConnectors() |
1250
7e6de17c687a
Rewrite SFCStepDialog and factorize code for creating common dialog sizers
Laurent Bessard
parents:
1249
diff
changeset
|
2959 |
dialog.SetValues({ |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
2960 |
"name": step.GetName(), |
1250
7e6de17c687a
Rewrite SFCStepDialog and factorize code for creating common dialog sizers
Laurent Bessard
parents:
1249
diff
changeset
|
2961 |
"input": len(connectors["inputs"]) > 0, |
7e6de17c687a
Rewrite SFCStepDialog and factorize code for creating common dialog sizers
Laurent Bessard
parents:
1249
diff
changeset
|
2962 |
"output": len(connectors["outputs"]) > 0, |
1743
c3c3d1318130
clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1741
diff
changeset
|
2963 |
"action": step.GetActionConnector() is not None}) |
814 | 2964 |
if dialog.ShowModal() == wx.ID_OK: |
2965 |
values = dialog.GetValues() |
|
2966 |
rect = step.GetRedrawRect(1, 1) |
|
1607
f9c672ed8f9e
rename all corresponding SFC jumps when SFC step is renamed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1605
diff
changeset
|
2967 |
|
f9c672ed8f9e
rename all corresponding SFC jumps when SFC step is renamed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1605
diff
changeset
|
2968 |
new_name = values["name"] |
f9c672ed8f9e
rename all corresponding SFC jumps when SFC step is renamed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1605
diff
changeset
|
2969 |
if self.GetDrawingMode() == DRIVENDRAWING_MODE: |
f9c672ed8f9e
rename all corresponding SFC jumps when SFC step is renamed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1605
diff
changeset
|
2970 |
old_name = step.GetName().upper() |
f9c672ed8f9e
rename all corresponding SFC jumps when SFC step is renamed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1605
diff
changeset
|
2971 |
if new_name.upper() != old_name: |
f9c672ed8f9e
rename all corresponding SFC jumps when SFC step is renamed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1605
diff
changeset
|
2972 |
for block in self.Blocks.itervalues(): |
f9c672ed8f9e
rename all corresponding SFC jumps when SFC step is renamed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1605
diff
changeset
|
2973 |
if isinstance(block, SFC_Jump): |
f9c672ed8f9e
rename all corresponding SFC jumps when SFC step is renamed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1605
diff
changeset
|
2974 |
if old_name == block.GetTarget().upper(): |
f9c672ed8f9e
rename all corresponding SFC jumps when SFC step is renamed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1605
diff
changeset
|
2975 |
block.SetTarget(new_name) |
f9c672ed8f9e
rename all corresponding SFC jumps when SFC step is renamed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1605
diff
changeset
|
2976 |
block.RefreshModel() |
f9c672ed8f9e
rename all corresponding SFC jumps when SFC step is renamed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1605
diff
changeset
|
2977 |
rect = rect.Union(block.GetRedrawRect()) |
f9c672ed8f9e
rename all corresponding SFC jumps when SFC step is renamed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1605
diff
changeset
|
2978 |
block.Refresh(rect) |
f9c672ed8f9e
rename all corresponding SFC jumps when SFC step is renamed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1605
diff
changeset
|
2979 |
step.SetName(new_name) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1711
diff
changeset
|
2980 |
|
814 | 2981 |
if values["input"]: |
2982 |
step.AddInput() |
|
2983 |
else: |
|
2984 |
step.RemoveInput() |
|
2985 |
if values["output"]: |
|
2986 |
step.AddOutput() |
|
2987 |
else: |
|
2988 |
step.RemoveOutput() |
|
2989 |
if values["action"]: |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
2990 |
step.AddAction() |
814 | 2991 |
else: |
2992 |
step.RemoveAction() |
|
2993 |
step.UpdateSize(*self.GetScaledSize(values["width"], values["height"])) |
|
2994 |
rect = rect.Union(step.GetRedrawRect()) |
|
2995 |
self.RefreshStepModel(step) |
|
2996 |
self.RefreshBuffer() |
|
2997 |
self.RefreshScrollBars() |
|
2998 |
self.RefreshVisibleElements() |
|
2999 |
step.Refresh(rect) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3000 |
|
814 | 3001 |
def EditTransitionContent(self, transition): |
1252 | 3002 |
dialog = SFCTransitionDialog(self.ParentWindow, self.Controler, self.TagName, self.GetDrawingMode() == FREEDRAWING_MODE) |
814 | 3003 |
dialog.SetPreviewFont(self.GetFont()) |
1252 | 3004 |
dialog.SetMinElementSize(transition.GetSize()) |
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
3005 |
dialog.SetValues({ |
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
3006 |
"type": transition.GetType(), |
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
3007 |
"value": transition.GetCondition(), |
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
3008 |
"priority": transition.GetPriority() |
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
3009 |
}) |
814 | 3010 |
if dialog.ShowModal() == wx.ID_OK: |
3011 |
values = dialog.GetValues() |
|
3012 |
rect = transition.GetRedrawRect(1, 1) |
|
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
3013 |
transition.SetType(values["type"], values["value"]) |
814 | 3014 |
transition.SetPriority(values["priority"]) |
3015 |
rect = rect.Union(transition.GetRedrawRect()) |
|
3016 |
self.RefreshTransitionModel(transition) |
|
3017 |
self.RefreshBuffer() |
|
3018 |
self.RefreshScrollBars() |
|
3019 |
self.RefreshVisibleElements() |
|
3020 |
transition.Refresh(rect) |
|
3021 |
dialog.Destroy() |
|
3022 |
||
3023 |
def EditJumpContent(self, jump): |
|
3024 |
choices = [] |
|
3025 |
for block in self.Blocks.itervalues(): |
|
3026 |
if isinstance(block, SFC_Step): |
|
3027 |
choices.append(block.GetName()) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3028 |
dialog = wx.SingleChoiceDialog(self.ParentWindow, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
3029 |
_("Edit jump target"), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
3030 |
_("Please choose a target"), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
3031 |
choices, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
3032 |
wx.DEFAULT_DIALOG_STYLE | wx.OK | wx.CANCEL) |
1609
0d961dc6f58f
fix problem that it was impossible to edit SFC jump, if it references non-existent SFC step
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1608
diff
changeset
|
3033 |
try: |
0d961dc6f58f
fix problem that it was impossible to edit SFC jump, if it references non-existent SFC step
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1608
diff
changeset
|
3034 |
indx = choices.index(jump.GetTarget()) |
0d961dc6f58f
fix problem that it was impossible to edit SFC jump, if it references non-existent SFC step
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1608
diff
changeset
|
3035 |
dialog.SetSelection(indx) |
0d961dc6f58f
fix problem that it was impossible to edit SFC jump, if it references non-existent SFC step
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1608
diff
changeset
|
3036 |
except ValueError: |
0d961dc6f58f
fix problem that it was impossible to edit SFC jump, if it references non-existent SFC step
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1608
diff
changeset
|
3037 |
pass |
0d961dc6f58f
fix problem that it was impossible to edit SFC jump, if it references non-existent SFC step
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1608
diff
changeset
|
3038 |
|
814 | 3039 |
if dialog.ShowModal() == wx.ID_OK: |
3040 |
value = dialog.GetStringSelection() |
|
3041 |
rect = jump.GetRedrawRect(1, 1) |
|
3042 |
jump.SetTarget(value) |
|
3043 |
rect = rect.Union(jump.GetRedrawRect()) |
|
3044 |
self.RefreshJumpModel(jump) |
|
3045 |
self.RefreshBuffer() |
|
3046 |
self.RefreshScrollBars() |
|
3047 |
self.RefreshVisibleElements() |
|
3048 |
jump.Refresh(rect) |
|
3049 |
dialog.Destroy() |
|
3050 |
||
3051 |
def EditActionBlockContent(self, actionblock): |
|
3052 |
dialog = ActionBlockDialog(self.ParentWindow) |
|
3053 |
dialog.SetQualifierList(self.Controler.GetQualifierTypes()) |
|
3054 |
dialog.SetActionList(self.Controler.GetEditedElementActions(self.TagName, self.Debug)) |
|
1347
533741e5075c
Fixed pou variables information loading stylesheet
Laurent Bessard
parents:
1342
diff
changeset
|
3055 |
dialog.SetVariableList(self.Controler.GetEditedElementInterfaceVars(self.TagName, debug=self.Debug)) |
814 | 3056 |
dialog.SetValues(actionblock.GetActions()) |
3057 |
if dialog.ShowModal() == wx.ID_OK: |
|
3058 |
actions = dialog.GetValues() |
|
3059 |
rect = actionblock.GetRedrawRect(1, 1) |
|
3060 |
actionblock.SetActions(actions) |
|
3061 |
actionblock.SetSize(*self.GetScaledSize(*actionblock.GetSize())) |
|
3062 |
rect = rect.Union(actionblock.GetRedrawRect()) |
|
3063 |
self.RefreshActionBlockModel(actionblock) |
|
3064 |
self.RefreshBuffer() |
|
3065 |
self.RefreshScrollBars() |
|
3066 |
self.RefreshVisibleElements() |
|
3067 |
actionblock.Refresh(rect) |
|
3068 |
dialog.Destroy() |
|
3069 |
||
3070 |
def EditCommentContent(self, comment): |
|
2347
6dca42cd2b2b
Add custom dialog to add/edit comment block in graphical editors
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2345
diff
changeset
|
3071 |
dialog = CommentEditDialog(self.ParentWindow, |
6dca42cd2b2b
Add custom dialog to add/edit comment block in graphical editors
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2345
diff
changeset
|
3072 |
self.GetFont(), |
6dca42cd2b2b
Add custom dialog to add/edit comment block in graphical editors
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2345
diff
changeset
|
3073 |
comment.GetContent(), |
6dca42cd2b2b
Add custom dialog to add/edit comment block in graphical editors
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2345
diff
changeset
|
3074 |
comment.GetSize()) |
814 | 3075 |
if dialog.ShowModal() == wx.ID_OK: |
3076 |
value = dialog.GetValue() |
|
3077 |
rect = comment.GetRedrawRect(1, 1) |
|
3078 |
comment.SetContent(value) |
|
3079 |
comment.SetSize(*self.GetScaledSize(*comment.GetSize())) |
|
3080 |
rect = rect.Union(comment.GetRedrawRect()) |
|
3081 |
self.RefreshCommentModel(comment) |
|
3082 |
self.RefreshBuffer() |
|
3083 |
self.RefreshScrollBars() |
|
3084 |
self.RefreshVisibleElements() |
|
3085 |
comment.Refresh(rect) |
|
3086 |
dialog.Destroy() |
|
3087 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3088 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3089 |
# Model update functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3090 |
# ------------------------------------------------------------------------------- |
814 | 3091 |
|
3092 |
def RefreshBlockModel(self, block): |
|
3093 |
blockid = block.GetId() |
|
3094 |
infos = {} |
|
3095 |
infos["type"] = block.GetType() |
|
3096 |
infos["name"] = block.GetName() |
|
3097 |
if self.CurrentLanguage == "FBD": |
|
3098 |
infos["executionOrder"] = block.GetExecutionOrder() |
|
3099 |
infos["x"], infos["y"] = block.GetPosition() |
|
3100 |
infos["width"], infos["height"] = block.GetSize() |
|
3101 |
infos["connectors"] = block.GetConnectors() |
|
3102 |
self.Controler.SetEditedElementBlockInfos(self.TagName, blockid, infos) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3103 |
|
857
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3104 |
def ChangeVariableType(self, variable, new_type): |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3105 |
old_type = variable.GetType() |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3106 |
rect = variable.GetRedrawRect(1, 1) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3107 |
if old_type != new_type: |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3108 |
variable.SetType(new_type, variable.GetValueType()) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3109 |
id = variable.GetId() |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3110 |
self.Controler.RemoveEditedElementInstance(self.TagName, id) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3111 |
self.Controler.AddEditedElementVariable(self.TagName, id, new_type) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3112 |
self.RefreshVariableModel(variable) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3113 |
self.RefreshBuffer() |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3114 |
self.RefreshVisibleElements() |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3115 |
self.RefreshScrollBars() |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3116 |
variable.Refresh(rect.Union(variable.GetRedrawRect())) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3117 |
|
814 | 3118 |
def RefreshVariableModel(self, variable): |
3119 |
variableid = variable.GetId() |
|
3120 |
infos = {} |
|
3121 |
infos["name"] = variable.GetName() |
|
3122 |
if self.CurrentLanguage == "FBD": |
|
3123 |
infos["executionOrder"] = variable.GetExecutionOrder() |
|
3124 |
infos["x"], infos["y"] = variable.GetPosition() |
|
3125 |
infos["width"], infos["height"] = variable.GetSize() |
|
3126 |
infos["connectors"] = variable.GetConnectors() |
|
3127 |
self.Controler.SetEditedElementVariableInfos(self.TagName, variableid, infos) |
|
3128 |
||
857
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3129 |
def ChangeConnectionType(self, connection, new_type): |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3130 |
old_type = connection.GetType() |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3131 |
rect = connection.GetRedrawRect(1, 1) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3132 |
if old_type != new_type: |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3133 |
connection.SetType(new_type) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3134 |
id = connection.GetId() |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3135 |
self.Controler.RemoveEditedElementInstance(self.TagName, id) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3136 |
self.Controler.AddEditedElementConnection(self.TagName, id, new_type) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3137 |
self.RefreshConnectionModel(connection) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3138 |
self.RefreshBuffer() |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3139 |
self.RefreshScrollBars() |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3140 |
self.RefreshVisibleElements() |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3141 |
connection.Refresh(rect.Union(connection.GetRedrawRect())) |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
856
diff
changeset
|
3142 |
|
814 | 3143 |
def RefreshConnectionModel(self, connection): |
3144 |
connectionid = connection.GetId() |
|
3145 |
infos = {} |
|
3146 |
infos["name"] = connection.GetName() |
|
3147 |
infos["x"], infos["y"] = connection.GetPosition() |
|
3148 |
infos["width"], infos["height"] = connection.GetSize() |
|
3149 |
infos["connector"] = connection.GetConnector() |
|
3150 |
self.Controler.SetEditedElementConnectionInfos(self.TagName, connectionid, infos) |
|
3151 |
||
3152 |
def RefreshCommentModel(self, comment): |
|
3153 |
commentid = comment.GetId() |
|
3154 |
infos = {} |
|
3155 |
infos["content"] = comment.GetContent() |
|
3156 |
infos["x"], infos["y"] = comment.GetPosition() |
|
3157 |
infos["width"], infos["height"] = comment.GetSize() |
|
3158 |
self.Controler.SetEditedElementCommentInfos(self.TagName, commentid, infos) |
|
3159 |
||
3160 |
def RefreshPowerRailModel(self, powerrail): |
|
3161 |
powerrailid = powerrail.GetId() |
|
3162 |
infos = {} |
|
3163 |
infos["x"], infos["y"] = powerrail.GetPosition() |
|
3164 |
infos["width"], infos["height"] = powerrail.GetSize() |
|
3165 |
infos["connectors"] = powerrail.GetConnectors() |
|
3166 |
self.Controler.SetEditedElementPowerRailInfos(self.TagName, powerrailid, infos) |
|
3167 |
||
3168 |
def RefreshContactModel(self, contact): |
|
3169 |
contactid = contact.GetId() |
|
3170 |
infos = {} |
|
3171 |
infos["name"] = contact.GetName() |
|
3172 |
infos["type"] = contact.GetType() |
|
3173 |
infos["x"], infos["y"] = contact.GetPosition() |
|
3174 |
infos["width"], infos["height"] = contact.GetSize() |
|
3175 |
infos["connectors"] = contact.GetConnectors() |
|
3176 |
self.Controler.SetEditedElementContactInfos(self.TagName, contactid, infos) |
|
3177 |
||
3178 |
def RefreshCoilModel(self, coil): |
|
3179 |
coilid = coil.GetId() |
|
3180 |
infos = {} |
|
3181 |
infos["name"] = coil.GetName() |
|
3182 |
infos["type"] = coil.GetType() |
|
3183 |
infos["x"], infos["y"] = coil.GetPosition() |
|
3184 |
infos["width"], infos["height"] = coil.GetSize() |
|
3185 |
infos["connectors"] = coil.GetConnectors() |
|
3186 |
self.Controler.SetEditedElementCoilInfos(self.TagName, coilid, infos) |
|
3187 |
||
3188 |
def RefreshStepModel(self, step): |
|
3189 |
stepid = step.GetId() |
|
3190 |
infos = {} |
|
3191 |
infos["name"] = step.GetName() |
|
3192 |
infos["initial"] = step.GetInitial() |
|
3193 |
infos["x"], infos["y"] = step.GetPosition() |
|
3194 |
infos["width"], infos["height"] = step.GetSize() |
|
3195 |
infos["connectors"] = step.GetConnectors() |
|
3196 |
infos["action"] = step.GetActionConnector() |
|
3197 |
self.Controler.SetEditedElementStepInfos(self.TagName, stepid, infos) |
|
3198 |
||
3199 |
def RefreshTransitionModel(self, transition): |
|
3200 |
transitionid = transition.GetId() |
|
3201 |
infos = {} |
|
3202 |
infos["type"] = transition.GetType() |
|
3203 |
infos["priority"] = transition.GetPriority() |
|
3204 |
infos["condition"] = transition.GetCondition() |
|
3205 |
infos["x"], infos["y"] = transition.GetPosition() |
|
3206 |
infos["width"], infos["height"] = transition.GetSize() |
|
3207 |
infos["connectors"] = transition.GetConnectors() |
|
3208 |
infos["connection"] = transition.GetConditionConnector() |
|
3209 |
self.Controler.SetEditedElementTransitionInfos(self.TagName, transitionid, infos) |
|
3210 |
||
3211 |
def RefreshDivergenceModel(self, divergence): |
|
3212 |
divergenceid = divergence.GetId() |
|
3213 |
infos = {} |
|
3214 |
infos["x"], infos["y"] = divergence.GetPosition() |
|
3215 |
infos["width"], infos["height"] = divergence.GetSize() |
|
3216 |
infos["connectors"] = divergence.GetConnectors() |
|
3217 |
self.Controler.SetEditedElementDivergenceInfos(self.TagName, divergenceid, infos) |
|
3218 |
||
3219 |
def RefreshJumpModel(self, jump): |
|
3220 |
jumpid = jump.GetId() |
|
3221 |
infos = {} |
|
3222 |
infos["target"] = jump.GetTarget() |
|
3223 |
infos["x"], infos["y"] = jump.GetPosition() |
|
3224 |
infos["width"], infos["height"] = jump.GetSize() |
|
3225 |
infos["connector"] = jump.GetConnector() |
|
3226 |
self.Controler.SetEditedElementJumpInfos(self.TagName, jumpid, infos) |
|
3227 |
||
3228 |
def RefreshActionBlockModel(self, actionblock): |
|
3229 |
actionblockid = actionblock.GetId() |
|
3230 |
infos = {} |
|
3231 |
infos["actions"] = actionblock.GetActions() |
|
3232 |
infos["x"], infos["y"] = actionblock.GetPosition() |
|
3233 |
infos["width"], infos["height"] = actionblock.GetSize() |
|
3234 |
infos["connector"] = actionblock.GetConnector() |
|
3235 |
self.Controler.SetEditedElementActionBlockInfos(self.TagName, actionblockid, infos) |
|
3236 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3237 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3238 |
# Model delete functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3239 |
# ------------------------------------------------------------------------------- |
814 | 3240 |
|
3241 |
def DeleteBlock(self, block): |
|
3242 |
elements = [] |
|
3243 |
for output in block.GetConnectors()["outputs"]: |
|
3244 |
for element in output.GetConnectedBlocks(): |
|
3245 |
if element not in elements: |
|
3246 |
elements.append(element) |
|
3247 |
block.Clean() |
|
3248 |
self.RemoveBlock(block) |
|
3249 |
self.Controler.RemoveEditedElementInstance(self.TagName, block.GetId()) |
|
3250 |
for element in elements: |
|
3251 |
element.RefreshModel() |
|
3252 |
wx.CallAfter(self.RefreshVariablePanel) |
|
3253 |
wx.CallAfter(self.ParentWindow.RefreshPouInstanceVariablesPanel) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3254 |
|
814 | 3255 |
def DeleteVariable(self, variable): |
3256 |
connectors = variable.GetConnectors() |
|
3257 |
if len(connectors["outputs"]) > 0: |
|
3258 |
elements = connectors["outputs"][0].GetConnectedBlocks() |
|
3259 |
else: |
|
3260 |
elements = [] |
|
3261 |
variable.Clean() |
|
3262 |
self.RemoveBlock(variable) |
|
3263 |
self.Controler.RemoveEditedElementInstance(self.TagName, variable.GetId()) |
|
3264 |
for element in elements: |
|
3265 |
element.RefreshModel() |
|
3266 |
||
3267 |
def DeleteConnection(self, connection): |
|
3268 |
if connection.GetType() == CONTINUATION: |
|
3269 |
elements = connection.GetConnector().GetConnectedBlocks() |
|
3270 |
else: |
|
3271 |
elements = [] |
|
3272 |
connection.Clean() |
|
3273 |
self.RemoveBlock(connection) |
|
3274 |
self.Controler.RemoveEditedElementInstance(self.TagName, connection.GetId()) |
|
3275 |
for element in elements: |
|
3276 |
element.RefreshModel() |
|
3277 |
||
3278 |
def DeleteComment(self, comment): |
|
3279 |
self.RemoveComment(comment) |
|
3280 |
self.Controler.RemoveEditedElementInstance(self.TagName, comment.GetId()) |
|
3281 |
||
3282 |
def DeleteWire(self, wire): |
|
3283 |
if wire in self.Wires: |
|
3284 |
connected = wire.GetConnected() |
|
3285 |
wire.Clean() |
|
3286 |
self.RemoveWire(wire) |
|
3287 |
for connector in connected: |
|
3288 |
connector.RefreshParentBlock() |
|
3289 |
||
3290 |
def DeleteContact(self, contact): |
|
3291 |
connectors = contact.GetConnectors() |
|
3292 |
elements = connectors["outputs"][0].GetConnectedBlocks() |
|
3293 |
contact.Clean() |
|
3294 |
self.RemoveBlock(contact) |
|
3295 |
self.Controler.RemoveEditedElementInstance(self.TagName, contact.GetId()) |
|
3296 |
for element in elements: |
|
3297 |
element.RefreshModel() |
|
3298 |
||
3299 |
def DeleteCoil(self, coil): |
|
3300 |
connectors = coil.GetConnectors() |
|
3301 |
elements = connectors["outputs"][0].GetConnectedBlocks() |
|
3302 |
coil.Clean() |
|
3303 |
self.RemoveBlock(coil) |
|
3304 |
self.Controler.RemoveEditedElementInstance(self.TagName, coil.GetId()) |
|
3305 |
for element in elements: |
|
3306 |
element.RefreshModel() |
|
3307 |
||
3308 |
def DeletePowerRail(self, powerrail): |
|
3309 |
elements = [] |
|
3310 |
if powerrail.GetType() == LEFTRAIL: |
|
3311 |
connectors = powerrail.GetConnectors() |
|
3312 |
for connector in connectors["outputs"]: |
|
3313 |
for element in connector.GetConnectedBlocks(): |
|
3314 |
if element not in elements: |
|
3315 |
elements.append(element) |
|
3316 |
powerrail.Clean() |
|
3317 |
self.RemoveBlock(powerrail) |
|
3318 |
self.Controler.RemoveEditedElementInstance(self.TagName, powerrail.GetId()) |
|
3319 |
for element in elements: |
|
3320 |
element.RefreshModel() |
|
3321 |
||
3322 |
def DeleteStep(self, step): |
|
3323 |
elements = [] |
|
3324 |
connectors = step.GetConnectors() |
|
3325 |
action_connector = step.GetActionConnector() |
|
3326 |
if len(connectors["outputs"]) > 0: |
|
3327 |
for element in connectors["outputs"][0].GetConnectedBlocks(): |
|
3328 |
if element not in elements: |
|
3329 |
elements.append(element) |
|
3330 |
if action_connector is not None: |
|
3331 |
for element in action_connector.GetConnectedBlocks(): |
|
3332 |
if element not in elements: |
|
3333 |
elements.append(element) |
|
3334 |
step.Clean() |
|
1608
e8efeeb718ab
remove all corresponding SFC jumps when SFC step is removed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1607
diff
changeset
|
3335 |
|
e8efeeb718ab
remove all corresponding SFC jumps when SFC step is removed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1607
diff
changeset
|
3336 |
if self.GetDrawingMode() == DRIVENDRAWING_MODE: |
e8efeeb718ab
remove all corresponding SFC jumps when SFC step is removed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1607
diff
changeset
|
3337 |
name = step.GetName().upper() |
e8efeeb718ab
remove all corresponding SFC jumps when SFC step is removed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1607
diff
changeset
|
3338 |
remove_jumps = [] |
e8efeeb718ab
remove all corresponding SFC jumps when SFC step is removed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1607
diff
changeset
|
3339 |
for block in self.Blocks.itervalues(): |
e8efeeb718ab
remove all corresponding SFC jumps when SFC step is removed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1607
diff
changeset
|
3340 |
if isinstance(block, SFC_Jump): |
e8efeeb718ab
remove all corresponding SFC jumps when SFC step is removed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1607
diff
changeset
|
3341 |
if name == block.GetTarget().upper(): |
e8efeeb718ab
remove all corresponding SFC jumps when SFC step is removed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1607
diff
changeset
|
3342 |
remove_jumps.append(block) |
e8efeeb718ab
remove all corresponding SFC jumps when SFC step is removed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1607
diff
changeset
|
3343 |
for jump in remove_jumps: |
e8efeeb718ab
remove all corresponding SFC jumps when SFC step is removed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1607
diff
changeset
|
3344 |
self.DeleteJump(jump) |
e8efeeb718ab
remove all corresponding SFC jumps when SFC step is removed (but only in DRIVENDRAWING_MODE)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1607
diff
changeset
|
3345 |
|
814 | 3346 |
self.RemoveBlock(step) |
3347 |
self.Controler.RemoveEditedElementInstance(self.TagName, step.GetId()) |
|
3348 |
for element in elements: |
|
3349 |
element.RefreshModel() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3350 |
|
814 | 3351 |
def DeleteTransition(self, transition): |
3352 |
elements = [] |
|
3353 |
connectors = transition.GetConnectors() |
|
3354 |
for element in connectors["outputs"][0].GetConnectedBlocks(): |
|
3355 |
if element not in elements: |
|
3356 |
elements.append(element) |
|
3357 |
transition.Clean() |
|
3358 |
self.RemoveBlock(transition) |
|
3359 |
self.Controler.RemoveEditedElementInstance(self.TagName, transition.GetId()) |
|
3360 |
for element in elements: |
|
3361 |
element.RefreshModel() |
|
3362 |
||
3363 |
def DeleteDivergence(self, divergence): |
|
3364 |
elements = [] |
|
3365 |
connectors = divergence.GetConnectors() |
|
3366 |
for output in connectors["outputs"]: |
|
3367 |
for element in output.GetConnectedBlocks(): |
|
3368 |
if element not in elements: |
|
3369 |
elements.append(element) |
|
3370 |
divergence.Clean() |
|
3371 |
self.RemoveBlock(divergence) |
|
3372 |
self.Controler.RemoveEditedElementInstance(self.TagName, divergence.GetId()) |
|
3373 |
for element in elements: |
|
3374 |
element.RefreshModel() |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3375 |
|
814 | 3376 |
def DeleteJump(self, jump): |
3377 |
jump.Clean() |
|
3378 |
self.RemoveBlock(jump) |
|
3379 |
self.Controler.RemoveEditedElementInstance(self.TagName, jump.GetId()) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3380 |
|
814 | 3381 |
def DeleteActionBlock(self, actionblock): |
3382 |
actionblock.Clean() |
|
3383 |
self.RemoveBlock(actionblock) |
|
3384 |
self.Controler.RemoveEditedElementInstance(self.TagName, actionblock.GetId()) |
|
3385 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3386 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3387 |
# Editing functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3388 |
# ------------------------------------------------------------------------------- |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3389 |
|
814 | 3390 |
def Cut(self): |
3391 |
if not self.Debug and (self.IsBlock(self.SelectedElement) or self.IsComment(self.SelectedElement) or isinstance(self.SelectedElement, Graphic_Group)): |
|
3392 |
blocks, wires = self.SelectedElement.GetDefinition() |
|
3393 |
text = self.Controler.GetEditedElementInstancesCopy(self.TagName, blocks, wires, self.Debug) |
|
3394 |
self.ParentWindow.SetCopyBuffer(text) |
|
3395 |
rect = self.SelectedElement.GetRedrawRect(1, 1) |
|
3396 |
self.SelectedElement.Delete() |
|
3397 |
self.SelectedElement = None |
|
3398 |
self.RefreshBuffer() |
|
3399 |
self.RefreshScrollBars() |
|
3400 |
self.RefreshVariablePanel() |
|
3401 |
self.ParentWindow.RefreshPouInstanceVariablesPanel() |
|
3402 |
self.RefreshRect(self.GetScrolledRect(rect), False) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3403 |
|
814 | 3404 |
def Copy(self): |
3405 |
if not self.Debug and (self.IsBlock(self.SelectedElement) or self.IsComment(self.SelectedElement) or isinstance(self.SelectedElement, Graphic_Group)): |
|
3406 |
blocks, wires = self.SelectedElement.GetDefinition() |
|
3407 |
text = self.Controler.GetEditedElementInstancesCopy(self.TagName, blocks, wires, self.Debug) |
|
3408 |
self.ParentWindow.SetCopyBuffer(text) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3409 |
|
814 | 3410 |
def Paste(self, bbx=None): |
3411 |
if not self.Debug: |
|
3412 |
element = self.ParentWindow.GetCopyBuffer() |
|
3413 |
if bbx is None: |
|
3414 |
mouse_pos = self.Editor.ScreenToClient(wx.GetMousePosition()) |
|
3415 |
middle = wx.Rect(0, 0, *self.Editor.GetClientSize()).InsideXY(mouse_pos.x, mouse_pos.y) |
|
3416 |
if middle: |
|
3417 |
x, y = self.CalcUnscrolledPosition(mouse_pos.x, mouse_pos.y) |
|
3418 |
else: |
|
3419 |
x, y = self.CalcUnscrolledPosition(0, 0) |
|
3420 |
new_pos = [int(x / self.ViewScale[0]), int(y / self.ViewScale[1])] |
|
3421 |
else: |
|
3422 |
middle = True |
|
3423 |
new_pos = [bbx.x, bbx.y] |
|
3424 |
result = self.Controler.PasteEditedElementInstances(self.TagName, element, new_pos, middle, self.Debug) |
|
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
3425 |
if not isinstance(result, string_types): |
814 | 3426 |
self.RefreshBuffer() |
3427 |
self.RefreshView(selection=result) |
|
3428 |
self.RefreshVariablePanel() |
|
3429 |
self.ParentWindow.RefreshPouInstanceVariablesPanel() |
|
3430 |
else: |
|
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1744
diff
changeset
|
3431 |
message = wx.MessageDialog(self.Editor, result, "Error", wx.OK | wx.ICON_ERROR) |
814 | 3432 |
message.ShowModal() |
3433 |
message.Destroy() |
|
3434 |
||
3435 |
def CanAddElement(self, block): |
|
3436 |
if isinstance(block, Graphic_Group): |
|
3437 |
return block.CanAddBlocks(self) |
|
3438 |
elif self.CurrentLanguage == "SFC": |
|
3439 |
return True |
|
3440 |
elif self.CurrentLanguage == "LD" and not isinstance(block, (SFC_Step, SFC_Transition, SFC_Divergence, SFC_Jump, SFC_ActionBlock)): |
|
3441 |
return True |
|
3442 |
elif self.CurrentLanguage == "FBD" and isinstance(block, (FBD_Block, FBD_Variable, FBD_Connector, Comment)): |
|
3443 |
return True |
|
3444 |
return False |
|
3445 |
||
1852
70c1cc354a8f
fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
3446 |
def GenerateNewName(self, element=None, blocktype=None, exclude=None): |
814 | 3447 |
if element is not None and isinstance(element, SFC_Step): |
3448 |
format = "Step%d" |
|
3449 |
else: |
|
3450 |
if element is not None: |
|
3451 |
blocktype = element.GetType() |
|
3452 |
if blocktype is None: |
|
3453 |
blocktype = "Block" |
|
3454 |
format = "%s%%d" % blocktype |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3455 |
return self.Controler.GenerateNewName(self.TagName, |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3456 |
None, |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3457 |
format, |
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3458 |
exclude=exclude, |
1122
84de51ab40d2
Adding support for using current selected variable for generate newly added variable informations in VariablePanel
Laurent Bessard
parents:
1089
diff
changeset
|
3459 |
debug=self.Debug) |
814 | 3460 |
|
3461 |
def IsNamedElement(self, element): |
|
3462 |
return isinstance(element, FBD_Block) and element.GetName() != "" or isinstance(element, SFC_Step) |
|
3463 |
||
3464 |
def CopyBlock(self, element, pos): |
|
3465 |
if isinstance(element, Graphic_Group): |
|
3466 |
block = element.Clone(self, pos=pos) |
|
3467 |
else: |
|
891
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
885
diff
changeset
|
3468 |
new_id = self.GetNewId() |
814 | 3469 |
if self.IsNamedElement(element): |
3470 |
name = self.GenerateNewName(element) |
|
891
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
885
diff
changeset
|
3471 |
block = element.Clone(self, new_id, name, pos) |
814 | 3472 |
else: |
3473 |
name = None |
|
891
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
885
diff
changeset
|
3474 |
block = element.Clone(self, new_id, pos=pos) |
814 | 3475 |
self.AddBlockInModel(block) |
3476 |
return block |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3477 |
|
814 | 3478 |
def AddBlockInModel(self, block): |
3479 |
if isinstance(block, Comment): |
|
3480 |
self.AddComment(block) |
|
3481 |
self.Controler.AddEditedElementComment(self.TagName, block.GetId()) |
|
3482 |
self.RefreshCommentModel(block) |
|
3483 |
else: |
|
3484 |
self.AddBlock(block) |
|
3485 |
if isinstance(block, FBD_Block): |
|
3486 |
self.Controler.AddEditedElementBlock(self.TagName, block.GetId(), block.GetType(), block.GetName()) |
|
3487 |
self.RefreshBlockModel(block) |
|
3488 |
elif isinstance(block, FBD_Variable): |
|
3489 |
self.Controler.AddEditedElementVariable(self.TagName, block.GetId(), block.GetType()) |
|
3490 |
self.RefreshVariableModel(block) |
|
3491 |
elif isinstance(block, FBD_Connector): |
|
3492 |
self.Controler.AddEditedElementConnection(self.TagName, block.GetId(), block.GetType()) |
|
3493 |
self.RefreshConnectionModel(block) |
|
3494 |
elif isinstance(block, LD_Contact): |
|
3495 |
self.Controler.AddEditedElementContact(self.TagName, block.GetId()) |
|
3496 |
self.RefreshContactModel(block) |
|
3497 |
elif isinstance(block, LD_Coil): |
|
3498 |
self.Controler.AddEditedElementCoil(self.TagName, block.GetId()) |
|
3499 |
self.RefreshCoilModel(block) |
|
3500 |
elif isinstance(block, LD_PowerRail): |
|
3501 |
self.Controler.AddEditedElementPowerRail(self.TagName, block.GetId(), block.GetType()) |
|
3502 |
self.RefreshPowerRailModel(block) |
|
3503 |
elif isinstance(block, SFC_Step): |
|
3504 |
self.Controler.AddEditedElementStep(self.TagName, block.GetId()) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3505 |
self.RefreshStepModel(block) |
814 | 3506 |
elif isinstance(block, SFC_Transition): |
3507 |
self.Controler.AddEditedElementTransition(self.TagName, block.GetId()) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3508 |
self.RefreshTransitionModel(block) |
814 | 3509 |
elif isinstance(block, SFC_Divergence): |
3510 |
self.Controler.AddEditedElementDivergence(self.TagName, block.GetId(), block.GetType()) |
|
3511 |
self.RefreshDivergenceModel(block) |
|
3512 |
elif isinstance(block, SFC_Jump): |
|
3513 |
self.Controler.AddEditedElementJump(self.TagName, block.GetId()) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3514 |
self.RefreshJumpModel(block) |
814 | 3515 |
elif isinstance(block, SFC_ActionBlock): |
3516 |
self.Controler.AddEditedElementActionBlock(self.TagName, block.GetId()) |
|
3517 |
self.RefreshActionBlockModel(block) |
|
3518 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3519 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3520 |
# Find and Replace functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3521 |
# ------------------------------------------------------------------------------- |
814 | 3522 |
|
3523 |
def Find(self, direction, search_params): |
|
3524 |
if self.SearchParams != search_params: |
|
3525 |
self.ClearHighlights(SEARCH_RESULT_HIGHLIGHT) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3526 |
|
814 | 3527 |
self.SearchParams = search_params |
3528 |
self.SearchResults = [] |
|
3529 |
blocks = [] |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
3530 |
for infos, start, end, _text in self.Controler.SearchInPou(self.TagName, search_params, self.Debug): |
2417
316ee9fff395
cleanup: pylint, R0123 # (literal-comparison) Comparison to literal
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2347
diff
changeset
|
3531 |
if (infos[0] == self.TagName or self.TagName.split("::")[0] in ['A', 'T']) and infos[1] != 'name': |
1619
163d3a883575
fix local search in actions and transitions
Surkov Sergey <surkovsv93@gmail.com>
parents:
1609
diff
changeset
|
3532 |
if infos[1] in ["var_local", "var_input", "var_output", "var_inout"]: |
163d3a883575
fix local search in actions and transitions
Surkov Sergey <surkovsv93@gmail.com>
parents:
1609
diff
changeset
|
3533 |
self.SearchResults.append((infos[1:], start, end, SEARCH_RESULT_HIGHLIGHT)) |
163d3a883575
fix local search in actions and transitions
Surkov Sergey <surkovsv93@gmail.com>
parents:
1609
diff
changeset
|
3534 |
else: |
163d3a883575
fix local search in actions and transitions
Surkov Sergey <surkovsv93@gmail.com>
parents:
1609
diff
changeset
|
3535 |
block = self.Blocks.get(infos[2]) |
163d3a883575
fix local search in actions and transitions
Surkov Sergey <surkovsv93@gmail.com>
parents:
1609
diff
changeset
|
3536 |
if block is not None: |
163d3a883575
fix local search in actions and transitions
Surkov Sergey <surkovsv93@gmail.com>
parents:
1609
diff
changeset
|
3537 |
blocks.append((block, (infos[1:], start, end, SEARCH_RESULT_HIGHLIGHT))) |
814 | 3538 |
blocks.sort(sort_blocks) |
3539 |
self.SearchResults.extend([infos for block, infos in blocks]) |
|
1057
3837e165b3f9
Added support for search in PythonEditor and IECCodeViewer
Laurent Bessard
parents:
1042
diff
changeset
|
3540 |
self.CurrentFindHighlight = None |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3541 |
|
814 | 3542 |
if len(self.SearchResults) > 0: |
3543 |
if self.CurrentFindHighlight is not None: |
|
3544 |
old_idx = self.SearchResults.index(self.CurrentFindHighlight) |
|
3545 |
if self.SearchParams["wrap"]: |
|
3546 |
idx = (old_idx + direction) % len(self.SearchResults) |
|
3547 |
else: |
|
3548 |
idx = max(0, min(old_idx + direction, len(self.SearchResults) - 1)) |
|
3549 |
if idx != old_idx: |
|
3550 |
self.RemoveHighlight(*self.CurrentFindHighlight) |
|
3551 |
self.CurrentFindHighlight = self.SearchResults[idx] |
|
3552 |
self.AddHighlight(*self.CurrentFindHighlight) |
|
3553 |
else: |
|
3554 |
self.CurrentFindHighlight = self.SearchResults[0] |
|
3555 |
self.AddHighlight(*self.CurrentFindHighlight) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3556 |
|
814 | 3557 |
else: |
3558 |
if self.CurrentFindHighlight is not None: |
|
3559 |
self.RemoveHighlight(*self.CurrentFindHighlight) |
|
3560 |
self.CurrentFindHighlight = None |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3561 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3562 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3563 |
# Highlights showing functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3564 |
# ------------------------------------------------------------------------------- |
814 | 3565 |
|
3566 |
def OnRefreshHighlightsTimer(self, event): |
|
3567 |
self.RefreshView() |
|
3568 |
event.Skip() |
|
3569 |
||
3570 |
def ClearHighlights(self, highlight_type=None): |
|
3571 |
EditorPanel.ClearHighlights(self, highlight_type) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3572 |
|
814 | 3573 |
if highlight_type is None: |
3574 |
self.Highlights = [] |
|
3575 |
else: |
|
3576 |
self.Highlights = [(infos, start, end, highlight) for (infos, start, end, highlight) in self.Highlights if highlight != highlight_type] |
|
3577 |
self.RefreshView() |
|
3578 |
||
3579 |
def AddHighlight(self, infos, start, end, highlight_type): |
|
3580 |
EditorPanel.AddHighlight(self, infos, start, end, highlight_type) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3581 |
|
814 | 3582 |
self.Highlights.append((infos, start, end, highlight_type)) |
3583 |
if infos[0] not in ["var_local", "var_input", "var_output", "var_inout"]: |
|
3584 |
block = self.Blocks.get(infos[1]) |
|
3585 |
if block is not None: |
|
3586 |
self.EnsureVisible(block) |
|
3587 |
self.RefreshHighlightsTimer.Start(int(REFRESH_HIGHLIGHT_PERIOD * 1000), oneShot=True) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3588 |
|
814 | 3589 |
def RemoveHighlight(self, infos, start, end, highlight_type): |
3590 |
EditorPanel.RemoveHighlight(self, infos, start, end, highlight_type) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3591 |
|
814 | 3592 |
if (infos, start, end, highlight_type) in self.Highlights: |
3593 |
self.Highlights.remove((infos, start, end, highlight_type)) |
|
3594 |
self.RefreshHighlightsTimer.Start(int(REFRESH_HIGHLIGHT_PERIOD * 1000), oneShot=True) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3595 |
|
814 | 3596 |
def ShowHighlights(self): |
3597 |
for infos, start, end, highlight_type in self.Highlights: |
|
3598 |
if infos[0] in ["comment", "io_variable", "block", "connector", "coil", "contact", "step", "transition", "jump", "action_block"]: |
|
3599 |
block = self.FindElementById(infos[1]) |
|
3600 |
if block is not None: |
|
3601 |
block.AddHighlight(infos[2:], start, end, highlight_type) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3602 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3603 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3604 |
# Drawing functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
3605 |
# ------------------------------------------------------------------------------- |
814 | 3606 |
|
3607 |
def OnScrollWindow(self, event): |
|
1273
921858d68a13
Fix refresh bug when scrolling Viewer while dragging graphic element or rubberband
Laurent Bessard
parents:
1263
diff
changeset
|
3608 |
if self.Editor.HasCapture() and self.StartMousePos is not None: |
814 | 3609 |
return |
3610 |
if wx.Platform == '__WXMSW__': |
|
3611 |
wx.CallAfter(self.RefreshVisibleElements) |
|
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
3612 |
self.Editor.Freeze() |
1208
d22fcdfae8d0
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1205
diff
changeset
|
3613 |
wx.CallAfter(self.Editor.Thaw) |
814 | 3614 |
elif event.GetOrientation() == wx.HORIZONTAL: |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
3615 |
self.RefreshVisibleElements(xp=event.GetPosition()) |
814 | 3616 |
else: |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
3617 |
self.RefreshVisibleElements(yp=event.GetPosition()) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3618 |
|
1203
4399ddd024e5
Added support for drawing instance path at a fixed position in Viewer debug mode
Laurent Bessard
parents:
1201
diff
changeset
|
3619 |
# Handle scroll in debug to fully redraw area and ensuring |
4399ddd024e5
Added support for drawing instance path at a fixed position in Viewer debug mode
Laurent Bessard
parents:
1201
diff
changeset
|
3620 |
# instance path is fully draw without flickering |
1204
8a620b460b49
Fixed support for drawing instance path at a fixed position in Viewer debug mode on Windows
Laurent Bessard
parents:
1203
diff
changeset
|
3621 |
if self.Debug and wx.Platform != '__WXMSW__': |
1203
4399ddd024e5
Added support for drawing instance path at a fixed position in Viewer debug mode
Laurent Bessard
parents:
1201
diff
changeset
|
3622 |
x, y = self.GetViewStart() |
4399ddd024e5
Added support for drawing instance path at a fixed position in Viewer debug mode
Laurent Bessard
parents:
1201
diff
changeset
|
3623 |
if event.GetOrientation() == wx.HORIZONTAL: |
4399ddd024e5
Added support for drawing instance path at a fixed position in Viewer debug mode
Laurent Bessard
parents:
1201
diff
changeset
|
3624 |
self.Scroll(event.GetPosition(), y) |
4399ddd024e5
Added support for drawing instance path at a fixed position in Viewer debug mode
Laurent Bessard
parents:
1201
diff
changeset
|
3625 |
else: |
4399ddd024e5
Added support for drawing instance path at a fixed position in Viewer debug mode
Laurent Bessard
parents:
1201
diff
changeset
|
3626 |
self.Scroll(x, event.GetPosition()) |
4399ddd024e5
Added support for drawing instance path at a fixed position in Viewer debug mode
Laurent Bessard
parents:
1201
diff
changeset
|
3627 |
else: |
4399ddd024e5
Added support for drawing instance path at a fixed position in Viewer debug mode
Laurent Bessard
parents:
1201
diff
changeset
|
3628 |
event.Skip() |
814 | 3629 |
|
3630 |
def OnScrollStop(self, event): |
|
3631 |
self.RefreshScrollBars() |
|
3632 |
event.Skip() |
|
3633 |
||
3634 |
def OnMouseWheelWindow(self, event): |
|
3635 |
if self.StartMousePos is None or self.StartScreenPos is None: |
|
2494
a30dfc8a0c29
fix zoom-in/zoom-out using mouse wheel
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2457
diff
changeset
|
3636 |
rotation = event.GetWheelRotation() // event.GetWheelDelta() |
814 | 3637 |
if event.ShiftDown(): |
3638 |
x, y = self.GetViewStart() |
|
3639 |
xp = max(0, min(x - rotation * 3, self.Editor.GetVirtualSize()[0] / self.Editor.GetScrollPixelsPerUnit()[0])) |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
3640 |
self.RefreshVisibleElements(xp=xp) |
814 | 3641 |
self.Scroll(xp, y) |
3642 |
elif event.ControlDown(): |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
3643 |
self.SetScale(self.CurrentScale + rotation, mouse_event=event) |
814 | 3644 |
self.ParentWindow.RefreshDisplayMenu() |
3645 |
else: |
|
3646 |
x, y = self.GetViewStart() |
|
3647 |
yp = max(0, min(y - rotation * 3, self.Editor.GetVirtualSize()[1] / self.Editor.GetScrollPixelsPerUnit()[1])) |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
3648 |
self.RefreshVisibleElements(yp=yp) |
814 | 3649 |
self.Scroll(x, yp) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3650 |
|
814 | 3651 |
def OnMoveWindow(self, event): |
1342
c17507a10807
Fixed various latency issues removing unnecessary calls
Laurent Bessard
parents:
1338
diff
changeset
|
3652 |
client_size = self.GetClientSize() |
c17507a10807
Fixed various latency issues removing unnecessary calls
Laurent Bessard
parents:
1338
diff
changeset
|
3653 |
if self.LastClientSize != client_size: |
c17507a10807
Fixed various latency issues removing unnecessary calls
Laurent Bessard
parents:
1338
diff
changeset
|
3654 |
self.LastClientSize = client_size |
c17507a10807
Fixed various latency issues removing unnecessary calls
Laurent Bessard
parents:
1338
diff
changeset
|
3655 |
self.RefreshScrollBars() |
c17507a10807
Fixed various latency issues removing unnecessary calls
Laurent Bessard
parents:
1338
diff
changeset
|
3656 |
self.RefreshVisibleElements() |
814 | 3657 |
event.Skip() |
3658 |
||
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
3659 |
def DoDrawing(self, dc, printing=False): |
814 | 3660 |
if printing: |
3661 |
if getattr(dc, "printing", False): |
|
3662 |
font = wx.Font(self.GetFont().GetPointSize(), wx.MODERN, wx.NORMAL, wx.NORMAL) |
|
3663 |
dc.SetFont(font) |
|
3664 |
else: |
|
3665 |
dc.SetFont(self.GetFont()) |
|
3666 |
else: |
|
3667 |
dc.SetBackground(wx.Brush(self.Editor.GetBackgroundColour())) |
|
3668 |
dc.Clear() |
|
3669 |
dc.BeginDrawing() |
|
3670 |
if self.Scaling is not None and self.DrawGrid and not printing: |
|
3671 |
dc.SetPen(wx.TRANSPARENT_PEN) |
|
3672 |
dc.SetBrush(self.GridBrush) |
|
3673 |
xstart, ystart = self.GetViewStart() |
|
3674 |
window_size = self.Editor.GetClientSize() |
|
3675 |
width, height = self.Editor.GetVirtualSize() |
|
3676 |
width = int(max(width, xstart * SCROLLBAR_UNIT + window_size[0]) / self.ViewScale[0]) |
|
3677 |
height = int(max(height, ystart * SCROLLBAR_UNIT + window_size[1]) / self.ViewScale[1]) |
|
3678 |
dc.DrawRectangle(1, 1, width, height) |
|
3679 |
if self.PageSize is not None and not printing: |
|
3680 |
dc.SetPen(self.PagePen) |
|
3681 |
xstart, ystart = self.GetViewStart() |
|
3682 |
window_size = self.Editor.GetClientSize() |
|
2341
210cddfa16cf
Avoid division by zero in case width or height for page are not specified
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2301
diff
changeset
|
3683 |
if self.PageSize[0] != 0: |
210cddfa16cf
Avoid division by zero in case width or height for page are not specified
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2301
diff
changeset
|
3684 |
for x in xrange(self.PageSize[0] - (xstart * SCROLLBAR_UNIT) % self.PageSize[0], int(window_size[0] / self.ViewScale[0]), self.PageSize[0]): |
210cddfa16cf
Avoid division by zero in case width or height for page are not specified
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2301
diff
changeset
|
3685 |
dc.DrawLine(xstart * SCROLLBAR_UNIT + x + 1, int(ystart * SCROLLBAR_UNIT / self.ViewScale[0]), |
210cddfa16cf
Avoid division by zero in case width or height for page are not specified
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2301
diff
changeset
|
3686 |
xstart * SCROLLBAR_UNIT + x + 1, int((ystart * SCROLLBAR_UNIT + window_size[1]) / self.ViewScale[0])) |
210cddfa16cf
Avoid division by zero in case width or height for page are not specified
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2301
diff
changeset
|
3687 |
if self.PageSize[1] != 0: |
210cddfa16cf
Avoid division by zero in case width or height for page are not specified
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2301
diff
changeset
|
3688 |
for y in xrange(self.PageSize[1] - (ystart * SCROLLBAR_UNIT) % self.PageSize[1], int(window_size[1] / self.ViewScale[1]), self.PageSize[1]): |
210cddfa16cf
Avoid division by zero in case width or height for page are not specified
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2301
diff
changeset
|
3689 |
dc.DrawLine(int(xstart * SCROLLBAR_UNIT / self.ViewScale[0]), ystart * SCROLLBAR_UNIT + y + 1, |
210cddfa16cf
Avoid division by zero in case width or height for page are not specified
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2301
diff
changeset
|
3690 |
int((xstart * SCROLLBAR_UNIT + window_size[0]) / self.ViewScale[1]), ystart * SCROLLBAR_UNIT + y + 1) |
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3691 |
|
814 | 3692 |
# Draw all elements |
3693 |
for comment in self.Comments.itervalues(): |
|
3694 |
if comment != self.SelectedElement and (comment.IsVisible() or printing): |
|
3695 |
comment.Draw(dc) |
|
3696 |
for wire in self.Wires.iterkeys(): |
|
3697 |
if wire != self.SelectedElement and (wire.IsVisible() or printing): |
|
1759
56e7f4a11046
clean-up: fix PEP8 E712 comparison to True should be 'if cond is True:' or 'if cond:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1757
diff
changeset
|
3698 |
if not self.Debug or not wire.GetValue(): |
814 | 3699 |
wire.Draw(dc) |
3700 |
if self.Debug: |
|
3701 |
for wire in self.Wires.iterkeys(): |
|
1759
56e7f4a11046
clean-up: fix PEP8 E712 comparison to True should be 'if cond is True:' or 'if cond:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1757
diff
changeset
|
3702 |
if wire != self.SelectedElement and (wire.IsVisible() or printing) and wire.GetValue(): |
814 | 3703 |
wire.Draw(dc) |
3704 |
for block in self.Blocks.itervalues(): |
|
3705 |
if block != self.SelectedElement and (block.IsVisible() or printing): |
|
3706 |
block.Draw(dc) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3707 |
|
814 | 3708 |
if self.SelectedElement is not None and (self.SelectedElement.IsVisible() or printing): |
3709 |
self.SelectedElement.Draw(dc) |
|
1417
374238039643
Added a variable name text entry dialog to allow name change on drag'n'drops
Edouard Tisserant
parents:
1406
diff
changeset
|
3710 |
|
814 | 3711 |
if not printing: |
3712 |
if self.Debug: |
|
1674
85e22d514c05
show whether instance of SFC action is currently active or not in its
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1671
diff
changeset
|
3713 |
self.InstanceName.Draw(dc) |
814 | 3714 |
if self.rubberBand.IsShown(): |
3715 |
self.rubberBand.Draw(dc) |
|
3716 |
dc.EndDrawing() |
|
3717 |
||
3718 |
def OnPaint(self, event): |
|
3719 |
dc = self.GetLogicalDC(True) |
|
3720 |
self.DoDrawing(dc) |
|
3721 |
wx.BufferedPaintDC(self.Editor, dc.GetAsBitmap()) |
|
3722 |
if self.Debug: |
|
3723 |
DebugViewer.RefreshNewData(self) |
|
3724 |
event.Skip() |