author | laurent |
Tue, 24 Jan 2012 21:43:29 +0100 | |
changeset 631 | e4dd5bf1f1db |
parent 628 | edcd40605fff |
child 633 | 3536f4469cde |
permissions | -rw-r--r-- |
0 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
3 |
||
4 |
#This file is part of PLCOpenEditor, a library implementing an IEC 61131-3 editor |
|
5 |
#based on the plcopen standard. |
|
6 |
# |
|
58 | 7 |
#Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
0 | 8 |
# |
9 |
#See COPYING file for copyrights details. |
|
10 |
# |
|
11 |
#This library is free software; you can redistribute it and/or |
|
5 | 12 |
#modify it under the terms of the GNU General Public |
0 | 13 |
#License as published by the Free Software Foundation; either |
14 |
#version 2.1 of the License, or (at your option) any later version. |
|
15 |
# |
|
16 |
#This library is distributed in the hope that it will be useful, |
|
17 |
#but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
18 |
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
58 | 19 |
#General Public License for more details. |
0 | 20 |
# |
5 | 21 |
#You should have received a copy of the GNU General Public |
0 | 22 |
#License along with this library; if not, write to the Free Software |
23 |
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
24 |
||
25 |
import wx |
|
367 | 26 |
from time import time as gettime |
0 | 27 |
from math import * |
249 | 28 |
from types import * |
525
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
29 |
import datetime |
0 | 30 |
|
31 |
#------------------------------------------------------------------------------- |
|
32 |
# Common constants |
|
33 |
#------------------------------------------------------------------------------- |
|
34 |
||
35 |
""" |
|
36 |
Definition of constants for dimensions of graphic elements |
|
37 |
""" |
|
38 |
||
39 |
# FBD and SFC constants |
|
28
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
40 |
MIN_MOVE = 5 # Minimum move before starting a element dragging |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
41 |
CONNECTOR_SIZE = 8 # Size of connectors |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
42 |
BLOCK_LINE_SIZE = 20 # Minimum size of each line in a block |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
43 |
HANDLE_SIZE = 6 # Size of the squares for handles |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
44 |
ANCHOR_DISTANCE = 5 # Distance where wire is automativally attached to a connector |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
45 |
POINT_RADIUS = 2 # Radius of the point of wire ends |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
46 |
MIN_SEGMENT_SIZE = 2 # Minimum size of the endling segments of a wire |
0 | 47 |
|
48 |
# LD constants |
|
28
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
49 |
LD_LINE_SIZE = 40 # Distance between two lines in a ladder rung |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
50 |
LD_ELEMENT_SIZE = (21, 15) # Size (width, height) of a ladder element (contact or coil) |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
51 |
LD_WIRE_SIZE = 30 # Size of a wire between two contact |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
52 |
LD_WIRECOIL_SIZE = 70 # Size of a wire between a coil and a contact |
144 | 53 |
LD_POWERRAIL_WIDTH = 3 # Width of a Powerrail |
28
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
54 |
LD_OFFSET = (10, 10) # Distance (x, y) between each comment and rung of the ladder |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
55 |
LD_COMMENT_DEFAULTSIZE = (600, 40) # Size (width, height) of a comment box |
0 | 56 |
|
57 |
# SFC constants |
|
28
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
58 |
SFC_STEP_DEFAULT_SIZE = (40, 30) # Default size of a SFC step |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
59 |
SFC_TRANSITION_SIZE = (20, 2) # Size of a SFC transition |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
60 |
SFC_DEFAULT_SEQUENCE_INTERVAL = 40 # Default size of the interval between two divergence branches |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
61 |
SFC_SIMULTANEOUS_SEQUENCE_EXTRA = 20 # Size of extra lines for simultaneous divergence and convergence |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
62 |
SFC_JUMP_SIZE = (12, 13) # Size of a SFC jump to step |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
63 |
SFC_WIRE_MIN_SIZE = 25 # Size of a wire between two elements |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
64 |
SFC_ACTION_MIN_SIZE = (100, 30) # Minimum size of an action block line |
0 | 65 |
|
66 |
# Type definition constants for graphic elements |
|
67 |
[INPUT, OUTPUT, INOUT] = range(3) |
|
68 |
[CONNECTOR, CONTINUATION] = range(2) |
|
69 |
[LEFTRAIL, RIGHTRAIL] = range(2) |
|
70 |
[CONTACT_NORMAL, CONTACT_REVERSE, CONTACT_RISING, CONTACT_FALLING] = range(4) |
|
269
34eff05909b0
Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents:
265
diff
changeset
|
71 |
[COIL_NORMAL, COIL_REVERSE, COIL_SET, COIL_RESET, COIL_RISING, COIL_FALLING] = range(6) |
0 | 72 |
[SELECTION_DIVERGENCE, SELECTION_CONVERGENCE, SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE] = range(4) |
73 |
||
74 |
# Constants for defining the type of dragging that has been selected |
|
75 |
[HANDLE_MOVE, HANDLE_RESIZE, HANDLE_POINT, HANDLE_SEGMENT, HANDLE_CONNECTOR] = range(5) |
|
76 |
||
77 |
# List of value for resize handle that are valid |
|
78 |
VALID_HANDLES = [(1,1), (1,2), (1,3), (2,3), (3,3), (3,2), (3,1), (2,1)] |
|
79 |
||
80 |
# Contants for defining the direction of a connector |
|
81 |
[EAST, NORTH, WEST, SOUTH] = [(1,0), (0,-1), (-1,0), (0,1)] |
|
82 |
||
83 |
# Contants for defining which mode is selected for each view |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
84 |
[MODE_SELECTION, MODE_BLOCK, MODE_VARIABLE, MODE_CONNECTION, MODE_COMMENT, |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
85 |
MODE_COIL, MODE_CONTACT, MODE_POWERRAIL, MODE_INITIALSTEP, MODE_STEP, |
575
a7c706b9492e
Adding hand tool icon in Toolbar for moving the view
laurent
parents:
571
diff
changeset
|
86 |
MODE_TRANSITION, MODE_DIVERGENCE, MODE_JUMP, MODE_ACTION, MODE_MOTION] = range(15) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
87 |
|
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
88 |
# Contants for defining alignment types for graphic group |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
89 |
[ALIGN_LEFT, ALIGN_CENTER, ALIGN_RIGHT, ALIGN_TOP, ALIGN_MIDDLE, ALIGN_BOTTOM] = range(6) |
27 | 90 |
|
91 |
# Contants for defining which drawing mode is selected for app |
|
92 |
[FREEDRAWING_MODE, DRIVENDRAWING_MODE] = [1, 2] |
|
93 |
||
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
94 |
# Color for Highlighting |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
95 |
HIGHLIGHTCOLOR = wx.CYAN |
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
96 |
|
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
97 |
# Define highlight types |
571 | 98 |
ERROR_HIGHLIGHT = (wx.Colour(255, 255, 0), wx.RED) |
99 |
SEARCH_RESULT_HIGHLIGHT = (wx.Colour(255, 165, 0), wx.WHITE) |
|
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
100 |
|
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
101 |
# Define highlight refresh inhibition period in second |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
102 |
REFRESH_HIGHLIGHT_PERIOD = 0.1 |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
103 |
|
625
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
104 |
# Define tooltip wait for displaying period in second |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
105 |
TOOLTIP_WAIT_PERIOD = 0.5 |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
106 |
|
58 | 107 |
HANDLE_CURSORS = { |
108 |
(1, 1) : 2, |
|
109 |
(3, 3) : 2, |
|
110 |
(1, 3) : 3, |
|
111 |
(3, 1) : 3, |
|
112 |
(1, 2) : 4, |
|
113 |
(3, 2) : 4, |
|
114 |
(2, 1) : 5, |
|
115 |
(2, 3) : 5 |
|
116 |
} |
|
0 | 117 |
|
331
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
118 |
def round_scaling(x, n, constraint=0): |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
119 |
fraction = float(x) / float(n) |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
120 |
if constraint == - 1: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
121 |
xround = int(fraction) |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
122 |
else: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
123 |
xround = round(fraction) |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
124 |
if constraint == 1 and int(fraction) == xround: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
125 |
xround += 1 |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
126 |
return xround * n |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
127 |
|
0 | 128 |
""" |
129 |
Basic vector operations for calculate wire points |
|
130 |
""" |
|
131 |
||
132 |
# Create a vector from two points and define if vector must be normal |
|
133 |
def vector(p1, p2, normal = True): |
|
134 |
vector = (p2.x - p1.x, p2.y - p1.y) |
|
135 |
if normal: |
|
136 |
return normalize(vector) |
|
137 |
return vector |
|
138 |
||
139 |
# Calculate the norm of a given vector |
|
140 |
def norm(v): |
|
141 |
return sqrt(v[0] * v[0] + v[1] * v[1]) |
|
142 |
||
143 |
# Normalize a given vector |
|
144 |
def normalize(v): |
|
145 |
v_norm = norm(v) |
|
146 |
# Verifie if it is not a null vector |
|
147 |
if v_norm > 0: |
|
148 |
return (v[0] / v_norm, v[1] / v_norm) |
|
149 |
else: |
|
150 |
return v |
|
151 |
||
296 | 152 |
# Calculate the scalar product of two vectors |
153 |
def is_null_vector(v): |
|
154 |
return v == (0, 0) |
|
155 |
||
156 |
# Calculate the scalar product of two vectors |
|
157 |
def add_vectors(v1, v2): |
|
158 |
return (v1[0] + v2[0], v1[1] + v2[1]) |
|
159 |
||
160 |
# Calculate the scalar product of two vectors |
|
161 |
def product(v1, v2): |
|
162 |
return v1[0] * v2[0] + v1[1] * v2[1] |
|
163 |
||
0 | 164 |
|
165 |
""" |
|
166 |
Function that calculates the nearest point of the grid defined by scaling for the given point |
|
167 |
""" |
|
168 |
||
27 | 169 |
def GetScaledEventPosition(event, dc, scaling): |
170 |
pos = event.GetLogicalPosition(dc) |
|
0 | 171 |
if scaling: |
172 |
pos.x = round(float(pos.x) / float(scaling[0])) * scaling[0] |
|
173 |
pos.y = round(float(pos.y) / float(scaling[1])) * scaling[1] |
|
174 |
return pos |
|
175 |
||
176 |
||
177 |
""" |
|
178 |
Function that choose a direction during the wire points generation |
|
179 |
""" |
|
180 |
||
181 |
def DirectionChoice(v_base, v_target, dir_target): |
|
182 |
dir_product = product(v_base, v_target) |
|
183 |
if dir_product < 0: |
|
184 |
return (-v_base[0], -v_base[1]) |
|
185 |
elif dir_product == 0 and product(v_base, dir_target) != 0: |
|
186 |
return dir_target |
|
187 |
return v_base |
|
188 |
||
519
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
189 |
SECOND = 1000000 |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
190 |
MINUTE = 60 * SECOND |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
191 |
HOUR = 60 * MINUTE |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
192 |
DAY = 24 * HOUR |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
193 |
|
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
194 |
def generate_time(value): |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
195 |
microseconds = float(value.days * DAY + value.seconds * SECOND + value.microseconds) |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
196 |
negative = microseconds < 0 |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
197 |
microseconds = abs(microseconds) |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
198 |
data = "T#" |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
199 |
not_null = False |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
200 |
if negative: |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
201 |
data += "-" |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
202 |
for val, format in [(int(microseconds) / DAY, "%dd"), |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
203 |
((int(microseconds) % DAY) / HOUR, "%dh"), |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
204 |
((int(microseconds) % HOUR) / MINUTE, "%dm"), |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
205 |
((int(microseconds) % MINUTE) / SECOND, "%ds")]: |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
206 |
if val > 0 or not_null: |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
207 |
data += format % val |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
208 |
not_null = True |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
209 |
data += "%gms" % (microseconds % SECOND / 1000.) |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
210 |
return data |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
211 |
|
525
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
212 |
def generate_date(value): |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
213 |
base_date = datetime.datetime(1970, 1, 1) |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
214 |
date = base_date + value |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
215 |
return date.strftime("DATE#%Y-%m-%d") |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
216 |
|
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
217 |
def generate_datetime(value): |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
218 |
base_date = datetime.datetime(1970, 1, 1) |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
219 |
date_time = base_date + value |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
220 |
return date_time.strftime("DT#%Y-%m-%d-%H:%M:%S.%f") |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
221 |
|
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
222 |
def generate_timeofday(value): |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
223 |
microseconds = float(value.days * DAY + value.seconds * SECOND + value.microseconds) |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
224 |
negative = microseconds < 0 |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
225 |
microseconds = abs(microseconds) |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
226 |
data = "TOD#" |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
227 |
for val, format in [(int(microseconds) / HOUR, "%2.2d:"), |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
228 |
((int(microseconds) % HOUR) / MINUTE, "%2.2d:"), |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
229 |
((int(microseconds) % MINUTE) / SECOND, "%2.2d."), |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
230 |
(microseconds % SECOND, "%6.6d")]: |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
231 |
data += format % val |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
232 |
return data |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
233 |
|
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
234 |
TYPE_TRANSLATOR = {"TIME": generate_time, |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
235 |
"DATE": generate_date, |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
236 |
"DT": generate_datetime, |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
237 |
"TOD": generate_timeofday} |
0 | 238 |
|
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
239 |
def MiterPen(colour, width=1, style=wx.SOLID): |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
240 |
pen = wx.Pen(colour, width, style) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
241 |
pen.SetJoin(wx.JOIN_MITER) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
242 |
pen.SetCap(wx.CAP_PROJECTING) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
243 |
return pen |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
244 |
|
0 | 245 |
#------------------------------------------------------------------------------- |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
246 |
# Debug Data Consumer Class |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
247 |
#------------------------------------------------------------------------------- |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
248 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
249 |
class DebugDataConsumer: |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
250 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
251 |
def __init__(self): |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
252 |
self.LastValue = None |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
253 |
self.Value = None |
519
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
254 |
self.DataType = None |
467
b6ac310f9551
Adding contextual menu in debug mode for forcing values
laurent
parents:
442
diff
changeset
|
255 |
self.LastForced = False |
b6ac310f9551
Adding contextual menu in debug mode for forcing values
laurent
parents:
442
diff
changeset
|
256 |
self.Forced = False |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
257 |
self.Inhibited = False |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
258 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
259 |
def Inhibit(self, inhibit): |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
260 |
self.Inhibited = inhibit |
372 | 261 |
if not inhibit and self.LastValue is not None: |
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
262 |
self.SetForced(self.LastForced) |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
263 |
self.SetValue(self.LastValue) |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
264 |
self.LastValue = None |
519
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
265 |
|
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
266 |
def SetDataType(self, data_type): |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
267 |
self.DataType = data_type |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
268 |
|
467
b6ac310f9551
Adding contextual menu in debug mode for forcing values
laurent
parents:
442
diff
changeset
|
269 |
def NewValue(self, tick, value, forced=False): |
519
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
270 |
value = TYPE_TRANSLATOR.get(self.DataType, lambda x:x)(value) |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
271 |
if self.Inhibited: |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
272 |
self.LastValue = value |
467
b6ac310f9551
Adding contextual menu in debug mode for forcing values
laurent
parents:
442
diff
changeset
|
273 |
self.LastForced = forced |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
274 |
else: |
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
275 |
self.SetForced(forced) |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
276 |
self.SetValue(value) |
519
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
277 |
|
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
278 |
def SetValue(self, value): |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
279 |
self.Value = value |
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
280 |
|
505
c5aec2269fb3
Fixed exception when forcing LD?contact.
Edouqrd Tisserant <edouard.tisserant@gmail.com>
parents:
480
diff
changeset
|
281 |
def GetValue(self): |
c5aec2269fb3
Fixed exception when forcing LD?contact.
Edouqrd Tisserant <edouard.tisserant@gmail.com>
parents:
480
diff
changeset
|
282 |
return self.Value |
c5aec2269fb3
Fixed exception when forcing LD?contact.
Edouqrd Tisserant <edouard.tisserant@gmail.com>
parents:
480
diff
changeset
|
283 |
|
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
284 |
def SetForced(self, forced): |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
285 |
self.Forced = forced |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
286 |
|
467
b6ac310f9551
Adding contextual menu in debug mode for forcing values
laurent
parents:
442
diff
changeset
|
287 |
def IsForced(self): |
b6ac310f9551
Adding contextual menu in debug mode for forcing values
laurent
parents:
442
diff
changeset
|
288 |
return self.Forced |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
289 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
290 |
#------------------------------------------------------------------------------- |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
291 |
# Debug Viewer Class |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
292 |
#------------------------------------------------------------------------------- |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
293 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
294 |
REFRESH_PERIOD = 0.1 |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
295 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
296 |
class DebugViewer: |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
297 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
298 |
def __init__(self, producer, debug, register_tick=True): |
407
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
299 |
self.DataProducer = None |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
300 |
self.Debug = debug |
407
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
301 |
self.RegisterTick = register_tick |
372 | 302 |
self.Inhibited = False |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
303 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
304 |
self.DataConsumers = {} |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
305 |
|
367 | 306 |
self.LastRefreshTime = gettime() |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
307 |
|
372 | 308 |
self.RefreshTimer = wx.Timer(self, -1) |
309 |
self.Bind(wx.EVT_TIMER, self.OnRefreshTimer, self.RefreshTimer) |
|
310 |
||
407
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
311 |
self.SetDataProducer(producer) |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
312 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
313 |
def __del__(self): |
407
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
314 |
self.DataProducer = None |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
315 |
self.DeleteDataConsumers() |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
316 |
self.RefreshTimer.Stop() |
407
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
317 |
|
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
318 |
def SetDataProducer(self, producer): |
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
319 |
if self.RegisterTick and self.Debug: |
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
320 |
if producer is not None: |
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
321 |
producer.SubscribeDebugIECVariable("__tick__", self) |
480 | 322 |
if self.DataProducer is not None: |
407
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
323 |
self.DataProducer.UnsubscribeDebugIECVariable("__tick__", self) |
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
324 |
self.DataProducer = producer |
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
325 |
|
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
326 |
def IsDebugging(self): |
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
327 |
return self.Debug |
0a324a874981
Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents:
399
diff
changeset
|
328 |
|
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
329 |
def Inhibit(self, inhibit): |
372 | 330 |
self.Inhibited = inhibit |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
331 |
for consumer, iec_path in self.DataConsumers.iteritems(): |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
332 |
consumer.Inhibit(inhibit) |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
333 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
334 |
def AddDataConsumer(self, iec_path, consumer): |
442
a756b58699b8
Adding tests to avoid in DataConsumer to call DataProducer if not defined
laurent
parents:
407
diff
changeset
|
335 |
if self.DataProducer is None: |
a756b58699b8
Adding tests to avoid in DataConsumer to call DataProducer if not defined
laurent
parents:
407
diff
changeset
|
336 |
return False |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
337 |
result = self.DataProducer.SubscribeDebugIECVariable(iec_path, consumer) is not None |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
338 |
if result is not None and consumer != self: |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
339 |
self.DataConsumers[consumer] = iec_path |
519
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
340 |
consumer.SetDataType(self.GetDataType(iec_path)) |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
341 |
return result |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
342 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
343 |
def RemoveDataConsumer(self, consumer): |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
344 |
iec_path = self.DataConsumers.pop(consumer, None) |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
345 |
if iec_path is not None: |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
346 |
self.DataProducer.UnsubscribeDebugIECVariable(iec_path, consumer) |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
347 |
|
469 | 348 |
def GetDataType(self, iec_path): |
349 |
if self.DataProducer is not None: |
|
350 |
return self.DataProducer.GetDebugIECVariableType(iec_path) |
|
351 |
return None |
|
352 |
||
353 |
def ForceDataValue(self, iec_path, value): |
|
354 |
if self.DataProducer is not None: |
|
355 |
self.DataProducer.ForceDebugIECVariable(iec_path, value) |
|
356 |
||
357 |
def ReleaseDataValue(self, iec_path): |
|
358 |
if self.DataProducer is not None: |
|
359 |
self.DataProducer.ReleaseDebugIECVariable(iec_path) |
|
360 |
||
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
361 |
def DeleteDataConsumers(self): |
442
a756b58699b8
Adding tests to avoid in DataConsumer to call DataProducer if not defined
laurent
parents:
407
diff
changeset
|
362 |
if self.DataProducer is not None: |
a756b58699b8
Adding tests to avoid in DataConsumer to call DataProducer if not defined
laurent
parents:
407
diff
changeset
|
363 |
for consumer, iec_path in self.DataConsumers.iteritems(): |
a756b58699b8
Adding tests to avoid in DataConsumer to call DataProducer if not defined
laurent
parents:
407
diff
changeset
|
364 |
self.DataProducer.UnsubscribeDebugIECVariable(iec_path, consumer) |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
365 |
self.DataConsumers = {} |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
366 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
367 |
def OnRefreshTimer(self, event): |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
368 |
self.RefreshNewData() |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
369 |
event.Skip() |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
370 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
371 |
def NewDataAvailable(self): |
372 | 372 |
self.RefreshTimer.Stop() |
373 |
if not self.Inhibited: |
|
374 |
current_time = gettime() |
|
375 |
if current_time - self.LastRefreshTime > REFRESH_PERIOD: |
|
376 |
self.LastRefreshTime = current_time |
|
377 |
self.Inhibit(True) |
|
378 |
wx.CallAfter(self.RefreshViewOnNewData) |
|
379 |
||
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
380 |
def RefreshViewOnNewData(self): |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
381 |
if self: |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
382 |
self.RefreshNewData() |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
383 |
self.RefreshTimer.Start(int(REFRESH_PERIOD * 1000), oneShot=True) |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
384 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
385 |
def RefreshNewData(self): |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
386 |
self.Inhibit(False) |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
387 |
|
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
388 |
#------------------------------------------------------------------------------- |
0 | 389 |
# Viewer Rubberband |
390 |
#------------------------------------------------------------------------------- |
|
391 |
||
392 |
""" |
|
393 |
Class that implements a rubberband |
|
394 |
""" |
|
395 |
||
396 |
class RubberBand: |
|
397 |
||
398 |
# Create a rubberband by indicated on which window it must be drawn |
|
586
9aa96a36cf33
Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents:
575
diff
changeset
|
399 |
def __init__(self, viewer): |
9aa96a36cf33
Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents:
575
diff
changeset
|
400 |
self.Viewer = viewer |
9aa96a36cf33
Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents:
575
diff
changeset
|
401 |
self.drawingSurface = viewer.Editor |
0 | 402 |
self.Reset() |
403 |
||
404 |
# Method that initializes the internal attributes of the rubberband |
|
405 |
def Reset(self): |
|
406 |
self.startPoint = None |
|
407 |
self.currentBox = None |
|
408 |
self.lastBox = None |
|
409 |
||
410 |
# Method that return if a box is currently edited |
|
411 |
def IsShown(self): |
|
412 |
return self.currentBox != None |
|
413 |
||
414 |
# Method that returns the currently edited box |
|
415 |
def GetCurrentExtent(self): |
|
416 |
return self.currentBox |
|
417 |
||
418 |
# Method called when a new box starts to be edited |
|
27 | 419 |
def OnLeftDown(self, event, dc, scaling): |
420 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 421 |
# Save the point for calculate the box position and size |
422 |
self.startPoint = pos |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
423 |
self.currentBox = wx.Rect(pos.x, pos.y, 0, 0) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
424 |
self.drawingSurface.SetCursor(wx.StockCursor(wx.CURSOR_CROSS)) |
0 | 425 |
self.Redraw() |
426 |
||
427 |
# Method called when dragging with a box edited |
|
27 | 428 |
def OnMotion(self, event, dc, scaling): |
429 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 430 |
# Save the last position and size of the box for erasing it |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
431 |
self.lastBox = wx.Rect(self.currentBox.x, self.currentBox.y, self.currentBox.width, |
0 | 432 |
self.currentBox.height) |
433 |
# Calculate new position and size of the box |
|
434 |
if pos.x >= self.startPoint.x: |
|
435 |
self.currentBox.x = self.startPoint.x |
|
436 |
self.currentBox.width = pos.x - self.startPoint.x + 1 |
|
437 |
else: |
|
438 |
self.currentBox.x = pos.x |
|
439 |
self.currentBox.width = self.startPoint.x - pos.x + 1 |
|
440 |
if pos.y >= self.startPoint.y: |
|
441 |
self.currentBox.y = self.startPoint.y |
|
442 |
self.currentBox.height = pos.y - self.startPoint.y + 1 |
|
443 |
else: |
|
444 |
self.currentBox.y = pos.y |
|
445 |
self.currentBox.height = self.startPoint.y - pos.y + 1 |
|
446 |
self.Redraw() |
|
447 |
||
448 |
# Method called when dragging is stopped |
|
27 | 449 |
def OnLeftUp(self, event, dc, scaling): |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
450 |
self.drawingSurface.SetCursor(wx.NullCursor) |
0 | 451 |
self.lastBox = self.currentBox |
452 |
self.currentBox = None |
|
453 |
self.Redraw() |
|
454 |
||
455 |
# Method that erase the last box and draw the new box |
|
90
2245e8776086
Adding support support for using PLCOpenEditor with Beremiz
lbessard
parents:
80
diff
changeset
|
456 |
def Redraw(self, dc = None): |
2245e8776086
Adding support support for using PLCOpenEditor with Beremiz
lbessard
parents:
80
diff
changeset
|
457 |
if not dc: |
586
9aa96a36cf33
Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents:
575
diff
changeset
|
458 |
dc = self.Viewer.GetLogicalDC() |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
459 |
scalex, scaley = dc.GetUserScale() |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
460 |
dc.SetUserScale(1, 1) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
461 |
dc.SetPen(wx.Pen(wx.WHITE, 1, wx.DOT)) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
462 |
dc.SetBrush(wx.TRANSPARENT_BRUSH) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
463 |
dc.SetLogicalFunction(wx.XOR) |
0 | 464 |
if self.lastBox: |
465 |
# Erase last box |
|
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
466 |
dc.DrawRectangle(self.lastBox.x * scalex, self.lastBox.y * scaley, |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
467 |
self.lastBox.width * scalex, self.lastBox.height * scaley) |
0 | 468 |
if self.currentBox: |
469 |
# Draw current box |
|
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
470 |
dc.DrawRectangle(self.currentBox.x * scalex, self.currentBox.y * scaley, |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
471 |
self.currentBox.width * scalex, self.currentBox.height * scaley) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
472 |
dc.SetUserScale(scalex, scaley) |
90
2245e8776086
Adding support support for using PLCOpenEditor with Beremiz
lbessard
parents:
80
diff
changeset
|
473 |
|
27 | 474 |
# Erase last box |
90
2245e8776086
Adding support support for using PLCOpenEditor with Beremiz
lbessard
parents:
80
diff
changeset
|
475 |
def Erase(self, dc = None): |
2245e8776086
Adding support support for using PLCOpenEditor with Beremiz
lbessard
parents:
80
diff
changeset
|
476 |
if not dc: |
586
9aa96a36cf33
Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents:
575
diff
changeset
|
477 |
dc = self.Viewer.GetLogicalDC() |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
478 |
scalex, scaley = dc.GetUserScale() |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
479 |
dc.SetUserScale(1, 1) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
480 |
dc.SetPen(wx.Pen(wx.WHITE, 1, wx.DOT)) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
481 |
dc.SetBrush(wx.TRANSPARENT_BRUSH) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
482 |
dc.SetLogicalFunction(wx.XOR) |
27 | 483 |
if self.lastBox: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
484 |
dc.DrawRectangle(self.lastBox.x * scalex, self.lastBox.y * scaley, |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
485 |
self.lastBox.width * scalex, self.lastBox.height * scalex) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
486 |
dc.SetUserScale(scalex, scaley) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
487 |
|
27 | 488 |
# Draw current box |
90
2245e8776086
Adding support support for using PLCOpenEditor with Beremiz
lbessard
parents:
80
diff
changeset
|
489 |
def Draw(self, dc = None): |
2245e8776086
Adding support support for using PLCOpenEditor with Beremiz
lbessard
parents:
80
diff
changeset
|
490 |
if not dc: |
586
9aa96a36cf33
Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents:
575
diff
changeset
|
491 |
dc = self.Viewer.GetLogicalDC() |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
492 |
scalex, scaley = dc.GetUserScale() |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
493 |
dc.SetUserScale(1, 1) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
494 |
dc.SetPen(wx.Pen(wx.WHITE, 1, wx.DOT)) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
495 |
dc.SetBrush(wx.TRANSPARENT_BRUSH) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
496 |
dc.SetLogicalFunction(wx.XOR) |
27 | 497 |
if self.currentBox: |
498 |
# Draw current box |
|
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
499 |
dc.DrawRectangle(self.currentBox.x * scalex, self.currentBox.y * scaley, |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
500 |
self.currentBox.width * scalex, self.currentBox.height * scaley) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
501 |
dc.SetUserScale(scalex, scaley) |
27 | 502 |
|
0 | 503 |
#------------------------------------------------------------------------------- |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
504 |
# Viewer ToolTip |
338 | 505 |
#------------------------------------------------------------------------------- |
506 |
||
507 |
""" |
|
508 |
Class that implements a custom tool tip |
|
509 |
""" |
|
510 |
||
628 | 511 |
if wx.Platform == '__WXMSW__': |
512 |
faces = { 'times': 'Times New Roman', |
|
513 |
'mono' : 'Courier New', |
|
514 |
'helv' : 'Arial', |
|
515 |
'other': 'Comic Sans MS', |
|
516 |
'size' : 10, |
|
517 |
} |
|
518 |
else: |
|
519 |
faces = { 'times': 'Times', |
|
520 |
'mono' : 'Courier', |
|
521 |
'helv' : 'Helvetica', |
|
522 |
'other': 'new century schoolbook', |
|
523 |
'size' : 12, |
|
524 |
} |
|
525 |
||
338 | 526 |
class ToolTip(wx.PopupWindow): |
527 |
||
528 |
def __init__(self, parent, tip): |
|
529 |
wx.PopupWindow.__init__(self, parent) |
|
612
fdb9501e5cc8
Fixing bug in Debug with ToolTip for wire value disappearing on Windows
laurent
parents:
586
diff
changeset
|
530 |
|
fdb9501e5cc8
Fixing bug in Debug with ToolTip for wire value disappearing on Windows
laurent
parents:
586
diff
changeset
|
531 |
self.CurrentPosition = wx.Point(0, 0) |
fdb9501e5cc8
Fixing bug in Debug with ToolTip for wire value disappearing on Windows
laurent
parents:
586
diff
changeset
|
532 |
|
358 | 533 |
self.SetBackgroundStyle(wx.BG_STYLE_CUSTOM) |
338 | 534 |
self.SetTip(tip) |
535 |
||
536 |
self.Bind(wx.EVT_PAINT, self.OnPaint) |
|
537 |
||
538 |
def SetTip(self, tip): |
|
539 |
self.Tip = tip |
|
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
540 |
wx.CallAfter(self.RefreshTip) |
612
fdb9501e5cc8
Fixing bug in Debug with ToolTip for wire value disappearing on Windows
laurent
parents:
586
diff
changeset
|
541 |
|
fdb9501e5cc8
Fixing bug in Debug with ToolTip for wire value disappearing on Windows
laurent
parents:
586
diff
changeset
|
542 |
def MoveToolTip(self, pos): |
fdb9501e5cc8
Fixing bug in Debug with ToolTip for wire value disappearing on Windows
laurent
parents:
586
diff
changeset
|
543 |
self.CurrentPosition = pos |
fdb9501e5cc8
Fixing bug in Debug with ToolTip for wire value disappearing on Windows
laurent
parents:
586
diff
changeset
|
544 |
self.SetPosition(pos) |
fdb9501e5cc8
Fixing bug in Debug with ToolTip for wire value disappearing on Windows
laurent
parents:
586
diff
changeset
|
545 |
|
628 | 546 |
def GetTipExtent(self): |
547 |
max_width = 0 |
|
548 |
max_height = 0 |
|
549 |
for line in self.Tip.splitlines(): |
|
550 |
w, h = self.GetTextExtent(line) |
|
551 |
max_width = max(max_width, w) |
|
552 |
max_height += h |
|
553 |
return max_width, max_height |
|
554 |
||
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
555 |
def RefreshTip(self): |
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
556 |
if self: |
628 | 557 |
w, h = self.GetTipExtent() |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
558 |
self.SetSize(wx.Size(w + 4, h + 4)) |
612
fdb9501e5cc8
Fixing bug in Debug with ToolTip for wire value disappearing on Windows
laurent
parents:
586
diff
changeset
|
559 |
self.SetPosition(self.CurrentPosition) |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
560 |
self.Refresh() |
338 | 561 |
|
562 |
def OnPaint(self, event): |
|
563 |
dc = wx.AutoBufferedPaintDC(self) |
|
564 |
dc.Clear() |
|
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
565 |
dc.SetPen(MiterPen(wx.BLACK)) |
338 | 566 |
dc.SetBrush(wx.Brush(wx.Colour(255, 238, 170))) |
628 | 567 |
dc.SetFont(wx.Font(faces["size"], wx.SWISS, wx.NORMAL, wx.NORMAL, faceName = faces["mono"])) |
338 | 568 |
dc.BeginDrawing() |
628 | 569 |
w, h = self.GetTipExtent() |
338 | 570 |
dc.DrawRectangle(0, 0, w + 4, h + 4) |
628 | 571 |
offset = 0 |
572 |
for line in self.Tip.splitlines(): |
|
573 |
dc.DrawText(line, 2, offset + 2) |
|
574 |
w, h = dc.GetTextExtent(line) |
|
575 |
offset += h |
|
338 | 576 |
dc.EndDrawing() |
577 |
event.Skip() |
|
578 |
||
579 |
#------------------------------------------------------------------------------- |
|
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
580 |
# Helpers for highlighting text |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
581 |
#------------------------------------------------------------------------------- |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
582 |
|
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
583 |
def AddHighlight(highlights, infos): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
584 |
RemoveHighlight(highlights, infos) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
585 |
highlights.append(infos) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
586 |
|
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
587 |
def RemoveHighlight(highlights, infos): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
588 |
if infos in highlights: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
589 |
highlights.remove(infos) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
590 |
return True |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
591 |
return False |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
592 |
|
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
593 |
def ClearHighlight(highlights, highlight_type=None): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
594 |
if highlight_type is not None: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
595 |
return [highlight for highlight in highlights if highlight[2] != highlight_type] |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
596 |
return [] |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
597 |
|
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
598 |
def DrawHighlightedText(dc, text, highlights, x, y): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
599 |
current_pen = dc.GetPen() |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
600 |
dc.SetPen(wx.TRANSPARENT_PEN) |
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
601 |
for start, end, highlight_type in highlights: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
602 |
dc.SetBrush(wx.Brush(highlight_type[0])) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
603 |
offset_width, offset_height = dc.GetTextExtent(text[:start[1]]) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
604 |
part = text[start[1]:end[1] + 1] |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
605 |
part_width, part_height = dc.GetTextExtent(part) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
606 |
dc.DrawRectangle(x + offset_width, y, part_width, part_height) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
607 |
dc.SetTextForeground(highlight_type[1]) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
608 |
dc.DrawText(part, x + offset_width, y) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
609 |
dc.SetPen(current_pen) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
610 |
dc.SetTextForeground(wx.BLACK) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
611 |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
612 |
#------------------------------------------------------------------------------- |
0 | 613 |
# Graphic element base class |
614 |
#------------------------------------------------------------------------------- |
|
615 |
||
616 |
""" |
|
617 |
Class that implements a generic graphic element |
|
618 |
""" |
|
619 |
||
620 |
class Graphic_Element: |
|
621 |
||
622 |
# Create a new graphic element |
|
623 |
def __init__(self, parent, id = None): |
|
624 |
self.Parent = parent |
|
625 |
self.Id = id |
|
626 |
self.oldPos = None |
|
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
627 |
self.StartPos = None |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
628 |
self.CurrentDrag = None |
180
3b0d3ea35ee5
Fixed bad handle initialisation, causing exception on rightup event in some cases.
etisserant
parents:
175
diff
changeset
|
629 |
self.Handle = (None,None) |
0 | 630 |
self.Dragging = False |
631 |
self.Selected = False |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
632 |
self.Highlighted = False |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
633 |
self.Pos = wx.Point(0, 0) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
634 |
self.Size = wx.Size(0, 0) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
635 |
self.BoundingBox = wx.Rect(0, 0, 0, 0) |
249 | 636 |
self.Visible = False |
625
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
637 |
self.ToolTip = None |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
638 |
self.ToolTipPos = None |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
639 |
self.ToolTipTimer = wx.Timer(self.Parent, -1) |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
640 |
self.Parent.Bind(wx.EVT_TIMER, self.OnToolTipTimer, self.ToolTipTimer) |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
641 |
|
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
642 |
def __del__(self): |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
643 |
self |
0 | 644 |
|
384
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
645 |
def GetDefinition(self): |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
646 |
return [self.Id], [] |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
647 |
|
249 | 648 |
def TestVisible(self, screen): |
265 | 649 |
self.Visible = self.GetRedrawRect().Intersects(screen) |
249 | 650 |
|
651 |
def IsVisible(self): |
|
652 |
return self.Visible |
|
653 |
||
654 |
def SpreadCurrent(self): |
|
655 |
pass |
|
656 |
||
283 | 657 |
def GetConnectorTranslation(self, element): |
658 |
return {} |
|
659 |
||
537
a31bf722aa82
Fix wire disappearing when wire tip and connector are not exactly at the same position fixed.
laurent
parents:
532
diff
changeset
|
660 |
def FindNearestConnector(self, position, connectors): |
a31bf722aa82
Fix wire disappearing when wire tip and connector are not exactly at the same position fixed.
laurent
parents:
532
diff
changeset
|
661 |
distances = [] |
a31bf722aa82
Fix wire disappearing when wire tip and connector are not exactly at the same position fixed.
laurent
parents:
532
diff
changeset
|
662 |
for connector in connectors: |
a31bf722aa82
Fix wire disappearing when wire tip and connector are not exactly at the same position fixed.
laurent
parents:
532
diff
changeset
|
663 |
connector_pos = connector.GetRelPosition() |
a31bf722aa82
Fix wire disappearing when wire tip and connector are not exactly at the same position fixed.
laurent
parents:
532
diff
changeset
|
664 |
distances.append((sqrt((self.Pos.x + connector_pos.x - position.x) ** 2 + |
a31bf722aa82
Fix wire disappearing when wire tip and connector are not exactly at the same position fixed.
laurent
parents:
532
diff
changeset
|
665 |
(self.Pos.y + connector_pos.y - position.y) ** 2), |
a31bf722aa82
Fix wire disappearing when wire tip and connector are not exactly at the same position fixed.
laurent
parents:
532
diff
changeset
|
666 |
connector)) |
a31bf722aa82
Fix wire disappearing when wire tip and connector are not exactly at the same position fixed.
laurent
parents:
532
diff
changeset
|
667 |
distances.sort() |
a31bf722aa82
Fix wire disappearing when wire tip and connector are not exactly at the same position fixed.
laurent
parents:
532
diff
changeset
|
668 |
if len(distances) > 0: |
a31bf722aa82
Fix wire disappearing when wire tip and connector are not exactly at the same position fixed.
laurent
parents:
532
diff
changeset
|
669 |
return distances[0][1] |
a31bf722aa82
Fix wire disappearing when wire tip and connector are not exactly at the same position fixed.
laurent
parents:
532
diff
changeset
|
670 |
return None |
a31bf722aa82
Fix wire disappearing when wire tip and connector are not exactly at the same position fixed.
laurent
parents:
532
diff
changeset
|
671 |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
672 |
def IsOfType(self, type, reference): |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
673 |
return self.Parent.IsOfType(type, reference) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
674 |
|
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
675 |
def IsEndType(self, type): |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
676 |
return self.Parent.IsEndType(type) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
677 |
|
144 | 678 |
def GetDragging(self): |
679 |
return self.Dragging |
|
680 |
||
0 | 681 |
# Make a clone of this element |
162 | 682 |
def Clone(self, parent): |
683 |
return Graphic_Element(parent, self.Id) |
|
0 | 684 |
|
685 |
# Changes the block position |
|
686 |
def SetPosition(self, x, y): |
|
687 |
self.Pos.x = x |
|
688 |
self.Pos.y = y |
|
689 |
self.RefreshConnected() |
|
690 |
self.RefreshBoundingBox() |
|
691 |
||
692 |
# Returns the block position |
|
693 |
def GetPosition(self): |
|
694 |
return self.Pos.x, self.Pos.y |
|
695 |
||
696 |
# Changes the element size |
|
697 |
def SetSize(self, width, height): |
|
698 |
self.Size.SetWidth(width) |
|
699 |
self.Size.SetHeight(height) |
|
700 |
self.RefreshConnectors() |
|
701 |
self.RefreshBoundingBox() |
|
702 |
||
703 |
# Returns the element size |
|
704 |
def GetSize(self): |
|
705 |
return self.Size.GetWidth(), self.Size.GetHeight() |
|
706 |
||
331
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
707 |
# Returns the minimum element size |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
708 |
def GetMinSize(self): |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
709 |
return 0, 0 |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
710 |
|
0 | 711 |
# Refresh the element Bounding Box |
712 |
def RefreshBoundingBox(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
713 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0], self.Size[1]) |
0 | 714 |
|
715 |
# Refresh the element connectors position |
|
716 |
def RefreshConnectors(self): |
|
717 |
pass |
|
718 |
||
719 |
# Refresh the position of wires connected to element inputs and outputs |
|
720 |
def RefreshConnected(self): |
|
721 |
pass |
|
722 |
||
723 |
# Change the parent |
|
724 |
def SetParent(self, parent): |
|
725 |
self.Parent = parent |
|
726 |
||
727 |
# Override this method for defining the method to call for deleting this element |
|
728 |
def Delete(self): |
|
729 |
pass |
|
730 |
||
731 |
# Returns the Id |
|
732 |
def GetId(self): |
|
733 |
return self.Id |
|
734 |
||
735 |
# Returns if the point given is in the bounding box |
|
736 |
def HitTest(self, pt): |
|
737 |
rect = self.BoundingBox |
|
738 |
return rect.InsideXY(pt.x, pt.y) |
|
739 |
||
42 | 740 |
# Returns if the point given is in the bounding box |
741 |
def IsInSelection(self, rect): |
|
742 |
return rect.InsideXY(self.BoundingBox.x, self.BoundingBox.y) and rect.InsideXY(self.BoundingBox.x + self.BoundingBox.width, self.BoundingBox.y + self.BoundingBox.height) |
|
743 |
||
0 | 744 |
# Override this method for refreshing the bounding box |
745 |
def RefreshBoundingBox(self): |
|
746 |
pass |
|
747 |
||
748 |
# Returns the bounding box |
|
749 |
def GetBoundingBox(self): |
|
750 |
return self.BoundingBox |
|
751 |
||
144 | 752 |
# Returns the RedrawRect |
753 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
754 |
dc = self.Parent.GetLogicalDC() |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
755 |
scalex, scaley = dc.GetUserScale() |
144 | 756 |
rect = wx.Rect() |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
757 |
rect.x = self.BoundingBox.x - int(HANDLE_SIZE / scalex) - 3 - abs(movex) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
758 |
rect.y = self.BoundingBox.y - int(HANDLE_SIZE / scaley) - 3 - abs(movey) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
759 |
rect.width = self.BoundingBox.width + 2 * (int(HANDLE_SIZE / scalex) + abs(movex) + 1) + 4 |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
760 |
rect.height = self.BoundingBox.height + 2 * (int(HANDLE_SIZE / scaley) + abs(movey) + 1) + 4 |
144 | 761 |
return rect |
762 |
||
763 |
def Refresh(self, rect = None): |
|
339 | 764 |
if self.Visible: |
765 |
if rect is not None: |
|
766 |
self.Parent.RefreshRect(self.Parent.GetScrolledRect(rect), False) |
|
767 |
else: |
|
768 |
self.Parent.RefreshRect(self.Parent.GetScrolledRect(self.GetRedrawRect()), False) |
|
144 | 769 |
|
0 | 770 |
# Change the variable that indicates if this element is selected |
771 |
def SetSelected(self, selected): |
|
772 |
self.Selected = selected |
|
144 | 773 |
self.Refresh() |
0 | 774 |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
775 |
# Change the variable that indicates if this element is highlighted |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
776 |
def SetHighlighted(self, highlighted): |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
777 |
self.Highlighted = highlighted |
144 | 778 |
self.Refresh() |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
779 |
|
0 | 780 |
# Test if the point is on a handle of this element |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
781 |
def TestHandle(self, event): |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
782 |
dc = self.Parent.GetLogicalDC() |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
783 |
scalex, scaley = dc.GetUserScale() |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
784 |
pos = event.GetPosition() |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
785 |
pt = wx.Point(*self.Parent.CalcUnscrolledPosition(pos.x, pos.y)) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
786 |
|
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
787 |
left = (self.BoundingBox.x - 2) * scalex - HANDLE_SIZE |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
788 |
center = (self.BoundingBox.x + self.BoundingBox.width / 2) * scalex - HANDLE_SIZE / 2 |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
789 |
right = (self.BoundingBox.x + self.BoundingBox.width + 2) * scalex |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
790 |
|
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
791 |
top = (self.BoundingBox.y - 2) * scaley - HANDLE_SIZE |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
792 |
middle = (self.BoundingBox.y + self.BoundingBox.height / 2) * scaley - HANDLE_SIZE / 2 |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
793 |
bottom = (self.BoundingBox.y + self.BoundingBox.height + 2) * scaley |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
794 |
|
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
795 |
extern_rect = wx.Rect(left, top, right + HANDLE_SIZE - left, bottom + HANDLE_SIZE - top) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
796 |
intern_rect = wx.Rect(left + HANDLE_SIZE, top + HANDLE_SIZE, right - left - HANDLE_SIZE, bottom - top - HANDLE_SIZE) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
797 |
|
0 | 798 |
# Verify that this element is selected |
58 | 799 |
if self.Selected and extern_rect.InsideXY(pt.x, pt.y) and not intern_rect.InsideXY(pt.x, pt.y): |
0 | 800 |
# Find if point is on a handle horizontally |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
801 |
if left <= pt.x < left + HANDLE_SIZE: |
0 | 802 |
handle_x = 1 |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
803 |
elif center <= pt.x < center + HANDLE_SIZE: |
0 | 804 |
handle_x = 2 |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
805 |
elif right <= pt.x < right + HANDLE_SIZE: |
0 | 806 |
handle_x = 3 |
807 |
else: |
|
808 |
handle_x = 0 |
|
809 |
# Find if point is on a handle vertically |
|
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
810 |
if top <= pt.y < top + HANDLE_SIZE: |
0 | 811 |
handle_y = 1 |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
812 |
elif middle <= pt.y < middle + HANDLE_SIZE: |
0 | 813 |
handle_y = 2 |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
814 |
elif bottom <= pt.y < bottom + HANDLE_SIZE: |
0 | 815 |
handle_y = 3 |
816 |
else: |
|
817 |
handle_y = 0 |
|
818 |
# Verify that the result is valid |
|
819 |
if (handle_x, handle_y) in VALID_HANDLES: |
|
820 |
return handle_x, handle_y |
|
821 |
return 0, 0 |
|
822 |
||
823 |
# Method called when a LeftDown event have been generated |
|
27 | 824 |
def OnLeftDown(self, event, dc, scaling): |
825 |
pos = event.GetLogicalPosition(dc) |
|
0 | 826 |
# Test if an handle have been clicked |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
827 |
handle = self.TestHandle(event) |
0 | 828 |
# Find which type of handle have been clicked, |
829 |
# Save a resize event and change the cursor |
|
58 | 830 |
cursor = HANDLE_CURSORS.get(handle, 1) |
381
98890d848701
Redefine cursor switching procedure in graphic viewers
laurent
parents:
372
diff
changeset
|
831 |
wx.CallAfter(self.Parent.SetCurrentCursor, cursor) |
58 | 832 |
if cursor > 1: |
833 |
self.Handle = (HANDLE_RESIZE, handle) |
|
0 | 834 |
else: |
835 |
self.Handle = (HANDLE_MOVE, None) |
|
836 |
self.SetSelected(False) |
|
837 |
# Initializes the last position |
|
27 | 838 |
self.oldPos = GetScaledEventPosition(event, dc, scaling) |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
839 |
self.StartPos = wx.Point(self.Pos.x, self.Pos.y) |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
840 |
self.CurrentDrag = wx.Point(0, 0) |
0 | 841 |
|
842 |
# Method called when a LeftUp event have been generated |
|
27 | 843 |
def OnLeftUp(self, event, dc, scaling): |
0 | 844 |
# If a dragging have been initiated |
845 |
if self.Dragging and self.oldPos: |
|
846 |
self.RefreshModel() |
|
56
7187e1c00975
Adding support for Undo/Redo and Unsaved File On Close detection
lbessard
parents:
42
diff
changeset
|
847 |
self.Parent.RefreshBuffer() |
381
98890d848701
Redefine cursor switching procedure in graphic viewers
laurent
parents:
372
diff
changeset
|
848 |
wx.CallAfter(self.Parent.SetCurrentCursor, 0) |
0 | 849 |
self.SetSelected(True) |
850 |
self.oldPos = None |
|
851 |
||
145 | 852 |
# Method called when a RightDown event have been generated |
853 |
def OnRightDown(self, event, dc, scaling): |
|
854 |
pass |
|
855 |
||
0 | 856 |
# Method called when a RightUp event have been generated |
27 | 857 |
def OnRightUp(self, event, dc, scaling): |
145 | 858 |
if self.Dragging and self.oldPos: |
859 |
self.RefreshModel() |
|
860 |
self.Parent.RefreshBuffer() |
|
381
98890d848701
Redefine cursor switching procedure in graphic viewers
laurent
parents:
372
diff
changeset
|
861 |
wx.CallAfter(self.Parent.SetCurrentCursor, 0) |
0 | 862 |
self.SetSelected(True) |
863 |
self.oldPos = None |
|
467
b6ac310f9551
Adding contextual menu in debug mode for forcing values
laurent
parents:
442
diff
changeset
|
864 |
if self.Parent.Debug: |
b6ac310f9551
Adding contextual menu in debug mode for forcing values
laurent
parents:
442
diff
changeset
|
865 |
self.Parent.PopupForceMenu() |
0 | 866 |
|
867 |
# Method called when a LeftDClick event have been generated |
|
27 | 868 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 869 |
pass |
870 |
||
871 |
# Method called when a Motion event have been generated |
|
27 | 872 |
def OnMotion(self, event, dc, scaling): |
0 | 873 |
# If the cursor is dragging and the element have been clicked |
874 |
if event.Dragging() and self.oldPos: |
|
875 |
# Calculate the movement of cursor |
|
145 | 876 |
pos = event.GetLogicalPosition(dc) |
0 | 877 |
movex = pos.x - self.oldPos.x |
878 |
movey = pos.y - self.oldPos.y |
|
879 |
# If movement is greater than MIN_MOVE then a dragging is initiated |
|
880 |
if not self.Dragging and (abs(movex) > MIN_MOVE or abs(movey) > MIN_MOVE): |
|
881 |
self.Dragging = True |
|
882 |
# If a dragging have been initiated, refreshes the element state |
|
883 |
if self.Dragging: |
|
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
884 |
dragx, dragy = self.ProcessDragging(movex, movey, event, scaling) |
329
1cf72cb51dc9
Adding support for contraining move to only one direction when control down
lbessard
parents:
328
diff
changeset
|
885 |
if event.ControlDown() and self.Handle[0] == HANDLE_MOVE: |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
886 |
self.oldPos.x = self.StartPos.x + self.CurrentDrag.x |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
887 |
self.oldPos.y = self.StartPos.y + self.CurrentDrag.y |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
888 |
else: |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
889 |
self.oldPos.x += dragx |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
890 |
self.oldPos.y += dragy |
144 | 891 |
return dragx, dragy |
892 |
return movex, movey |
|
0 | 893 |
# If cursor just pass over the element, changes the cursor if it is on a handle |
894 |
else: |
|
27 | 895 |
pos = event.GetLogicalPosition(dc) |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
896 |
handle = self.TestHandle(event) |
58 | 897 |
# Find which type of handle have been clicked, |
898 |
# Save a resize event and change the cursor |
|
899 |
cursor = HANDLE_CURSORS.get(handle, 0) |
|
381
98890d848701
Redefine cursor switching procedure in graphic viewers
laurent
parents:
372
diff
changeset
|
900 |
wx.CallAfter(self.Parent.SetCurrentCursor, cursor) |
144 | 901 |
return 0, 0 |
58 | 902 |
|
0 | 903 |
# Moves the element |
904 |
def Move(self, dx, dy, exclude = []): |
|
905 |
self.Pos.x += dx |
|
906 |
self.Pos.y += dy |
|
907 |
self.RefreshConnected(exclude) |
|
908 |
self.RefreshBoundingBox() |
|
909 |
||
910 |
# Resizes the element from position and size given |
|
911 |
def Resize(self, x, y, width, height): |
|
912 |
self.Move(x, y) |
|
913 |
self.SetSize(width, height) |
|
914 |
||
331
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
915 |
# Moves and Resizes the element for fitting scaling |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
916 |
def AdjustToScaling(self, scaling): |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
917 |
if scaling is not None: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
918 |
movex = round_scaling(self.Pos.x, scaling[0]) - self.Pos.x |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
919 |
movey = round_scaling(self.Pos.y, scaling[1]) - self.Pos.y |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
920 |
min_width, min_height = self.GetMinSize() |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
921 |
width = max(round_scaling(min_width, scaling[0], 1), |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
922 |
round_scaling(self.Size.width, scaling[0])) |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
923 |
height = max(round_scaling(min_height, scaling[1], 1), |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
924 |
round_scaling(self.Size.height, scaling[1])) |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
925 |
self.Resize(movex, movey, width, height) |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
926 |
return movex, movey |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
927 |
return 0, 0 |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
928 |
|
0 | 929 |
# Refreshes the element state according to move defined and handle selected |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
930 |
def ProcessDragging(self, movex, movey, event, scaling, width_fac = 1, height_fac = 1): |
0 | 931 |
handle_type, handle = self.Handle |
932 |
# If it is a resize handle, calculate the values from resizing |
|
933 |
if handle_type == HANDLE_RESIZE: |
|
175 | 934 |
if scaling is not None: |
935 |
scaling = (scaling[0] * width_fac, scaling[1] * height_fac) |
|
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
936 |
x = y = start_x = start_y = 0 |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
937 |
width, height = start_width, start_height = self.GetSize() |
0 | 938 |
if handle[0] == 1: |
145 | 939 |
movex = max(-self.BoundingBox.x, movex) |
940 |
if scaling is not None: |
|
331
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
941 |
movex = -(round_scaling(width - movex, scaling[0]) - width) |
145 | 942 |
x = movex |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
943 |
if event.ShiftDown(): |
165 | 944 |
width -= 2 * movex |
945 |
else: |
|
946 |
width -= movex |
|
0 | 947 |
elif handle[0] == 3: |
145 | 948 |
if scaling is not None: |
331
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
949 |
movex = round_scaling(width + movex, scaling[0]) - width |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
950 |
if event.ShiftDown(): |
334
cf0809bc5675
Adding support for preventing expending graphical element to have a negative position
lbessard
parents:
333
diff
changeset
|
951 |
movex = min(self.BoundingBox.x, movex) |
165 | 952 |
x = -movex |
953 |
width += 2 * movex |
|
954 |
else: |
|
955 |
width += movex |
|
0 | 956 |
if handle[1] == 1: |
145 | 957 |
movey = max(-self.BoundingBox.y, movey) |
958 |
if scaling is not None: |
|
331
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
959 |
movey = -(round_scaling(height - movey, scaling[1]) - height) |
145 | 960 |
y = movey |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
961 |
if event.ShiftDown(): |
165 | 962 |
height -= 2 * movey |
963 |
else: |
|
964 |
height -= movey |
|
0 | 965 |
elif handle[1] == 3: |
145 | 966 |
if scaling is not None: |
331
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
967 |
movey = round_scaling(height + movey, scaling[1]) - height |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
968 |
if event.ShiftDown(): |
334
cf0809bc5675
Adding support for preventing expending graphical element to have a negative position
lbessard
parents:
333
diff
changeset
|
969 |
movey = min(self.BoundingBox.y, movey) |
165 | 970 |
y = -movey |
971 |
height += 2 * movey |
|
972 |
else: |
|
973 |
height += movey |
|
0 | 974 |
# Verify that new size is not lesser than minimum |
975 |
min_width, min_height = self.GetMinSize() |
|
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
976 |
if handle[0] != 2 and (width >= min_width or width > self.Size[0]): |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
977 |
start_x = x |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
978 |
start_width = width |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
979 |
else: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
980 |
movex = 0 |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
981 |
if handle[1] != 2 and (height >= min_height or height > self.Size[1]): |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
982 |
start_y = y |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
983 |
start_height = height |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
984 |
else: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
985 |
movey = 0 |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
986 |
if movex != 0 or movey != 0: |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
987 |
self.Resize(start_x, start_y, start_width, start_height) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
988 |
return movex, movey |
0 | 989 |
# If it is a move handle, Move this element |
990 |
elif handle_type == HANDLE_MOVE: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
991 |
movex = max(-self.BoundingBox.x, movex) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
992 |
movey = max(-self.BoundingBox.y, movey) |
145 | 993 |
if scaling is not None: |
331
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
994 |
movex = round_scaling(self.Pos.x + movex, scaling[0]) - self.Pos.x |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
995 |
movey = round_scaling(self.Pos.y + movey, scaling[1]) - self.Pos.y |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
996 |
if event.ControlDown(): |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
997 |
self.CurrentDrag.x = self.CurrentDrag.x + movex |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
998 |
self.CurrentDrag.y = self.CurrentDrag.y + movey |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
999 |
if abs(self.CurrentDrag.x) > abs(self.CurrentDrag.y): |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
1000 |
movex = self.StartPos.x + self.CurrentDrag.x - self.Pos.x |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
1001 |
movey = self.StartPos.y - self.Pos.y |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
1002 |
else: |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
1003 |
movex = self.StartPos.x - self.Pos.x |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
1004 |
movey = self.StartPos.y + self.CurrentDrag.y - self.Pos.y |
0 | 1005 |
self.Move(movex, movey) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1006 |
return movex, movey |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1007 |
return 0, 0 |
0 | 1008 |
|
625
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1009 |
def OnToolTipTimer(self, event): |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1010 |
value = self.GetToolTipValue() |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1011 |
if value is not None and self.ToolTipPos is not None: |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1012 |
self.ToolTip = ToolTip(self.Parent, value) |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1013 |
self.ToolTip.MoveToolTip(self.ToolTipPos) |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1014 |
self.ToolTip.Show() |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1015 |
|
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1016 |
def GetToolTipValue(self): |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1017 |
return None |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1018 |
|
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1019 |
def CreateToolTip(self, pos): |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1020 |
value = self.GetToolTipValue() |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1021 |
if value is not None: |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1022 |
self.ToolTipPos = pos |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1023 |
self.ToolTipTimer.Start(int(TOOLTIP_WAIT_PERIOD * 1000), oneShot=True) |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1024 |
|
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1025 |
def MoveToolTip(self, pos): |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1026 |
if self.ToolTip is not None: |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1027 |
self.ToolTip.MoveToolTip(pos) |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1028 |
elif self.ToolTipPos is not None: |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1029 |
self.ToolTipPos = pos |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1030 |
self.ToolTipTimer.Start(int(TOOLTIP_WAIT_PERIOD * 1000), oneShot=True) |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1031 |
|
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1032 |
def ClearToolTip(self): |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1033 |
self.ToolTipTimer.Stop() |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1034 |
self.ToolTipPos = None |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1035 |
if self.ToolTip is not None: |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1036 |
self.ToolTip.Destroy() |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1037 |
self.ToolTip = None |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1038 |
|
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1039 |
# Override this method for defining the method to call for adding an highlight to this element |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1040 |
def AddHighlight(self, infos, start, end, highlight_type): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1041 |
pass |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1042 |
|
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1043 |
# Override this method for defining the method to call for removing an highlight from this element |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1044 |
def RemoveHighlight(self, infos, start, end, highlight_type): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1045 |
pass |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1046 |
|
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1047 |
# Override this method for defining the method to call for removing all the highlights of one particular type from this element |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1048 |
def ClearHighlight(self, highlight_type=None): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
1049 |
pass |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
1050 |
|
0 | 1051 |
# Override this method for defining the method to call for refreshing the model of this element |
1052 |
def RefreshModel(self, move=True): |
|
1053 |
pass |
|
1054 |
||
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1055 |
# Draws the highlightment of this element if it is highlighted (can be overwritten) |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1056 |
def DrawHighlightment(self, dc): |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1057 |
scalex, scaley = dc.GetUserScale() |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1058 |
dc.SetUserScale(1, 1) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1059 |
dc.SetPen(MiterPen(HIGHLIGHTCOLOR)) |
144 | 1060 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
1061 |
dc.SetLogicalFunction(wx.AND) |
|
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1062 |
dc.DrawRectangle(int(round((self.Pos.x - 1) * scalex)) - 2, |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1063 |
int(round((self.Pos.y - 1) * scaley)) - 2, |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1064 |
int(round((self.Size.width + 3) * scalex)) + 5, |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1065 |
int(round((self.Size.height + 3) * scaley)) + 5) |
144 | 1066 |
dc.SetLogicalFunction(wx.COPY) |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1067 |
dc.SetUserScale(scalex, scaley) |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1068 |
|
0 | 1069 |
# Draws the handles of this element if it is selected |
1070 |
def Draw(self, dc): |
|
399
3b9e0b092298
Bug drawing element selection state on printed documents fixed
laurent
parents:
398
diff
changeset
|
1071 |
if not getattr(dc, "printing", False): |
3b9e0b092298
Bug drawing element selection state on printed documents fixed
laurent
parents:
398
diff
changeset
|
1072 |
if self.Highlighted: |
3b9e0b092298
Bug drawing element selection state on printed documents fixed
laurent
parents:
398
diff
changeset
|
1073 |
self.DrawHighlightment(dc) |
3b9e0b092298
Bug drawing element selection state on printed documents fixed
laurent
parents:
398
diff
changeset
|
1074 |
if self.Selected: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1075 |
scalex, scaley = dc.GetUserScale() |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1076 |
dc.SetUserScale(1, 1) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1077 |
dc.SetPen(MiterPen(wx.BLACK)) |
399
3b9e0b092298
Bug drawing element selection state on printed documents fixed
laurent
parents:
398
diff
changeset
|
1078 |
dc.SetBrush(wx.BLACK_BRUSH) |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1079 |
|
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1080 |
left = (self.BoundingBox.x - 2) * scalex - HANDLE_SIZE |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1081 |
center = (self.BoundingBox.x + self.BoundingBox.width / 2) * scalex - HANDLE_SIZE / 2 |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1082 |
right = (self.BoundingBox.x + self.BoundingBox.width + 2) * scalex |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1083 |
|
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1084 |
top = (self.BoundingBox.y - 2) * scaley - HANDLE_SIZE |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1085 |
middle = (self.BoundingBox.y + self.BoundingBox.height / 2) * scaley - HANDLE_SIZE / 2 |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1086 |
bottom = (self.BoundingBox.y + self.BoundingBox.height + 2) * scaley |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1087 |
|
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1088 |
for x, y in [(left, top), (center, top), (right, top), |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1089 |
(left, middle), (right, middle), |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1090 |
(left, bottom), (center, bottom), (right, bottom)]: |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1091 |
dc.DrawRectangle(x, y, HANDLE_SIZE, HANDLE_SIZE) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1092 |
|
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1093 |
dc.SetUserScale(scalex, scaley) |
0 | 1094 |
|
1095 |
||
1096 |
#------------------------------------------------------------------------------- |
|
1097 |
# Group of graphic elements |
|
1098 |
#------------------------------------------------------------------------------- |
|
1099 |
||
1100 |
""" |
|
1101 |
Class that implements a group of graphic elements |
|
1102 |
""" |
|
1103 |
||
1104 |
class Graphic_Group(Graphic_Element): |
|
1105 |
||
1106 |
# Create a new group of graphic elements |
|
1107 |
def __init__(self, parent): |
|
1108 |
Graphic_Element.__init__(self, parent) |
|
1109 |
self.Elements = [] |
|
42 | 1110 |
self.RefreshWireExclusion() |
0 | 1111 |
self.RefreshBoundingBox() |
1112 |
||
1113 |
# Destructor |
|
1114 |
def __del__(self): |
|
1115 |
self.Elements = [] |
|
1116 |
||
384
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1117 |
def GetDefinition(self): |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1118 |
blocks = [] |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1119 |
wires = [] |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1120 |
for element in self.Elements: |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1121 |
block, wire = element.GetDefinition() |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1122 |
blocks.extend(block) |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1123 |
wires.extend(wire) |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1124 |
return blocks, wires |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1125 |
|
283 | 1126 |
# Make a clone of this element |
1127 |
def Clone(self, parent, pos = None): |
|
1128 |
group = Graphic_Group(parent) |
|
1129 |
connectors = {} |
|
339 | 1130 |
exclude_names = {} |
283 | 1131 |
wires = [] |
1132 |
if pos is not None: |
|
1133 |
dx, dy = pos.x - self.BoundingBox.x, pos.y - self.BoundingBox.y |
|
1134 |
for element in self.Elements: |
|
1135 |
if isinstance(element, Wire): |
|
1136 |
wires.append(element) |
|
1137 |
else: |
|
1138 |
if pos is not None: |
|
1139 |
x, y = element.GetPosition() |
|
1140 |
new_pos = wx.Point(x + dx, y + dy) |
|
1141 |
newid = parent.GetNewId() |
|
1142 |
if parent.IsNamedElement(element): |
|
339 | 1143 |
name = parent.GenerateNewName(element, exclude_names) |
1144 |
exclude_names[name.upper()] = True |
|
283 | 1145 |
new_element = element.Clone(parent, newid, name, pos = new_pos) |
1146 |
else: |
|
1147 |
new_element = element.Clone(parent, newid, pos = new_pos) |
|
339 | 1148 |
new_element.AdjustToScaling(parent.Scaling) |
283 | 1149 |
else: |
1150 |
new_element = element.Clone(parent) |
|
1151 |
connectors.update(element.GetConnectorTranslation(new_element)) |
|
1152 |
group.SelectElement(new_element) |
|
1153 |
for element in wires: |
|
1154 |
if pos is not None: |
|
1155 |
new_wire = element.Clone(parent, connectors, dx, dy) |
|
1156 |
else: |
|
1157 |
new_wire = element.Clone(parent, connectors) |
|
1158 |
if new_wire is not None: |
|
287 | 1159 |
if pos is not None: |
1160 |
parent.AddWire(new_wire) |
|
283 | 1161 |
group.SelectElement(new_wire) |
1162 |
if pos is not None: |
|
1163 |
for element in group.Elements: |
|
1164 |
if not isinstance(element, Wire): |
|
1165 |
parent.AddBlockInModel(element) |
|
1166 |
return group |
|
1167 |
||
1168 |
def CanAddBlocks(self, parent): |
|
1169 |
valid = True |
|
1170 |
for element in self.Elements: |
|
1171 |
if not isinstance(element, Wire): |
|
1172 |
valid &= parent.CanAddElement(element) |
|
1173 |
return valid |
|
1174 |
||
249 | 1175 |
def IsVisible(self): |
1176 |
for element in self.Elements: |
|
1177 |
if element.IsVisible(): |
|
1178 |
return True |
|
1179 |
return False |
|
1180 |
||
42 | 1181 |
# Refresh the list of wire excluded |
1182 |
def RefreshWireExclusion(self): |
|
1183 |
self.WireExcluded = [] |
|
1184 |
for element in self.Elements: |
|
1185 |
if isinstance(element, Wire): |
|
1186 |
startblock = element.StartConnected.GetParentBlock() |
|
1187 |
endblock = element.EndConnected.GetParentBlock() |
|
1188 |
if startblock in self.Elements and endblock in self.Elements: |
|
1189 |
self.WireExcluded.append(element) |
|
1190 |
||
144 | 1191 |
# Returns the RedrawRect |
1192 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
1193 |
rect = None |
|
1194 |
for element in self.Elements: |
|
1195 |
if rect is None: |
|
1196 |
rect = element.GetRedrawRect(movex, movey) |
|
1197 |
else: |
|
1198 |
rect = rect.Union(element.GetRedrawRect(movex, movey)) |
|
1199 |
return rect |
|
1200 |
||
0 | 1201 |
# Clean this group of elements |
1202 |
def Clean(self): |
|
1203 |
# Clean all the elements of the group |
|
1204 |
for element in self.Elements: |
|
1205 |
element.Clean() |
|
1206 |
||
1207 |
# Delete this group of elements |
|
1208 |
def Delete(self): |
|
1209 |
# Delete all the elements of the group |
|
1210 |
for element in self.Elements: |
|
1211 |
element.Delete() |
|
42 | 1212 |
self.WireExcluded = [] |
0 | 1213 |
|
1214 |
# Returns if the point given is in the bounding box of one of the elements of this group |
|
1215 |
def HitTest(self, pt): |
|
1216 |
result = False |
|
1217 |
for element in self.Elements: |
|
1218 |
result |= element.HitTest(pt) |
|
1219 |
return result |
|
1220 |
||
1221 |
# Returns if the element given is in this group |
|
1222 |
def IsElementIn(self, element): |
|
1223 |
return element in self.Elements |
|
1224 |
||
1225 |
# Change the elements of the group |
|
1226 |
def SetElements(self, elements): |
|
1227 |
self.Elements = elements |
|
42 | 1228 |
self.RefreshWireExclusion() |
0 | 1229 |
self.RefreshBoundingBox() |
1230 |
||
1231 |
# Returns the elements of the group |
|
1232 |
def GetElements(self): |
|
1233 |
return self.Elements |
|
1234 |
||
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1235 |
# Align the group elements |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1236 |
def AlignElements(self, horizontally, vertically): |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1237 |
minx = self.BoundingBox.x + self.BoundingBox.width |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1238 |
miny = self.BoundingBox.y + self.BoundingBox.height |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1239 |
maxx = self.BoundingBox.x |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1240 |
maxy = self.BoundingBox.y |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1241 |
for element in self.Elements: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1242 |
if not isinstance(element, Wire): |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1243 |
posx, posy = element.GetPosition() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1244 |
width, height = element.GetSize() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1245 |
minx = min(minx, posx) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1246 |
miny = min(miny, posy) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1247 |
maxx = max(maxx, posx + width) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1248 |
maxy = max(maxy, posy + height) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1249 |
for element in self.Elements: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1250 |
if not isinstance(element, Wire): |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1251 |
posx, posy = element.GetPosition() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1252 |
width, height = element.GetSize() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1253 |
movex = movey = 0 |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1254 |
if horizontally == ALIGN_LEFT: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1255 |
movex = minx - posx |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1256 |
elif horizontally == ALIGN_CENTER: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1257 |
movex = (maxx + minx - width) / 2 - posx |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1258 |
elif horizontally == ALIGN_RIGHT: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1259 |
movex = maxx - width - posx |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1260 |
if vertically == ALIGN_TOP: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1261 |
movey = miny - posy |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1262 |
elif vertically == ALIGN_MIDDLE: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1263 |
movey = (maxy + miny - height) / 2 - posy |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1264 |
elif vertically == ALIGN_BOTTOM: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1265 |
movey = maxy - height - posy |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1266 |
if movex != 0 or movey != 0: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1267 |
element.Move(movex, movey) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1268 |
element.RefreshModel() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1269 |
self.RefreshWireExclusion() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1270 |
self.RefreshBoundingBox() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1271 |
|
0 | 1272 |
# Remove or select the given element if it is or not in the group |
1273 |
def SelectElement(self, element): |
|
1274 |
if element in self.Elements: |
|
1275 |
self.Elements.remove(element) |
|
1276 |
else: |
|
1277 |
self.Elements.append(element) |
|
42 | 1278 |
self.RefreshWireExclusion() |
0 | 1279 |
self.RefreshBoundingBox() |
1280 |
||
1281 |
# Move this group of elements |
|
1282 |
def Move(self, movex, movey): |
|
1283 |
# Move all the elements of the group |
|
1284 |
for element in self.Elements: |
|
42 | 1285 |
if not isinstance(element, Wire): |
1286 |
element.Move(movex, movey, self.WireExcluded) |
|
1287 |
elif element in self.WireExcluded: |
|
0 | 1288 |
element.Move(movex, movey, True) |
1289 |
self.RefreshBoundingBox() |
|
1290 |
||
1291 |
# Refreshes the bounding box of this group of elements |
|
1292 |
def RefreshBoundingBox(self): |
|
1293 |
if len(self.Elements) > 0: |
|
1294 |
bbox = self.Elements[0].GetBoundingBox() |
|
1295 |
minx, miny = bbox.x, bbox.y |
|
1296 |
maxx = bbox.x + bbox.width |
|
1297 |
maxy = bbox.y + bbox.height |
|
1298 |
for element in self.Elements[1:]: |
|
1299 |
bbox = element.GetBoundingBox() |
|
1300 |
minx = min(minx, bbox.x) |
|
1301 |
miny = min(miny, bbox.y) |
|
1302 |
maxx = max(maxx, bbox.x + bbox.width) |
|
1303 |
maxy = max(maxy, bbox.y + bbox.height) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1304 |
self.BoundingBox = wx.Rect(minx, miny, maxx - minx, maxy - miny) |
0 | 1305 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1306 |
self.BoundingBox = wx.Rect(0, 0, 0, 0) |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
1307 |
self.Pos = wx.Point(self.BoundingBox.x, self.BoundingBox.y) |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
1308 |
self.Size = wx.Size(self.BoundingBox.width, self.BoundingBox.height) |
0 | 1309 |
|
1310 |
# Forbids to change the group position |
|
1311 |
def SetPosition(x, y): |
|
1312 |
pass |
|
1313 |
||
1314 |
# Returns the position of this group |
|
1315 |
def GetPosition(self): |
|
1316 |
return self.BoundingBox.x, self.BoundingBox.y |
|
1317 |
||
1318 |
# Forbids to change the group size |
|
1319 |
def SetSize(width, height): |
|
1320 |
pass |
|
1321 |
||
1322 |
# Returns the size of this group |
|
1323 |
def GetSize(self): |
|
1324 |
return self.BoundingBox.width, self.BoundingBox.height |
|
1325 |
||
331
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1326 |
# Moves and Resizes the group elements for fitting scaling |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1327 |
def AdjustToScaling(self, scaling): |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1328 |
movex_max = movey_max = 0 |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1329 |
for element in self.Elements: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1330 |
movex, movey = element.AdjustToScaling(scaling) |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1331 |
movex_max = max(movex_max, abs(movex)) |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1332 |
movey_max = max(movey_max, abs(movey)) |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1333 |
return movex_max, movey_max |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1334 |
|
339 | 1335 |
# Refreshes the group elements to move defined and handle selected |
1336 |
def ProcessDragging(self, movex, movey, event, scaling): |
|
1337 |
handle_type, handle = self.Handle |
|
1338 |
# If it is a move handle, Move this group elements |
|
1339 |
if handle_type == HANDLE_MOVE: |
|
1340 |
movex = max(-self.BoundingBox.x, movex) |
|
1341 |
movey = max(-self.BoundingBox.y, movey) |
|
1342 |
if scaling is not None: |
|
1343 |
movex = round_scaling(movex, scaling[0]) |
|
1344 |
movey = round_scaling(movey, scaling[1]) |
|
1345 |
if event.ControlDown(): |
|
1346 |
self.CurrentDrag.x = self.CurrentDrag.x + movex |
|
1347 |
self.CurrentDrag.y = self.CurrentDrag.y + movey |
|
1348 |
if abs(self.CurrentDrag.x) > abs(self.CurrentDrag.y): |
|
1349 |
movex = self.StartPos.x + self.CurrentDrag.x - self.Pos.x |
|
1350 |
movey = self.StartPos.y - self.Pos.y |
|
1351 |
else: |
|
1352 |
movex = self.StartPos.x - self.Pos.x |
|
1353 |
movey = self.StartPos.y + self.CurrentDrag.y - self.Pos.y |
|
1354 |
self.Move(movex, movey) |
|
1355 |
return movex, movey |
|
1356 |
return 0, 0 |
|
1357 |
||
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1358 |
# Change the variable that indicates if this element is highlighted |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1359 |
def SetHighlighted(self, highlighted): |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1360 |
for element in self.Elements: |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1361 |
element.SetHighlighted(highlighted) |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1362 |
|
339 | 1363 |
# Method called when a LeftDown event have been generated |
1364 |
def OnLeftDown(self, event, dc, scaling): |
|
1365 |
Graphic_Element.OnLeftDown(self, event, dc, scaling) |
|
1366 |
for element in self.Elements: |
|
1367 |
element.Handle = self.Handle |
|
1368 |
||
0 | 1369 |
# Change the variable that indicates if the elemente is selected |
1370 |
def SetSelected(self, selected): |
|
1371 |
for element in self.Elements: |
|
1372 |
element.SetSelected(selected) |
|
1373 |
||
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1374 |
# Method called when a RightUp event has been generated |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1375 |
def OnRightUp(self, event, dc, scaling): |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1376 |
# Popup the menu with special items for a group |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1377 |
self.Parent.PopupGroupMenu() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1378 |
|
0 | 1379 |
# Refreshes the model of all the elements of this group |
1380 |
def RefreshModel(self): |
|
1381 |
for element in self.Elements: |
|
1382 |
element.RefreshModel() |
|
1383 |
||
1384 |
||
1385 |
#------------------------------------------------------------------------------- |
|
1386 |
# Connector for all types of blocks |
|
1387 |
#------------------------------------------------------------------------------- |
|
1388 |
||
1389 |
""" |
|
1390 |
Class that implements a connector for any type of block |
|
1391 |
""" |
|
1392 |
||
1393 |
class Connector: |
|
1394 |
||
1395 |
# Create a new connector |
|
27 | 1396 |
def __init__(self, parent, name, type, position, direction, negated = False, edge = "none", onlyone = False): |
0 | 1397 |
self.ParentBlock = parent |
1398 |
self.Name = name |
|
1399 |
self.Type = type |
|
1400 |
self.Pos = position |
|
1401 |
self.Direction = direction |
|
1402 |
self.Wires = [] |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
1403 |
if self.ParentBlock.IsOfType("BOOL", type): |
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1404 |
self.Negated = negated |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1405 |
self.Edge = edge |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1406 |
else: |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1407 |
self.Negated = False |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1408 |
self.Edge = "none" |
27 | 1409 |
self.OneConnected = onlyone |
249 | 1410 |
self.Valid = True |
1411 |
self.Value = None |
|
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
1412 |
self.Forced = False |
550 | 1413 |
self.Selected = False |
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1414 |
self.Highlights = [] |
42 | 1415 |
self.RefreshNameSize() |
0 | 1416 |
|
249 | 1417 |
def Flush(self): |
1418 |
self.ParentBlock = None |
|
1419 |
for wire, handle in self.Wires: |
|
1420 |
wire.Flush() |
|
1421 |
self.Wires = [] |
|
1422 |
||
144 | 1423 |
# Returns the RedrawRect |
1424 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
1425 |
parent_pos = self.ParentBlock.GetPosition() |
|
1426 |
x = min(parent_pos[0] + self.Pos.x, parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE) |
|
1427 |
y = min(parent_pos[1] + self.Pos.y, parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE) |
|
1428 |
if self.Direction[0] == 0: |
|
1429 |
width = 5 |
|
1430 |
else: |
|
1431 |
width = CONNECTOR_SIZE |
|
1432 |
if self.Direction[1] == 0: |
|
1433 |
height = 5 |
|
1434 |
else: |
|
1435 |
height = CONNECTOR_SIZE |
|
1436 |
return wx.Rect(x - abs(movex), y - abs(movey), width + 2 * abs(movex), height + 2 * abs(movey)) |
|
1437 |
||
550 | 1438 |
# Change the connector selection |
1439 |
def SetSelected(self, selected): |
|
1440 |
self.Selected = selected |
|
0 | 1441 |
|
1442 |
# Make a clone of the connector |
|
112 | 1443 |
def Clone(self, parent = None): |
1444 |
if parent is None: |
|
1445 |
parent = self.ParentBlock |
|
1446 |
return Connector(parent, self.Name, self.Type, wx.Point(self.Pos[0], self.Pos[1]), |
|
0 | 1447 |
self.Direction, self.Negated) |
1448 |
||
1449 |
# Returns the connector parent block |
|
1450 |
def GetParentBlock(self): |
|
1451 |
return self.ParentBlock |
|
1452 |
||
99
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1453 |
# Returns the connector type |
112 | 1454 |
def GetType(self, raw = False): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
1455 |
if self.ParentBlock.IsEndType(self.Type) or raw: |
99
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1456 |
return self.Type |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
1457 |
elif (self.Negated or self.Edge != "none") and self.ParentBlock.IsOfType("BOOL", self.Type): |
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1458 |
return "BOOL" |
99
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1459 |
else: |
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1460 |
return self.ParentBlock.GetConnectionResultType(self, self.Type) |
99
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1461 |
|
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1462 |
# Returns the connector type |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1463 |
def GetConnectedType(self): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
1464 |
if self.ParentBlock.IsEndType(self.Type): |
99
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1465 |
return self.Type |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1466 |
elif len(self.Wires) == 1: |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1467 |
return self.Wires[0][0].GetOtherConnectedType(self.Wires[0][1]) |
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1468 |
return self.Type |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1469 |
|
144 | 1470 |
# Returns the connector type |
1471 |
def GetConnectedRedrawRect(self, movex, movey): |
|
1472 |
rect = None |
|
1473 |
for wire, handle in self.Wires: |
|
1474 |
if rect is None: |
|
1475 |
rect = wire.GetRedrawRect() |
|
1476 |
else: |
|
1477 |
rect = rect.Union(wire.GetRedrawRect()) |
|
1478 |
return rect |
|
1479 |
||
98 | 1480 |
# Returns if connector type is compatible with type given |
1481 |
def IsCompatible(self, type): |
|
99
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1482 |
reference = self.GetType() |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
1483 |
return self.ParentBlock.IsOfType(type, reference) or self.ParentBlock.IsOfType(reference, type) |
98 | 1484 |
|
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1485 |
# Changes the connector name |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1486 |
def SetType(self, type): |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1487 |
self.Type = type |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1488 |
|
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1489 |
# Returns the connector name |
0 | 1490 |
def GetName(self): |
1491 |
return self.Name |
|
1492 |
||
1493 |
# Changes the connector name |
|
1494 |
def SetName(self, name): |
|
1495 |
self.Name = name |
|
42 | 1496 |
self.RefreshNameSize() |
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1497 |
|
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
1498 |
def RefreshForced(self): |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
1499 |
self.Forced = False |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
1500 |
for wire, handle in self.Wires: |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
1501 |
self.Forced |= wire.IsForced() |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
1502 |
|
249 | 1503 |
def RefreshValue(self): |
1504 |
self.Value = self.ReceivingCurrent() |
|
1505 |
||
339 | 1506 |
def RefreshValid(self): |
1507 |
self.Valid = True |
|
1508 |
for wire, handle in self.Wires: |
|
1509 |
self.Valid &= wire.GetValid() |
|
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1510 |
|
249 | 1511 |
def ReceivingCurrent(self): |
1512 |
current = False |
|
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1513 |
for wire, handle in self.Wires: |
249 | 1514 |
value = wire.GetValue() |
253 | 1515 |
if current != "undefined" and isinstance(value, BooleanType): |
249 | 1516 |
current |= wire.GetValue() |
253 | 1517 |
elif value == "undefined": |
1518 |
current = "undefined" |
|
249 | 1519 |
return current |
1520 |
||
1521 |
def SpreadCurrent(self, spreading): |
|
1522 |
for wire, handle in self.Wires: |
|
1523 |
wire.SetValue(spreading) |
|
42 | 1524 |
|
1525 |
# Changes the connector name size |
|
1526 |
def RefreshNameSize(self): |
|
1527 |
if self.Name != "": |
|
532
63e141705d19
Fix bug with Function Blocks input and output position on Windows
laurent
parents:
529
diff
changeset
|
1528 |
self.NameSize = self.ParentBlock.Parent.GetTextExtent(self.Name) |
42 | 1529 |
else: |
1530 |
self.NameSize = 0, 0 |
|
1531 |
||
1532 |
# Returns the connector name size |
|
1533 |
def GetNameSize(self): |
|
1534 |
return self.NameSize |
|
0 | 1535 |
|
1536 |
# Returns the wires connected to the connector |
|
1537 |
def GetWires(self): |
|
1538 |
return self.Wires |
|
1539 |
||
1540 |
# Returns the parent block Id |
|
1541 |
def GetBlockId(self): |
|
1542 |
return self.ParentBlock.GetId() |
|
1543 |
||
1544 |
# Returns the connector relative position |
|
1545 |
def GetRelPosition(self): |
|
1546 |
return self.Pos |
|
1547 |
||
1548 |
# Returns the connector absolute position |
|
1549 |
def GetPosition(self, size = True): |
|
1550 |
parent_pos = self.ParentBlock.GetPosition() |
|
1551 |
# If the position of the end of the connector is asked |
|
1552 |
if size: |
|
1553 |
x = parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE |
|
1554 |
y = parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE |
|
1555 |
else: |
|
1556 |
x = parent_pos[0] + self.Pos.x |
|
1557 |
y = parent_pos[1] + self.Pos.y |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1558 |
return wx.Point(x, y) |
0 | 1559 |
|
1560 |
# Change the connector relative position |
|
1561 |
def SetPosition(self, pos): |
|
1562 |
self.Pos = pos |
|
1563 |
||
1564 |
# Returns the connector direction |
|
1565 |
def GetDirection(self): |
|
1566 |
return self.Direction |
|
1567 |
||
1568 |
# Change the connector direction |
|
1569 |
def SetDirection(self, direction): |
|
1570 |
self.Direction = direction |
|
1571 |
||
1572 |
# Connect a wire to this connector at the last place |
|
1573 |
def Connect(self, wire, refresh = True): |
|
1574 |
self.InsertConnect(len(self.Wires), wire, refresh) |
|
1575 |
||
1576 |
# Connect a wire to this connector at the place given |
|
1577 |
def InsertConnect(self, idx, wire, refresh = True): |
|
1578 |
if wire not in self.Wires: |
|
1579 |
self.Wires.insert(idx, wire) |
|
1580 |
if refresh: |
|
1581 |
self.ParentBlock.RefreshModel(False) |
|
1582 |
||
1583 |
# Returns the index of the wire given in the list of connected |
|
1584 |
def GetWireIndex(self, wire): |
|
1585 |
for i, (tmp_wire, handle) in enumerate(self.Wires): |
|
1586 |
if tmp_wire == wire: |
|
1587 |
return i |
|
1588 |
return None |
|
1589 |
||
1590 |
# Unconnect a wire or all wires connected to the connector |
|
2 | 1591 |
def UnConnect(self, wire = None, unconnect = True, delete = False): |
0 | 1592 |
i = 0 |
1593 |
found = False |
|
1594 |
while i < len(self.Wires) and not found: |
|
1595 |
if not wire or self.Wires[i][0] == wire: |
|
1596 |
# If Unconnect haven't been called from a wire, disconnect the connector in the wire |
|
1597 |
if unconnect: |
|
1598 |
if self.Wires[i][1] == 0: |
|
2 | 1599 |
self.Wires[i][0].UnConnectStartPoint(delete) |
0 | 1600 |
else: |
2 | 1601 |
self.Wires[i][0].UnConnectEndPoint(delete) |
0 | 1602 |
# Remove wire from connected |
1603 |
if wire: |
|
1604 |
self.Wires.pop(i) |
|
1605 |
found = True |
|
1606 |
i += 1 |
|
1607 |
# If no wire defined, unconnect all wires |
|
1608 |
if not wire: |
|
1609 |
self.Wires = [] |
|
339 | 1610 |
self.RefreshValid() |
0 | 1611 |
self.ParentBlock.RefreshModel(False) |
1612 |
||
1613 |
# Returns if connector has one or more wire connected |
|
1614 |
def IsConnected(self): |
|
1615 |
return len(self.Wires) > 0 |
|
1616 |
||
1617 |
# Move the wires connected |
|
1618 |
def MoveConnected(self, exclude = []): |
|
1619 |
if len(self.Wires) > 0: |
|
1620 |
# Calculate the new position of the end point |
|
1621 |
parent_pos = self.ParentBlock.GetPosition() |
|
1622 |
x = parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE |
|
1623 |
y = parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE |
|
1624 |
# Move the corresponding point on all the wires connected |
|
1625 |
for wire, index in self.Wires: |
|
1626 |
if wire not in exclude: |
|
1627 |
if index == 0: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1628 |
wire.MoveStartPoint(wx.Point(x, y)) |
0 | 1629 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1630 |
wire.MoveEndPoint(wx.Point(x, y)) |
0 | 1631 |
|
1632 |
# Refreshes the model of all the wires connected |
|
1633 |
def RefreshWires(self): |
|
1634 |
for wire in self.Wires: |
|
1635 |
wire[0].RefreshModel() |
|
1636 |
||
1637 |
# Refreshes the parent block model |
|
1638 |
def RefreshParentBlock(self): |
|
1639 |
self.ParentBlock.RefreshModel(False) |
|
1640 |
||
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1641 |
# Highlight the parent block |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1642 |
def HighlightParentBlock(self, highlight): |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1643 |
self.ParentBlock.SetHighlighted(highlight) |
144 | 1644 |
self.ParentBlock.Refresh() |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1645 |
|
27 | 1646 |
# Returns all the blocks connected to this connector |
1647 |
def GetConnectedBlocks(self): |
|
1648 |
blocks = [] |
|
1649 |
for wire, handle in self.Wires: |
|
1650 |
# Get other connector connected to each wire |
|
1651 |
if handle == 0: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1652 |
connector = wire.GetEndConnected() |
27 | 1653 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1654 |
connector = wire.GetStartConnected() |
27 | 1655 |
# Get parent block for this connector |
1656 |
if connector: |
|
1657 |
block = connector.GetParentBlock() |
|
1658 |
if block not in blocks: |
|
1659 |
blocks.append(block) |
|
1660 |
return blocks |
|
1661 |
||
0 | 1662 |
# Returns the connector negated property |
1663 |
def IsNegated(self): |
|
1664 |
return self.Negated |
|
1665 |
||
1666 |
# Changes the connector negated property |
|
1667 |
def SetNegated(self, negated): |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
1668 |
if self.ParentBlock.IsOfType("BOOL", self.Type): |
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1669 |
self.Negated = negated |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1670 |
self.Edge = "none" |
0 | 1671 |
|
1672 |
# Returns the connector edge property |
|
1673 |
def GetEdge(self): |
|
1674 |
return self.Edge |
|
1675 |
||
1676 |
# Changes the connector edge property |
|
1677 |
def SetEdge(self, edge): |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
1678 |
if self.ParentBlock.IsOfType("BOOL", self.Type): |
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1679 |
self.Edge = edge |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1680 |
self.Negated = False |
0 | 1681 |
|
1682 |
# Tests if the point given is near from the end point of this connector |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
1683 |
def TestPoint(self, pt, direction = None, exclude = True): |
0 | 1684 |
parent_pos = self.ParentBlock.GetPosition() |
249 | 1685 |
if (not (len(self.Wires) > 0 and self.OneConnected and exclude) or self.Type == "BOOL")\ |
1686 |
and direction is None or self.Direction == direction: |
|
1687 |
# Calculate a square around the end point of this connector |
|
1688 |
x = parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE - ANCHOR_DISTANCE |
|
1689 |
y = parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE - ANCHOR_DISTANCE |
|
1690 |
width = ANCHOR_DISTANCE * 2 + abs(self.Direction[0]) * CONNECTOR_SIZE |
|
1691 |
height = ANCHOR_DISTANCE * 2 + abs(self.Direction[1]) * CONNECTOR_SIZE |
|
1692 |
rect = wx.Rect(x, y, width, height) |
|
1693 |
return rect.InsideXY(pt.x, pt.y) |
|
0 | 1694 |
return False |
1695 |
||
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1696 |
# Draws the highlightment of this element if it is highlighted |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1697 |
def DrawHighlightment(self, dc): |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1698 |
scalex, scaley = dc.GetUserScale() |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1699 |
dc.SetUserScale(1, 1) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1700 |
pen = MiterPen(HIGHLIGHTCOLOR, 2 * scalex + 5) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1701 |
pen.SetCap(wx.CAP_BUTT) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1702 |
dc.SetPen(pen) |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1703 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
144 | 1704 |
dc.SetLogicalFunction(wx.AND) |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1705 |
parent_pos = self.ParentBlock.GetPosition() |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1706 |
posx = parent_pos[0] + self.Pos.x |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1707 |
posy = parent_pos[1] + self.Pos.y |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1708 |
xstart = parent_pos[0] + self.Pos.x |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1709 |
ystart = parent_pos[1] + self.Pos.y |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1710 |
if self.Direction[0] < 0: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1711 |
xstart += 1 |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1712 |
if self.Direction[1] < 0: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1713 |
ystart += 1 |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1714 |
xend = xstart + CONNECTOR_SIZE * self.Direction[0] |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1715 |
yend = ystart + CONNECTOR_SIZE * self.Direction[1] |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1716 |
dc.DrawLine(round((xstart + self.Direction[0]) * scalex), round((ystart + self.Direction[1]) * scaley), |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1717 |
round(xend * scalex), round(yend * scaley)) |
144 | 1718 |
dc.SetLogicalFunction(wx.COPY) |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1719 |
dc.SetUserScale(scalex, scaley) |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1720 |
|
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1721 |
# Adds an highlight to the connector |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1722 |
def AddHighlight(self, infos, start, end, highlight_type): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1723 |
if highlight_type == ERROR_HIGHLIGHT: |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
1724 |
for wire, handle in self.Wires: |
339 | 1725 |
wire.SetValid(False) |
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1726 |
AddHighlight(self.Highlights, (start, end, highlight_type)) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1727 |
|
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1728 |
# Removes an highlight from the connector |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1729 |
def RemoveHighlight(self, infos, start, end, highlight_type): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1730 |
error = False |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1731 |
highlights = [] |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1732 |
for highlight in self.Highlights: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1733 |
if highlight != (start, end, highlight_type): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1734 |
highlights.append(highlight) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1735 |
error |= highlight == ERROR_HIGHLIGHT |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1736 |
self.Highlights = highlights |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1737 |
if not error: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1738 |
for wire, handle in self.Wires: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1739 |
wire.SetValid(wire.IsConnectedCompatible()) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1740 |
|
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1741 |
# Removes all the highlights of one particular type from the connector |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1742 |
def ClearHighlight(self, highlight_type=None): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1743 |
error = False |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1744 |
if highlight_type is None: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1745 |
self.Highlights = [] |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
1746 |
else: |
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1747 |
highlights = [] |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1748 |
for highlight in self.Highlights: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1749 |
if highlight[2] != highlight_type: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1750 |
highlights.append(highlight) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1751 |
error |= highlight == ERROR_HIGHLIGHT |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1752 |
self.Highlights = highlights |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1753 |
if not error: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1754 |
for wire, handle in self.Wires: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1755 |
wire.SetValid(wire.IsConnectedCompatible()) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
1756 |
|
0 | 1757 |
# Draws the connector |
1758 |
def Draw(self, dc): |
|
550 | 1759 |
if self.Selected: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1760 |
dc.SetPen(MiterPen(wx.BLUE, 3)) |
550 | 1761 |
dc.SetBrush(wx.WHITE_BRUSH) |
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1762 |
#elif len(self.Highlights) > 0: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1763 |
# dc.SetPen(MiterPen(self.Highlights[-1][1])) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1764 |
# dc.SetBrush(wx.Brush(self.Highlights[-1][0])) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
1765 |
else: |
249 | 1766 |
if not self.Valid: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1767 |
dc.SetPen(MiterPen(wx.RED)) |
249 | 1768 |
elif isinstance(self.Value, BooleanType) and self.Value: |
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
1769 |
if self.Forced: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1770 |
dc.SetPen(MiterPen(wx.CYAN)) |
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
1771 |
else: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1772 |
dc.SetPen(MiterPen(wx.GREEN)) |
253 | 1773 |
elif self.Value == "undefined": |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1774 |
dc.SetPen(MiterPen(wx.NamedColour("orange"))) |
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
1775 |
elif self.Forced: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1776 |
dc.SetPen(MiterPen(wx.BLUE)) |
249 | 1777 |
else: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1778 |
dc.SetPen(MiterPen(wx.BLACK)) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
222
diff
changeset
|
1779 |
dc.SetBrush(wx.WHITE_BRUSH) |
0 | 1780 |
parent_pos = self.ParentBlock.GetPosition() |
213 | 1781 |
|
1782 |
if getattr(dc, "printing", False): |
|
1783 |
name_size = dc.GetTextExtent(self.Name) |
|
1784 |
else: |
|
1785 |
name_size = self.NameSize |
|
1786 |
||
0 | 1787 |
if self.Negated: |
1788 |
# If connector is negated, draw a circle |
|
1789 |
xcenter = parent_pos[0] + self.Pos.x + (CONNECTOR_SIZE * self.Direction[0]) / 2 |
|
1790 |
ycenter = parent_pos[1] + self.Pos.y + (CONNECTOR_SIZE * self.Direction[1]) / 2 |
|
1791 |
dc.DrawCircle(xcenter, ycenter, CONNECTOR_SIZE / 2) |
|
1792 |
else: |
|
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1793 |
xstart = parent_pos[0] + self.Pos.x |
0 | 1794 |
ystart = parent_pos[1] + self.Pos.y |
1795 |
if self.Edge == "rising": |
|
1796 |
# If connector has a rising edge, draw a right arrow |
|
1797 |
dc.DrawLine(xstart, ystart, xstart - 4, ystart - 4) |
|
1798 |
dc.DrawLine(xstart, ystart, xstart - 4, ystart + 4) |
|
1799 |
elif self.Edge == "falling": |
|
1800 |
# If connector has a falling edge, draw a left arrow |
|
1801 |
dc.DrawLine(xstart, ystart, xstart + 4, ystart - 4) |
|
1802 |
dc.DrawLine(xstart, ystart, xstart + 4, ystart + 4) |
|
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1803 |
if self.Direction[0] < 0: |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1804 |
xstart += 1 |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1805 |
if self.Direction[1] < 0: |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
1806 |
ystart += 1 |
550 | 1807 |
if self.Selected: |
1808 |
xend = xstart + (CONNECTOR_SIZE - 2) * self.Direction[0] |
|
1809 |
yend = ystart + (CONNECTOR_SIZE - 2) * self.Direction[1] |
|
1810 |
dc.DrawLine(xstart + 2 * self.Direction[0], ystart + 2 * self.Direction[1], xend, yend) |
|
1811 |
else: |
|
1812 |
xend = xstart + CONNECTOR_SIZE * self.Direction[0] |
|
1813 |
yend = ystart + CONNECTOR_SIZE * self.Direction[1] |
|
1814 |
dc.DrawLine(xstart + self.Direction[0], ystart + self.Direction[1], xend, yend) |
|
0 | 1815 |
if self.Direction[0] != 0: |
213 | 1816 |
ytext = parent_pos[1] + self.Pos.y - name_size[1] / 2 |
0 | 1817 |
if self.Direction[0] < 0: |
1818 |
xtext = parent_pos[0] + self.Pos.x + 5 |
|
1819 |
else: |
|
213 | 1820 |
xtext = parent_pos[0] + self.Pos.x - (name_size[0] + 5) |
0 | 1821 |
if self.Direction[1] != 0: |
213 | 1822 |
xtext = parent_pos[0] + self.Pos.x - name_size[0] / 2 |
0 | 1823 |
if self.Direction[1] < 0: |
1824 |
ytext = parent_pos[1] + self.Pos.y + 5 |
|
1825 |
else: |
|
213 | 1826 |
ytext = parent_pos[1] + self.Pos.y - (name_size[1] + 5) |
0 | 1827 |
# Draw the text |
1828 |
dc.DrawText(self.Name, xtext, ytext) |
|
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1829 |
if not getattr(dc, "printing", False): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
1830 |
DrawHighlightedText(dc, self.Name, self.Highlights, xtext, ytext) |
0 | 1831 |
|
1832 |
#------------------------------------------------------------------------------- |
|
1833 |
# Common Wire Element |
|
1834 |
#------------------------------------------------------------------------------- |
|
1835 |
||
1836 |
""" |
|
1837 |
Class that implements a wire for connecting two blocks |
|
1838 |
""" |
|
1839 |
||
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
1840 |
class Wire(Graphic_Element, DebugDataConsumer): |
0 | 1841 |
|
1842 |
# Create a new wire |
|
1843 |
def __init__(self, parent, start = None, end = None): |
|
1844 |
Graphic_Element.__init__(self, parent) |
|
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
1845 |
DebugDataConsumer.__init__(self) |
0 | 1846 |
self.StartPoint = start |
1847 |
self.EndPoint = end |
|
1848 |
self.StartConnected = None |
|
1849 |
self.EndConnected = None |
|
1850 |
# If the start and end points are defined, calculate the wire |
|
1851 |
if start and end: |
|
1852 |
self.ResetPoints() |
|
1853 |
self.GeneratePoints() |
|
1854 |
else: |
|
1855 |
self.Points = [] |
|
1856 |
self.Segments = [] |
|
1857 |
self.SelectedSegment = None |
|
222
8ce5c2635976
Adding support for underlying type incompatible wire loaded instead of removing them
lbessard
parents:
213
diff
changeset
|
1858 |
self.Valid = True |
249 | 1859 |
self.ValueSize = None |
253 | 1860 |
self.ComputedValue = None |
0 | 1861 |
self.OverStart = False |
1862 |
self.OverEnd = False |
|
208
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
1863 |
self.ComputingType = False |
384
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1864 |
self.Font = parent.GetMiniFont() |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1865 |
|
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1866 |
def GetDefinition(self): |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1867 |
if self.StartConnected is not None and self.EndConnected is not None: |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1868 |
startblock = self.StartConnected.GetParentBlock() |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1869 |
endblock = self.EndConnected.GetParentBlock() |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1870 |
return [], [(startblock.GetId(), endblock.GetId())] |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1871 |
return [], [] |
ed27a676d5c9
Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents:
381
diff
changeset
|
1872 |
|
249 | 1873 |
def Flush(self): |
0 | 1874 |
self.StartConnected = None |
1875 |
self.EndConnected = None |
|
1876 |
||
625
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1877 |
def GetToolTipValue(self): |
338 | 1878 |
if self.Value is not None and self.Value != "undefined" and not isinstance(self.Value, BooleanType): |
519
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
1879 |
if isinstance(self.Value, StringType) and self.Value.find("#") == -1: |
625
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1880 |
return "\"%s\""%self.Value |
338 | 1881 |
else: |
625
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1882 |
return str(self.Value) |
b7062a7018ec
Adding support for defining a description for a user POU type, and displaying this information in library tree.
laurent
parents:
612
diff
changeset
|
1883 |
return None |
338 | 1884 |
|
144 | 1885 |
# Returns the RedrawRect |
1886 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
1887 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
1888 |
if self.StartConnected: |
|
1889 |
rect = rect.Union(self.StartConnected.GetRedrawRect(movex, movey)) |
|
1890 |
if self.EndConnected: |
|
1891 |
rect = rect.Union(self.EndConnected.GetRedrawRect(movex, movey)) |
|
249 | 1892 |
if self.ValueSize is not None: |
1893 |
width, height = self.ValueSize |
|
1894 |
if self.BoundingBox[2] > width * 4 or self.BoundingBox[3] > height * 4: |
|
1895 |
x = self.Points[0].x + width * self.StartPoint[1][0] / 2 |
|
532
63e141705d19
Fix bug with Function Blocks input and output position on Windows
laurent
parents:
529
diff
changeset
|
1896 |
y = self.Points[0].y + height * (self.StartPoint[1][1] - 1) |
249 | 1897 |
rect = rect.Union(wx.Rect(x, y, width, height)) |
1898 |
x = self.Points[-1].x + width * self.EndPoint[1][0] / 2 |
|
532
63e141705d19
Fix bug with Function Blocks input and output position on Windows
laurent
parents:
529
diff
changeset
|
1899 |
y = self.Points[-1].y + height * (self.EndPoint[1][1] - 1) |
249 | 1900 |
rect = rect.Union(wx.Rect(x, y, width, height)) |
1901 |
else: |
|
1902 |
middle = len(self.Segments) / 2 + len(self.Segments) % 2 - 1 |
|
529
cbfbd0f7135b
Move position of debug value to avoid wire to cross text
laurent
parents:
525
diff
changeset
|
1903 |
x = (self.Points[middle].x + self.Points[middle + 1].x - width) / 2 |
cbfbd0f7135b
Move position of debug value to avoid wire to cross text
laurent
parents:
525
diff
changeset
|
1904 |
if self.BoundingBox[3] > height and self.Segments[middle] in [NORTH, SOUTH]: |
cbfbd0f7135b
Move position of debug value to avoid wire to cross text
laurent
parents:
525
diff
changeset
|
1905 |
y = (self.Points[middle].y + self.Points[middle + 1].y - height) / 2 |
cbfbd0f7135b
Move position of debug value to avoid wire to cross text
laurent
parents:
525
diff
changeset
|
1906 |
else: |
cbfbd0f7135b
Move position of debug value to avoid wire to cross text
laurent
parents:
525
diff
changeset
|
1907 |
y = self.Points[middle].y - height |
249 | 1908 |
rect = rect.Union(wx.Rect(x, y, width, height)) |
144 | 1909 |
return rect |
1910 |
||
283 | 1911 |
def Clone(self, parent, connectors = {}, dx = 0, dy = 0): |
1912 |
start_connector = connectors.get(self.StartConnected, None) |
|
1913 |
end_connector = connectors.get(self.EndConnected, None) |
|
1914 |
if start_connector is not None and end_connector is not None: |
|
1915 |
wire = Wire(parent) |
|
1916 |
wire.SetPoints([(point.x + dx, point.y + dy) for point in self.Points]) |
|
1917 |
start_connector.Connect((wire, 0), False) |
|
1918 |
end_connector.Connect((wire, -1), False) |
|
1919 |
wire.ConnectStartPoint(start_connector.GetPosition(), start_connector) |
|
1920 |
wire.ConnectEndPoint(end_connector.GetPosition(), end_connector) |
|
1921 |
return wire |
|
1922 |
return None |
|
1923 |
||
0 | 1924 |
# Forbids to change the wire position |
1925 |
def SetPosition(x, y): |
|
1926 |
pass |
|
1927 |
||
1928 |
# Forbids to change the wire size |
|
1929 |
def SetSize(width, height): |
|
1930 |
pass |
|
1931 |
||
331
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1932 |
# Moves and Resizes the element for fitting scaling |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1933 |
def AdjustToScaling(self, scaling): |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1934 |
if scaling is not None: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1935 |
movex_max = movey_max = 0 |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1936 |
for idx, point in enumerate(self.Points): |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1937 |
if 0 < idx < len(self.Points) - 1: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1938 |
movex = round_scaling(point.x, scaling[0]) - point.x |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1939 |
movey = round_scaling(point.y, scaling[1]) - point.y |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1940 |
if idx == 1: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1941 |
if self.Segments[0][0] == 0: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1942 |
movex = 0 |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1943 |
elif (point.x + movex - self.Points[0].x) * self.Segments[0][0] < MIN_SEGMENT_SIZE: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1944 |
movex = round_scaling(self.Points[0].x + MIN_SEGMENT_SIZE * self.Segments[0][0], scaling[0], self.Segments[0][0]) - point.x |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1945 |
if self.Segments[0][1] == 0: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1946 |
movey = 0 |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1947 |
elif (point.y + movey - self.Points[0].y) * self.Segments[0][1] < MIN_SEGMENT_SIZE: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1948 |
movey = round_scaling(self.Points[0].y + MIN_SEGMENT_SIZE * self.Segments[0][1], scaling[0], self.Segments[0][1]) - point.y |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1949 |
elif idx == len(self.Points) - 2: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1950 |
if self.Segments[-1][0] == 0: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1951 |
movex = 0 |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1952 |
elif (self.Points[-1].x - (point.x + movex)) * self.Segments[-1][0] < MIN_SEGMENT_SIZE: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1953 |
movex = round_scaling(self.Points[-1].x + MIN_SEGMENT_SIZE * self.Segments[0][0], scaling[0], self.Segments[0][0]) - point.x |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1954 |
if self.Segments[-1][1] == 0: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1955 |
movey = 0 |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1956 |
elif (self.Points[-1].y - (point.y + movey)) * self.Segments[-1][1] < MIN_SEGMENT_SIZE: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1957 |
movey = round_scaling(self.Points[-1].y - MIN_SEGMENT_SIZE * self.Segments[-1][1], scaling[1], -self.Segments[-1][1]) - point.y |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1958 |
movex_max = max(movex_max, movex) |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1959 |
movey_max = max(movey_max, movey) |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1960 |
point.x += movex |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1961 |
point.y += movey |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1962 |
return movex_max, movey_max |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1963 |
return 0, 0 |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
1964 |
|
27 | 1965 |
# Returns connector to which start point is connected |
1966 |
def GetStartConnected(self): |
|
1967 |
return self.StartConnected |
|
1968 |
||
98 | 1969 |
# Returns connector to which start point is connected |
1970 |
def GetStartConnectedType(self): |
|
208
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
1971 |
if self.StartConnected and not self.ComputingType: |
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
1972 |
self.ComputingType = True |
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
1973 |
computed_type = self.StartConnected.GetType() |
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
1974 |
self.ComputingType = False |
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
1975 |
return computed_type |
98 | 1976 |
return None |
1977 |
||
27 | 1978 |
# Returns connector to which end point is connected |
1979 |
def GetEndConnected(self): |
|
1980 |
return self.EndConnected |
|
1981 |
||
98 | 1982 |
# Returns connector to which end point is connected |
1983 |
def GetEndConnectedType(self): |
|
208
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
1984 |
if self.EndConnected and not self.ComputingType: |
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
1985 |
self.ComputingType = True |
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
1986 |
computed_type = self.EndConnected.GetType() |
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
1987 |
self.ComputingType = False |
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
1988 |
return computed_type |
98 | 1989 |
return None |
1990 |
||
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
1991 |
def GetConnectionDirection(self): |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
1992 |
if self.StartConnected is None and self.EndConnected is None: |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
1993 |
return None |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
1994 |
elif self.StartConnected is not None and self.EndConnected is None: |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
1995 |
return (-self.StartPoint[1][0], -self.StartPoint[1][1]) |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
1996 |
elif self.StartConnected is None and self.EndConnected is not None: |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
1997 |
return self.EndPoint |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
1998 |
elif self.Handle is not None: |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
1999 |
handle_type, handle = self.Handle |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
2000 |
# A point has been handled |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
2001 |
if handle_type == HANDLE_POINT: |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
2002 |
if handle == 0: |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
2003 |
return self.EndPoint |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
2004 |
else: |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
2005 |
return (-self.StartPoint[1][0], -self.StartPoint[1][1]) |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
2006 |
return None |
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
2007 |
|
145 | 2008 |
def GetOtherConnected(self, connector): |
2009 |
if self.StartConnected == connector: |
|
2010 |
return self.EndConnected |
|
2011 |
else: |
|
2012 |
return self.StartConnected |
|
2013 |
||
99
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
2014 |
def GetOtherConnectedType(self, handle): |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
2015 |
if handle == 0: |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
2016 |
return self.GetEndConnectedType() |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
2017 |
else: |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
2018 |
return self.GetStartConnectedType() |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
2019 |
|
98 | 2020 |
def IsConnectedCompatible(self): |
2021 |
if self.StartConnected: |
|
2022 |
return self.StartConnected.IsCompatible(self.GetEndConnectedType()) |
|
2023 |
elif self.EndConnected: |
|
2024 |
return True |
|
2025 |
return False |
|
2026 |
||
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2027 |
def SetForced(self, forced): |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2028 |
if self.Forced != forced: |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2029 |
self.Forced = forced |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2030 |
if self.StartConnected: |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2031 |
self.StartConnected.RefreshForced() |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2032 |
if self.EndConnected: |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2033 |
self.EndConnected.RefreshForced() |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2034 |
if self.Visible: |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2035 |
self.Parent.UpdateRefreshRect(self.GetRedrawRect()) |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2036 |
|
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
2037 |
def SetValue(self, value): |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
2038 |
if self.Value != value: |
249 | 2039 |
self.Value = value |
253 | 2040 |
if value is not None and not isinstance(value, BooleanType): |
519
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
2041 |
if isinstance(value, StringType) and value.find('#') == -1: |
253 | 2042 |
self.ComputedValue = "\"%s\""%value |
2043 |
else: |
|
2044 |
self.ComputedValue = str(value) |
|
338 | 2045 |
if self.ToolTip is not None: |
2046 |
self.ToolTip.SetTip(self.ComputedValue) |
|
253 | 2047 |
if len(self.ComputedValue) > 4: |
338 | 2048 |
self.ComputedValue = self.ComputedValue[:4] + "..." |
469 | 2049 |
if isinstance(self.ComputedValue, (StringType, UnicodeType)): |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
2050 |
self.ValueSize = self.Parent.GetMiniTextExtent(self.ComputedValue) |
249 | 2051 |
else: |
2052 |
self.ValueSize = None |
|
2053 |
if self.StartConnected: |
|
2054 |
self.StartConnected.RefreshValue() |
|
2055 |
if self.EndConnected: |
|
2056 |
self.EndConnected.RefreshValue() |
|
368 | 2057 |
if self.Visible: |
2058 |
self.Parent.UpdateRefreshRect(self.GetRedrawRect()) |
|
339 | 2059 |
if isinstance(value, BooleanType) and self.StartConnected is not None: |
249 | 2060 |
block = self.StartConnected.GetParentBlock() |
2061 |
block.SpreadCurrent() |
|
2062 |
||
0 | 2063 |
# Unconnect the start and end points |
2064 |
def Clean(self): |
|
2065 |
if self.StartConnected: |
|
2066 |
self.UnConnectStartPoint() |
|
2067 |
if self.EndConnected: |
|
2068 |
self.UnConnectEndPoint() |
|
2069 |
||
2070 |
# Delete this wire by calling the corresponding method |
|
2071 |
def Delete(self): |
|
2072 |
self.Parent.DeleteWire(self) |
|
2073 |
||
2074 |
# Select a segment and not the whole wire. It's useful for Ladder Diagram |
|
2075 |
def SetSelectedSegment(self, segment): |
|
2076 |
# The last segment is indicated |
|
2077 |
if segment == -1: |
|
2078 |
segment = len(self.Segments) - 1 |
|
2079 |
# The selected segment is reinitialised |
|
2080 |
if segment == None: |
|
2081 |
if self.StartConnected: |
|
550 | 2082 |
self.StartConnected.SetSelected(False) |
0 | 2083 |
if self.EndConnected: |
550 | 2084 |
self.EndConnected.SetSelected(False) |
0 | 2085 |
# The segment selected is the first |
2086 |
elif segment == 0: |
|
2087 |
if self.StartConnected: |
|
550 | 2088 |
self.StartConnected.SetSelected(True) |
0 | 2089 |
if self.EndConnected: |
2090 |
# There is only one segment |
|
2091 |
if len(self.Segments) == 1: |
|
550 | 2092 |
self.EndConnected.SetSelected(True) |
0 | 2093 |
else: |
550 | 2094 |
self.EndConnected.SetSelected(False) |
0 | 2095 |
# The segment selected is the last |
2096 |
elif segment == len(self.Segments) - 1: |
|
2097 |
if self.StartConnected: |
|
550 | 2098 |
self.StartConnected.SetSelected(False) |
0 | 2099 |
if self.EndConnected: |
550 | 2100 |
self.EndConnected.SetSelected(True) |
0 | 2101 |
self.SelectedSegment = segment |
144 | 2102 |
self.Refresh() |
0 | 2103 |
|
339 | 2104 |
def SetValid(self, valid): |
2105 |
self.Valid = valid |
|
222
8ce5c2635976
Adding support for underlying type incompatible wire loaded instead of removing them
lbessard
parents:
213
diff
changeset
|
2106 |
if self.StartConnected: |
339 | 2107 |
self.StartConnected.RefreshValid() |
222
8ce5c2635976
Adding support for underlying type incompatible wire loaded instead of removing them
lbessard
parents:
213
diff
changeset
|
2108 |
if self.EndConnected: |
339 | 2109 |
self.EndConnected.RefreshValid() |
2110 |
||
2111 |
def GetValid(self): |
|
2112 |
return self.Valid |
|
222
8ce5c2635976
Adding support for underlying type incompatible wire loaded instead of removing them
lbessard
parents:
213
diff
changeset
|
2113 |
|
0 | 2114 |
# Reinitialize the wire points |
2115 |
def ResetPoints(self): |
|
2116 |
if self.StartPoint and self.EndPoint: |
|
2117 |
self.Points = [self.StartPoint[0], self.EndPoint[0]] |
|
2118 |
self.Segments = [self.StartPoint[1]] |
|
2119 |
else: |
|
2120 |
self.Points = [] |
|
2121 |
self.Segments = [] |
|
2122 |
||
2123 |
# Refresh the wire bounding box |
|
2124 |
def RefreshBoundingBox(self): |
|
2125 |
if len(self.Points) > 0: |
|
2126 |
# If startpoint or endpoint is connected, save the point radius |
|
2127 |
start_radius = end_radius = 0 |
|
2128 |
if not self.StartConnected: |
|
2129 |
start_radius = POINT_RADIUS |
|
2130 |
if not self.EndConnected: |
|
2131 |
end_radius = POINT_RADIUS |
|
2132 |
# Initialize minimum and maximum from the first point |
|
2133 |
minx, minbbxx = self.Points[0].x, self.Points[0].x - start_radius |
|
2134 |
maxx, maxbbxx = self.Points[0].x, self.Points[0].x + start_radius |
|
2135 |
miny, minbbxy = self.Points[0].y, self.Points[0].y - start_radius |
|
2136 |
maxy, maxbbxy = self.Points[0].y, self.Points[0].y + start_radius |
|
2137 |
# Actualize minimum and maximum with the other points |
|
2138 |
for point in self.Points[1:-1]: |
|
2139 |
minx, minbbxx = min(minx, point.x), min(minbbxx, point.x) |
|
2140 |
maxx, maxbbxx = max(maxx, point.x), max(maxbbxx, point.x) |
|
2141 |
miny, minbbxy = min(miny, point.y), min(minbbxy, point.y) |
|
2142 |
maxy, maxbbxy = max(maxy, point.y), max(maxbbxy, point.y) |
|
2143 |
if len(self.Points) > 1: |
|
2144 |
minx, minbbxx = min(minx, self.Points[-1].x), min(minbbxx, self.Points[-1].x - end_radius) |
|
2145 |
maxx, maxbbxx = max(maxx, self.Points[-1].x), max(maxbbxx, self.Points[-1].x + end_radius) |
|
2146 |
miny, minbbxy = min(miny, self.Points[-1].y), min(minbbxy, self.Points[-1].y - end_radius) |
|
2147 |
maxy, maxbbxy = max(maxy, self.Points[-1].y), max(maxbbxy, self.Points[-1].y + end_radius) |
|
108 | 2148 |
self.Pos.x, self.Pos.y = minx, miny |
208
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
2149 |
self.Size = wx.Size(maxx - minx, maxy - miny) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2150 |
self.BoundingBox = wx.Rect(minbbxx, minbbxy, maxbbxx - minbbxx + 1, maxbbxy - minbbxy + 1) |
0 | 2151 |
|
2152 |
# Refresh the realpoints that permits to keep the proportionality in wire during resizing |
|
2153 |
def RefreshRealPoints(self): |
|
2154 |
if len(self.Points) > 0: |
|
2155 |
self.RealPoints = [] |
|
2156 |
# Calculate float relative position of each point with the minimum point |
|
2157 |
for point in self.Points: |
|
2158 |
self.RealPoints.append([float(point.x - self.Pos.x), float(point.y - self.Pos.y)]) |
|
2159 |
||
2160 |
# Returns the wire minimum size |
|
2161 |
def GetMinSize(self): |
|
2162 |
width = 1 |
|
2163 |
height = 1 |
|
2164 |
dir_product = product(self.StartPoint[1], self.EndPoint[1]) |
|
2165 |
# The directions are opposed |
|
2166 |
if dir_product < 0: |
|
2167 |
if self.StartPoint[0] != 0: |
|
2168 |
width = MIN_SEGMENT_SIZE * 2 |
|
2169 |
if self.StartPoint[1] != 0: |
|
2170 |
height = MIN_SEGMENT_SIZE * 2 |
|
2171 |
# The directions are the same |
|
2172 |
elif dir_product > 0: |
|
2173 |
if self.StartPoint[0] != 0: |
|
2174 |
width = MIN_SEGMENT_SIZE |
|
2175 |
if self.StartPoint[1] != 0: |
|
2176 |
height = MIN_SEGMENT_SIZE |
|
2177 |
# The directions are perpendiculars |
|
2178 |
else: |
|
2179 |
width = MIN_SEGMENT_SIZE |
|
2180 |
height = MIN_SEGMENT_SIZE |
|
2181 |
return width + 1, height + 1 |
|
2182 |
||
2183 |
# Returns if the point given is on one of the wire segments |
|
2184 |
def HitTest(self, pt): |
|
2185 |
test = False |
|
2186 |
for i in xrange(len(self.Points) - 1): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2187 |
rect = wx.Rect(0, 0, 0, 0) |
0 | 2188 |
x1, y1 = self.Points[i].x, self.Points[i].y |
2189 |
x2, y2 = self.Points[i + 1].x, self.Points[i + 1].y |
|
2190 |
# Calculate a rectangle around the segment |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2191 |
rect = wx.Rect(min(x1, x2) - ANCHOR_DISTANCE, min(y1, y2) - ANCHOR_DISTANCE, |
0 | 2192 |
abs(x1 - x2) + 2 * ANCHOR_DISTANCE, abs(y1 - y2) + 2 * ANCHOR_DISTANCE) |
2193 |
test |= rect.InsideXY(pt.x, pt.y) |
|
2194 |
return test |
|
2195 |
||
2196 |
# Returns the wire start or end point if the point given is on one of them |
|
2197 |
def TestPoint(self, pt): |
|
2198 |
# Test the wire start point |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2199 |
rect = wx.Rect(self.Points[0].x - ANCHOR_DISTANCE, self.Points[0].y - ANCHOR_DISTANCE, |
0 | 2200 |
2 * ANCHOR_DISTANCE, 2 * ANCHOR_DISTANCE) |
2201 |
if rect.InsideXY(pt.x, pt.y): |
|
2202 |
return 0 |
|
2203 |
# Test the wire end point |
|
2204 |
if len(self.Points) > 1: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2205 |
rect = wx.Rect(self.Points[-1].x - ANCHOR_DISTANCE, self.Points[-1].y - ANCHOR_DISTANCE, |
0 | 2206 |
2 * ANCHOR_DISTANCE, 2 * ANCHOR_DISTANCE) |
2207 |
if rect.InsideXY(pt.x, pt.y): |
|
2208 |
return -1 |
|
2209 |
return None |
|
2210 |
||
2211 |
# Returns the wire segment if the point given is on it |
|
2212 |
def TestSegment(self, pt, all=False): |
|
2213 |
for i in xrange(len(self.Segments)): |
|
2214 |
# If wire is not in a Ladder Diagram, first and last segments are excluded |
|
237 | 2215 |
if all or 0 < i < len(self.Segments) - 1: |
0 | 2216 |
x1, y1 = self.Points[i].x, self.Points[i].y |
2217 |
x2, y2 = self.Points[i + 1].x, self.Points[i + 1].y |
|
2218 |
# Calculate a rectangle around the segment |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2219 |
rect = wx.Rect(min(x1, x2) - ANCHOR_DISTANCE, min(y1, y2) - ANCHOR_DISTANCE, |
0 | 2220 |
abs(x1 - x2) + 2 * ANCHOR_DISTANCE, abs(y1 - y2) + 2 * ANCHOR_DISTANCE) |
2221 |
if rect.InsideXY(pt.x, pt.y): |
|
2222 |
return i, self.Segments[i] |
|
2223 |
return None |
|
2224 |
||
2225 |
# Define the wire points |
|
550 | 2226 |
def SetPoints(self, points, verify=True): |
0 | 2227 |
if len(points) > 1: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2228 |
self.Points = [wx.Point(x, y) for x, y in points] |
0 | 2229 |
# Calculate the start and end directions |
2230 |
self.StartPoint = [None, vector(self.Points[0], self.Points[1])] |
|
2231 |
self.EndPoint = [None, vector(self.Points[-1], self.Points[-2])] |
|
2232 |
# Calculate the start and end points |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2233 |
self.StartPoint[0] = wx.Point(self.Points[0].x + CONNECTOR_SIZE * self.StartPoint[1][0], |
0 | 2234 |
self.Points[0].y + CONNECTOR_SIZE * self.StartPoint[1][1]) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2235 |
self.EndPoint[0] = wx.Point(self.Points[-1].x + CONNECTOR_SIZE * self.EndPoint[1][0], |
0 | 2236 |
self.Points[-1].y + CONNECTOR_SIZE * self.EndPoint[1][1]) |
2237 |
self.Points[0] = self.StartPoint[0] |
|
2238 |
self.Points[-1] = self.EndPoint[0] |
|
2239 |
# Calculate the segments directions |
|
2240 |
self.Segments = [] |
|
296 | 2241 |
i = 0 |
2242 |
while i < len(self.Points) - 1: |
|
550 | 2243 |
if verify and 0 < i < len(self.Points) - 2 and \ |
398
c215899298c7
Bug with wire not well designed generating unlimited loop fixed
laurent
parents:
395
diff
changeset
|
2244 |
self.Points[i] == self.Points[i + 1] and \ |
c215899298c7
Bug with wire not well designed generating unlimited loop fixed
laurent
parents:
395
diff
changeset
|
2245 |
self.Segments[-1] == vector(self.Points[i + 1], self.Points[i + 2]): |
c215899298c7
Bug with wire not well designed generating unlimited loop fixed
laurent
parents:
395
diff
changeset
|
2246 |
for j in xrange(2): |
c215899298c7
Bug with wire not well designed generating unlimited loop fixed
laurent
parents:
395
diff
changeset
|
2247 |
self.Points.pop(i) |
c215899298c7
Bug with wire not well designed generating unlimited loop fixed
laurent
parents:
395
diff
changeset
|
2248 |
else: |
c215899298c7
Bug with wire not well designed generating unlimited loop fixed
laurent
parents:
395
diff
changeset
|
2249 |
segment = vector(self.Points[i], self.Points[i + 1]) |
c215899298c7
Bug with wire not well designed generating unlimited loop fixed
laurent
parents:
395
diff
changeset
|
2250 |
if is_null_vector(segment) and i > 0: |
c215899298c7
Bug with wire not well designed generating unlimited loop fixed
laurent
parents:
395
diff
changeset
|
2251 |
segment = (self.Segments[-1][1], self.Segments[-1][0]) |
c215899298c7
Bug with wire not well designed generating unlimited loop fixed
laurent
parents:
395
diff
changeset
|
2252 |
if i < len(self.Points) - 2: |
c215899298c7
Bug with wire not well designed generating unlimited loop fixed
laurent
parents:
395
diff
changeset
|
2253 |
next = vector(self.Points[i + 1], self.Points[i + 2]) |
c215899298c7
Bug with wire not well designed generating unlimited loop fixed
laurent
parents:
395
diff
changeset
|
2254 |
if next == segment or is_null_vector(add_vectors(segment, next)): |
c215899298c7
Bug with wire not well designed generating unlimited loop fixed
laurent
parents:
395
diff
changeset
|
2255 |
self.Points.insert(i + 1, wx.Point(self.Points[i + 1].x, self.Points[i + 1].y)) |
c215899298c7
Bug with wire not well designed generating unlimited loop fixed
laurent
parents:
395
diff
changeset
|
2256 |
self.Segments.append(segment) |
c215899298c7
Bug with wire not well designed generating unlimited loop fixed
laurent
parents:
395
diff
changeset
|
2257 |
i += 1 |
0 | 2258 |
self.RefreshBoundingBox() |
2259 |
self.RefreshRealPoints() |
|
2260 |
||
2261 |
# Returns the position of the point indicated |
|
2262 |
def GetPoint(self, index): |
|
2263 |
if index < len(self.Points): |
|
2264 |
return self.Points[index].x, self.Points[index].y |
|
2265 |
return None |
|
2266 |
||
2267 |
# Returns a list of the position of all wire points |
|
2268 |
def GetPoints(self, invert = False): |
|
2269 |
points = self.VerifyPoints() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2270 |
points[0] = wx.Point(points[0].x - CONNECTOR_SIZE * self.StartPoint[1][0], |
0 | 2271 |
points[0].y - CONNECTOR_SIZE * self.StartPoint[1][1]) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2272 |
points[-1] = wx.Point(points[-1].x - CONNECTOR_SIZE * self.EndPoint[1][0], |
0 | 2273 |
points[-1].y - CONNECTOR_SIZE * self.EndPoint[1][1]) |
2274 |
# An inversion of the list is asked |
|
2275 |
if invert: |
|
2276 |
points.reverse() |
|
2277 |
return points |
|
2278 |
||
2279 |
# Returns the position of the two selected segment points |
|
2280 |
def GetSelectedSegmentPoints(self): |
|
2281 |
if self.SelectedSegment != None and len(self.Points) > 1: |
|
2282 |
return self.Points[self.SelectedSegment:self.SelectedSegment + 2] |
|
2283 |
return [] |
|
2284 |
||
2285 |
# Returns if the selected segment is the first and/or the last of the wire |
|
2286 |
def GetSelectedSegmentConnections(self): |
|
2287 |
if self.SelectedSegment != None and len(self.Points) > 1: |
|
2288 |
return self.SelectedSegment == 0, self.SelectedSegment == len(self.Segments) - 1 |
|
2289 |
return (True, True) |
|
2290 |
||
2291 |
# Returns the connectors on which the wire is connected |
|
2292 |
def GetConnected(self): |
|
2293 |
connected = [] |
|
2294 |
if self.StartConnected and self.StartPoint[1] == WEST: |
|
2295 |
connected.append(self.StartConnected) |
|
2296 |
if self.EndConnected and self.EndPoint[1] == WEST: |
|
2297 |
connected.append(self.EndConnected) |
|
2298 |
return connected |
|
2299 |
||
2300 |
# Returns the id of the block connected to the first or the last wire point |
|
27 | 2301 |
def GetConnectedInfos(self, index): |
0 | 2302 |
if index == 0 and self.StartConnected: |
27 | 2303 |
return self.StartConnected.GetBlockId(), self.StartConnected.GetName() |
0 | 2304 |
elif index == -1 and self.EndConnected: |
42 | 2305 |
return self.EndConnected.GetBlockId(), self.EndConnected.GetName() |
0 | 2306 |
return None |
2307 |
||
2308 |
# Update the wire points position by keeping at most possible the current positions |
|
2309 |
def GeneratePoints(self, realpoints = True): |
|
2310 |
i = 0 |
|
2311 |
# Calculate the start enad end points with the minimum segment size in the right direction |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2312 |
end = wx.Point(self.EndPoint[0].x + self.EndPoint[1][0] * MIN_SEGMENT_SIZE, |
0 | 2313 |
self.EndPoint[0].y + self.EndPoint[1][1] * MIN_SEGMENT_SIZE) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2314 |
start = wx.Point(self.StartPoint[0].x + self.StartPoint[1][0] * MIN_SEGMENT_SIZE, |
0 | 2315 |
self.StartPoint[0].y + self.StartPoint[1][1] * MIN_SEGMENT_SIZE) |
2316 |
# Evaluate the point till it's the last |
|
2317 |
while i < len(self.Points) - 1: |
|
2318 |
# The next point is the last |
|
2319 |
if i + 1 == len(self.Points) - 1: |
|
2320 |
# Calculate the direction from current point to end point |
|
2321 |
v_end = vector(self.Points[i], end) |
|
2322 |
# The current point is the first |
|
2323 |
if i == 0: |
|
2324 |
# If the end point is not in the start direction, a point is added |
|
2325 |
if v_end != self.Segments[0] or v_end == self.EndPoint[1]: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2326 |
self.Points.insert(1, wx.Point(start.x, start.y)) |
0 | 2327 |
self.Segments.insert(1, DirectionChoice((self.Segments[0][1], |
2328 |
self.Segments[0][0]), v_end, self.EndPoint[1])) |
|
2329 |
# The current point is the second |
|
2330 |
elif i == 1: |
|
2331 |
# The previous direction and the target direction are mainly opposed, a point is added |
|
2332 |
if product(v_end, self.Segments[0]) < 0: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2333 |
self.Points.insert(2, wx.Point(self.Points[1].x, self.Points[1].y)) |
0 | 2334 |
self.Segments.insert(2, DirectionChoice((self.Segments[1][1], |
2335 |
self.Segments[1][0]), v_end, self.EndPoint[1])) |
|
2336 |
# The previous direction and the end direction are the same or they are |
|
2337 |
# perpendiculars and the end direction points towards current segment |
|
2338 |
elif product(self.Segments[0], self.EndPoint[1]) >= 0 and product(self.Segments[1], self.EndPoint[1]) <= 0: |
|
2339 |
# Current point and end point are aligned |
|
2340 |
if self.Segments[0][0] != 0: |
|
2341 |
self.Points[1].x = end.x |
|
2342 |
if self.Segments[0][1] != 0: |
|
2343 |
self.Points[1].y = end.y |
|
2344 |
# If the previous direction and the end direction are the same, a point is added |
|
2345 |
if product(self.Segments[0], self.EndPoint[1]) > 0: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2346 |
self.Points.insert(2, wx.Point(self.Points[1].x, self.Points[1].y)) |
0 | 2347 |
self.Segments.insert(2, DirectionChoice((self.Segments[1][1], |
2348 |
self.Segments[1][0]), v_end, self.EndPoint[1])) |
|
2349 |
else: |
|
2350 |
# Current point is positioned in the middle of start point |
|
2351 |
# and end point on the current direction and a point is added |
|
2352 |
if self.Segments[0][0] != 0: |
|
2353 |
self.Points[1].x = (end.x + start.x) / 2 |
|
2354 |
if self.Segments[0][1] != 0: |
|
2355 |
self.Points[1].y = (end.y + start.y) / 2 |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2356 |
self.Points.insert(2, wx.Point(self.Points[1].x, self.Points[1].y)) |
0 | 2357 |
self.Segments.insert(2, DirectionChoice((self.Segments[1][1], |
2358 |
self.Segments[1][0]), v_end, self.EndPoint[1])) |
|
2359 |
else: |
|
2360 |
# The previous direction and the end direction are perpendiculars |
|
2361 |
if product(self.Segments[i - 1], self.EndPoint[1]) == 0: |
|
2362 |
# The target direction and the end direction aren't mainly the same |
|
2363 |
if product(v_end, self.EndPoint[1]) <= 0: |
|
2364 |
# Current point and end point are aligned |
|
2365 |
if self.Segments[i - 1][0] != 0: |
|
2366 |
self.Points[i].x = end.x |
|
2367 |
if self.Segments[i - 1][1] != 0: |
|
2368 |
self.Points[i].y = end.y |
|
2369 |
# Previous direction is updated from the new point |
|
2370 |
if product(vector(self.Points[i - 1], self.Points[i]), self.Segments[i - 1]) < 0: |
|
2371 |
self.Segments[i - 1] = (-self.Segments[i - 1][0], -self.Segments[i - 1][1]) |
|
2372 |
else: |
|
2373 |
test = True |
|
2374 |
# If the current point is the third, test if the second |
|
2375 |
# point can be aligned with the end point |
|
2376 |
if i == 2: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2377 |
test_point = wx.Point(self.Points[1].x, self.Points[1].y) |
0 | 2378 |
if self.Segments[1][0] != 0: |
2379 |
test_point.y = end.y |
|
2380 |
if self.Segments[1][1] != 0: |
|
2381 |
test_point.x = end.x |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2382 |
vector_test = vector(self.Points[0], test_point, False) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2383 |
test = norm(vector_test) > MIN_SEGMENT_SIZE and product(self.Segments[0], vector_test) > 0 |
0 | 2384 |
# The previous point can be aligned |
2385 |
if test: |
|
2386 |
self.Points[i].x, self.Points[i].y = end.x, end.y |
|
2387 |
if self.Segments[i - 1][0] != 0: |
|
2388 |
self.Points[i - 1].y = end.y |
|
2389 |
if self.Segments[i - 1][1] != 0: |
|
2390 |
self.Points[i - 1].x = end.x |
|
2391 |
self.Segments[i] = (-self.EndPoint[1][0], -self.EndPoint[1][1]) |
|
2392 |
else: |
|
2393 |
# Current point is positioned in the middle of previous point |
|
2394 |
# and end point on the current direction and a point is added |
|
2395 |
if self.Segments[1][0] != 0: |
|
2396 |
self.Points[2].x = (self.Points[1].x + end.x) / 2 |
|
2397 |
if self.Segments[1][1] != 0: |
|
2398 |
self.Points[2].y = (self.Points[1].y + end.y) / 2 |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2399 |
self.Points.insert(3, wx.Point(self.Points[2].x, self.Points[2].y)) |
0 | 2400 |
self.Segments.insert(3, DirectionChoice((self.Segments[2][1], |
2401 |
self.Segments[2][0]), v_end, self.EndPoint[1])) |
|
2402 |
else: |
|
2403 |
# Current point is aligned with end point |
|
2404 |
if self.Segments[i - 1][0] != 0: |
|
2405 |
self.Points[i].x = end.x |
|
2406 |
if self.Segments[i - 1][1] != 0: |
|
2407 |
self.Points[i].y = end.y |
|
2408 |
# Previous direction is updated from the new point |
|
2409 |
if product(vector(self.Points[i - 1], self.Points[i]), self.Segments[i - 1]) < 0: |
|
2410 |
self.Segments[i - 1] = (-self.Segments[i - 1][0], -self.Segments[i - 1][1]) |
|
2411 |
# If previous direction and end direction are opposed |
|
2412 |
if product(self.Segments[i - 1], self.EndPoint[1]) < 0: |
|
2413 |
# Current point is positioned in the middle of previous point |
|
2414 |
# and end point on the current direction |
|
2415 |
if self.Segments[i - 1][0] != 0: |
|
2416 |
self.Points[i].x = (end.x + self.Points[i - 1].x) / 2 |
|
2417 |
if self.Segments[i - 1][1] != 0: |
|
2418 |
self.Points[i].y = (end.y + self.Points[i - 1].y) / 2 |
|
2419 |
# A point is added |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2420 |
self.Points.insert(i + 1, wx.Point(self.Points[i].x, self.Points[i].y)) |
0 | 2421 |
self.Segments.insert(i + 1, DirectionChoice((self.Segments[i][1], |
2422 |
self.Segments[i][0]), v_end, self.EndPoint[1])) |
|
2423 |
else: |
|
2424 |
# Current point is the first, and second is not mainly in the first direction |
|
2425 |
if i == 0 and product(vector(start, self.Points[1]), self.Segments[0]) < 0: |
|
2426 |
# If first and second directions aren't perpendiculars, a point is added |
|
2427 |
if product(self.Segments[0], self.Segments[1]) != 0: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2428 |
self.Points.insert(1, wx.Point(start.x, start.y)) |
0 | 2429 |
self.Segments.insert(1, DirectionChoice((self.Segments[0][1], |
2430 |
self.Segments[0][0]), vector(start, self.Points[1]), self.Segments[1])) |
|
2431 |
else: |
|
2432 |
self.Points[1].x, self.Points[1].y = start.x, start.y |
|
2433 |
else: |
|
2434 |
# Next point is aligned with current point |
|
2435 |
if self.Segments[i][0] != 0: |
|
2436 |
self.Points[i + 1].y = self.Points[i].y |
|
2437 |
if self.Segments[i][1] != 0: |
|
2438 |
self.Points[i + 1].x = self.Points[i].x |
|
2439 |
# Current direction is updated from the new point |
|
2440 |
if product(vector(self.Points[i], self.Points[i + 1]), self.Segments[i]) < 0: |
|
2441 |
self.Segments[i] = (-self.Segments[i][0], -self.Segments[i][1]) |
|
2442 |
i += 1 |
|
2443 |
self.RefreshBoundingBox() |
|
2444 |
if realpoints: |
|
2445 |
self.RefreshRealPoints() |
|
2446 |
||
2447 |
# Verify that two consecutive points haven't the same position |
|
2448 |
def VerifyPoints(self): |
|
2449 |
points = [point for point in self.Points] |
|
2450 |
segments = [segment for segment in self.Segments] |
|
2451 |
i = 1 |
|
2452 |
while i < len(points) - 1: |
|
2453 |
if points[i] == points[i + 1] and segments[i - 1] == segments[i + 1]: |
|
2454 |
for j in xrange(2): |
|
2455 |
points.pop(i) |
|
2456 |
segments.pop(i) |
|
2457 |
else: |
|
2458 |
i += 1 |
|
2459 |
# If the wire isn't in a Ladder Diagram, save the new point list |
|
2460 |
if self.Parent.__class__.__name__ != "LD_Viewer": |
|
2461 |
self.Points = [point for point in points] |
|
2462 |
self.Segments = [segment for segment in segments] |
|
2463 |
self.RefreshBoundingBox() |
|
2464 |
self.RefreshRealPoints() |
|
2465 |
return points |
|
2466 |
||
2467 |
# Moves all the wire points except the first and the last if they are connected |
|
2468 |
def Move(self, dx, dy, endpoints = False): |
|
2469 |
for i, point in enumerate(self.Points): |
|
2470 |
if endpoints or not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
2471 |
point.x += dx |
|
2472 |
point.y += dy |
|
2473 |
self.StartPoint[0] = self.Points[0] |
|
2474 |
self.EndPoint[0] = self.Points[-1] |
|
2475 |
self.GeneratePoints() |
|
2476 |
||
2477 |
# Resize the wire from position and size given |
|
2478 |
def Resize(self, x, y, width, height): |
|
2479 |
if len(self.Points) > 1: |
|
2480 |
# Calculate the new position of each point for testing the new size |
|
2481 |
minx, miny = self.Pos.x, self.Pos.y |
|
2482 |
lastwidth, lastheight = self.Size.width, self.Size.height |
|
2483 |
for i, point in enumerate(self.RealPoints): |
|
2484 |
# If start or end point is connected, it's not calculate |
|
2485 |
if not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
2486 |
if i == 0: |
|
2487 |
dir = self.StartPoint[1] |
|
2488 |
elif i == len(self.Points) - 1: |
|
2489 |
dir = self.EndPoint[1] |
|
2490 |
else: |
|
2491 |
dir = (0, 0) |
|
208
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
2492 |
pointx = max(-dir[0] * MIN_SEGMENT_SIZE, min(int(round(point[0] * width / float(max(lastwidth, 1)))), |
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
2493 |
width - dir[0] * MIN_SEGMENT_SIZE)) |
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
2494 |
pointy = max(-dir[1] * MIN_SEGMENT_SIZE, min(int(round(point[1] * height / float(max(lastheight, 1)))), |
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
2495 |
height - dir[1] * MIN_SEGMENT_SIZE)) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2496 |
self.Points[i] = wx.Point(minx + x + pointx, miny + y + pointy) |
0 | 2497 |
self.StartPoint[0] = self.Points[0] |
2498 |
self.EndPoint[0] = self.Points[-1] |
|
2499 |
self.GeneratePoints(False) |
|
2500 |
# Test if the wire position or size have changed |
|
2501 |
if x != 0 and minx == self.Pos.x: |
|
2502 |
x = 0 |
|
2503 |
width = lastwidth |
|
2504 |
if y != 0 and miny == self.Pos.y: |
|
2505 |
y = 0 |
|
2506 |
height = lastwidth |
|
2507 |
if width != lastwidth and lastwidth == self.Size.width: |
|
2508 |
width = lastwidth |
|
2509 |
if height != lastheight and lastheight == self.Size.height: |
|
2510 |
height = lastheight |
|
2511 |
# Calculate the real points from the new size, it's important for |
|
2512 |
# keeping a proportionality in the points position with the size |
|
249 | 2513 |
# during a resize dragging |
0 | 2514 |
for i, point in enumerate(self.RealPoints): |
2515 |
if not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
208
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
2516 |
point[0] = point[0] * width / float(max(lastwidth, 1)) |
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
2517 |
point[1] = point[1] * height / float(max(lastheight, 1)) |
0 | 2518 |
# Calculate the correct position of the points from real points |
2519 |
for i, point in enumerate(self.RealPoints): |
|
2520 |
if not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
2521 |
if i == 0: |
|
2522 |
dir = self.StartPoint[1] |
|
2523 |
elif i == len(self.Points) - 1: |
|
2524 |
dir = self.EndPoint[1] |
|
2525 |
else: |
|
2526 |
dir = (0, 0) |
|
2527 |
realpointx = max(-dir[0] * MIN_SEGMENT_SIZE, min(int(round(point[0])), |
|
208
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
2528 |
width - dir[0] * MIN_SEGMENT_SIZE)) |
0 | 2529 |
realpointy = max(-dir[1] * MIN_SEGMENT_SIZE, min(int(round(point[1])), |
208
c70aefcadf66
Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents:
180
diff
changeset
|
2530 |
height - dir[1] * MIN_SEGMENT_SIZE)) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2531 |
self.Points[i] = wx.Point(minx + x + realpointx, miny + y + realpointy) |
0 | 2532 |
self.StartPoint[0] = self.Points[0] |
2533 |
self.EndPoint[0] = self.Points[-1] |
|
2534 |
self.GeneratePoints(False) |
|
2535 |
||
2536 |
# Moves the wire start point and update the wire points |
|
2537 |
def MoveStartPoint(self, point): |
|
2538 |
if len(self.Points) > 1: |
|
2539 |
self.StartPoint[0] = point |
|
2540 |
self.Points[0] = point |
|
2541 |
self.GeneratePoints() |
|
2542 |
||
2543 |
# Changes the wire start direction and update the wire points |
|
2544 |
def SetStartPointDirection(self, dir): |
|
2545 |
if len(self.Points) > 1: |
|
2546 |
self.StartPoint[1] = dir |
|
2547 |
self.Segments[0] = dir |
|
2548 |
self.GeneratePoints() |
|
2549 |
||
2550 |
# Rotates the wire start direction by an angle of 90 degrees anticlockwise |
|
2551 |
def RotateStartPoint(self): |
|
2552 |
self.SetStartPointDirection((self.StartPoint[1][1], -self.StartPoint[1][0])) |
|
2553 |
||
2554 |
# Connects wire start point to the connector given and moves wire start point |
|
2555 |
# to given point |
|
2556 |
def ConnectStartPoint(self, point, connector): |
|
2557 |
if point: |
|
2558 |
self.MoveStartPoint(point) |
|
2559 |
self.StartConnected = connector |
|
145 | 2560 |
self.RefreshBoundingBox() |
0 | 2561 |
|
2562 |
# Unconnects wire start point |
|
2 | 2563 |
def UnConnectStartPoint(self, delete = False): |
2564 |
if delete: |
|
60 | 2565 |
self.StartConnected = None |
2 | 2566 |
self.Delete() |
60 | 2567 |
elif self.StartConnected: |
2568 |
self.StartConnected.UnConnect(self, unconnect = False) |
|
2 | 2569 |
self.StartConnected = None |
145 | 2570 |
self.RefreshBoundingBox() |
0 | 2571 |
|
2572 |
# Moves the wire end point and update the wire points |
|
2573 |
def MoveEndPoint(self, point): |
|
2574 |
if len(self.Points) > 1: |
|
2575 |
self.EndPoint[0] = point |
|
2576 |
self.Points[-1] = point |
|
2577 |
self.GeneratePoints() |
|
2578 |
||
2579 |
# Changes the wire end direction and update the wire points |
|
2580 |
def SetEndPointDirection(self, dir): |
|
2581 |
if len(self.Points) > 1: |
|
2582 |
self.EndPoint[1] = dir |
|
2583 |
self.GeneratePoints() |
|
2584 |
||
2585 |
# Rotates the wire end direction by an angle of 90 degrees anticlockwise |
|
2586 |
def RotateEndPoint(self): |
|
2587 |
self.SetEndPointDirection((self.EndPoint[1][1], -self.EndPoint[1][0])) |
|
2588 |
||
2589 |
# Connects wire end point to the connector given and moves wire end point |
|
2590 |
# to given point |
|
2591 |
def ConnectEndPoint(self, point, connector): |
|
2592 |
if point: |
|
2593 |
self.MoveEndPoint(point) |
|
2594 |
self.EndConnected = connector |
|
145 | 2595 |
self.RefreshBoundingBox() |
0 | 2596 |
|
2597 |
# Unconnects wire end point |
|
2 | 2598 |
def UnConnectEndPoint(self, delete = False): |
2599 |
if delete: |
|
60 | 2600 |
self.EndConnected = None |
2 | 2601 |
self.Delete() |
60 | 2602 |
elif self.EndConnected: |
2603 |
self.EndConnected.UnConnect(self, unconnect = False) |
|
2 | 2604 |
self.EndConnected = None |
145 | 2605 |
self.RefreshBoundingBox() |
0 | 2606 |
|
2607 |
# Moves the wire segment given by its index |
|
145 | 2608 |
def MoveSegment(self, idx, movex, movey, scaling): |
0 | 2609 |
if 0 < idx < len(self.Segments) - 1: |
2610 |
if self.Segments[idx] in (NORTH, SOUTH): |
|
112 | 2611 |
start_x = self.Points[idx].x |
145 | 2612 |
if scaling is not None: |
331
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
2613 |
movex = round_scaling(self.Points[idx].x + movex, scaling[0]) - self.Points[idx].x |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
2614 |
if idx == 1 and (self.Points[1].x + movex - self.Points[0].x) * self.Segments[0][0] < MIN_SEGMENT_SIZE: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
2615 |
movex = round_scaling(self.Points[0].x + MIN_SEGMENT_SIZE * self.Segments[0][0], scaling[0], self.Segments[0][0]) - self.Points[idx].x |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
2616 |
elif idx == len(self.Segments) - 2 and (self.Points[-1].x - (self.Points[-2].x + movex)) * self.Segments[-1][0] < MIN_SEGMENT_SIZE: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
2617 |
movex = round_scaling(self.Points[-1].x - MIN_SEGMENT_SIZE * self.Segments[-1][0], scaling[0], -self.Segments[-1][0]) - self.Points[idx].x |
0 | 2618 |
self.Points[idx].x += movex |
2619 |
self.Points[idx + 1].x += movex |
|
112 | 2620 |
self.GeneratePoints() |
2621 |
if start_x != self.Points[idx].x: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2622 |
return self.Points[idx].x - start_x, 0 |
0 | 2623 |
elif self.Segments[idx] in (EAST, WEST): |
112 | 2624 |
start_y = self.Points[idx].y |
145 | 2625 |
if scaling is not None: |
331
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
2626 |
movey = round_scaling(self.Points[idx].y + movey, scaling[1]) - self.Points[idx].y |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
2627 |
if idx == 1 and (self.Points[1].y + movey - self.Points[0].y) * self.Segments[0][1] < MIN_SEGMENT_SIZE: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
2628 |
movex = round_scaling(self.Points[0].y + MIN_SEGMENT_SIZE * self.Segments[0][1], scaling[0], self.Segments[0][1]) - self.Points[idx].y |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
2629 |
elif idx == len(self.Segments) - 2 and (self.Points[-1].y - (self.Points[-2].y + movey)) * self.Segments[-1][1] < MIN_SEGMENT_SIZE: |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
2630 |
movey = round_scaling(self.Points[idx].y - MIN_SEGMENT_SIZE * self.Segments[-1][1], scaling[1], -self.Segments[-1][1]) - self.Points[idx].y |
0 | 2631 |
self.Points[idx].y += movey |
2632 |
self.Points[idx + 1].y += movey |
|
112 | 2633 |
self.GeneratePoints() |
2634 |
if start_y != self.Points[idx].y: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2635 |
return 0, self.Points[idx].y - start_y |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2636 |
return 0, 0 |
0 | 2637 |
|
2638 |
# Adds two points in the middle of the handled segment |
|
2639 |
def AddSegment(self): |
|
2640 |
handle_type, handle = self.Handle |
|
2641 |
if handle_type == HANDLE_SEGMENT: |
|
2642 |
segment, dir = handle |
|
321
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2643 |
if len(self.Segments) > 1: |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2644 |
pointx = self.Points[segment].x |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2645 |
pointy = self.Points[segment].y |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2646 |
if dir[0] != 0: |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2647 |
pointx = (self.Points[segment].x + self.Points[segment + 1].x) / 2 |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2648 |
if dir[1] != 0: |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2649 |
pointy = (self.Points[segment].y + self.Points[segment + 1].y) / 2 |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2650 |
self.Points.insert(segment + 1, wx.Point(pointx, pointy)) |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2651 |
self.Segments.insert(segment + 1, (dir[1], dir[0])) |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2652 |
self.Points.insert(segment + 2, wx.Point(pointx, pointy)) |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2653 |
self.Segments.insert(segment + 2, dir) |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2654 |
else: |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2655 |
p1x = p2x = self.Points[segment].x |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2656 |
p1y = p2y = self.Points[segment].y |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2657 |
if dir[0] != 0: |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2658 |
p1x = (2 * self.Points[segment].x + self.Points[segment + 1].x) / 3 |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2659 |
p2x = (self.Points[segment].x + 2 * self.Points[segment + 1].x) / 3 |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2660 |
if dir[1] != 0: |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2661 |
p1y = (2 * self.Points[segment].y + self.Points[segment + 1].y) / 3 |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2662 |
p2y = (self.Points[segment].y + 2 * self.Points[segment + 1].y) / 3 |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2663 |
self.Points.insert(segment + 1, wx.Point(p1x, p1y)) |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2664 |
self.Segments.insert(segment + 1, (dir[1], dir[0])) |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2665 |
self.Points.insert(segment + 2, wx.Point(p1x, p1y)) |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2666 |
self.Segments.insert(segment + 2, dir) |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2667 |
self.Points.insert(segment + 3, wx.Point(p2x, p2y)) |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2668 |
self.Segments.insert(segment + 3, (dir[1], dir[0])) |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2669 |
self.Points.insert(segment + 4, wx.Point(p2x, p2y)) |
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2670 |
self.Segments.insert(segment + 4, dir) |
0 | 2671 |
self.GeneratePoints() |
2672 |
||
2673 |
# Delete the handled segment by removing the two segment points |
|
2674 |
def DeleteSegment(self): |
|
2675 |
handle_type, handle = self.Handle |
|
2676 |
if handle_type == HANDLE_SEGMENT: |
|
2677 |
segment, dir = handle |
|
2678 |
for i in xrange(2): |
|
2679 |
self.Points.pop(segment) |
|
2680 |
self.Segments.pop(segment) |
|
2681 |
self.GeneratePoints() |
|
2682 |
self.RefreshModel() |
|
2683 |
||
2684 |
# Method called when a LeftDown event have been generated |
|
27 | 2685 |
def OnLeftDown(self, event, dc, scaling): |
2686 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 2687 |
# Test if a point have been handled |
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2688 |
#result = self.TestPoint(pos) |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2689 |
#if result != None: |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2690 |
# self.Handle = (HANDLE_POINT, result) |
381
98890d848701
Redefine cursor switching procedure in graphic viewers
laurent
parents:
372
diff
changeset
|
2691 |
# wx.CallAfter(self.Parent.SetCurrentCursor, 1) |
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2692 |
#else: |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2693 |
# Test if a segment have been handled |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2694 |
result = self.TestSegment(pos) |
0 | 2695 |
if result != None: |
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2696 |
if result[1] in (NORTH, SOUTH): |
381
98890d848701
Redefine cursor switching procedure in graphic viewers
laurent
parents:
372
diff
changeset
|
2697 |
wx.CallAfter(self.Parent.SetCurrentCursor, 4) |
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2698 |
elif result[1] in (EAST, WEST): |
381
98890d848701
Redefine cursor switching procedure in graphic viewers
laurent
parents:
372
diff
changeset
|
2699 |
wx.CallAfter(self.Parent.SetCurrentCursor, 5) |
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2700 |
self.Handle = (HANDLE_SEGMENT, result) |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2701 |
# Execute the default method for a graphic element |
0 | 2702 |
else: |
27 | 2703 |
Graphic_Element.OnLeftDown(self, event, dc, scaling) |
0 | 2704 |
self.oldPos = pos |
2705 |
||
80 | 2706 |
# Method called when a RightUp event has been generated |
27 | 2707 |
def OnRightUp(self, event, dc, scaling): |
2708 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 2709 |
# Test if a segment has been handled |
237 | 2710 |
result = self.TestSegment(pos, True) |
0 | 2711 |
if result != None: |
2712 |
self.Handle = (HANDLE_SEGMENT, result) |
|
2713 |
# Popup the menu with special items for a wire |
|
321
5b37e16f7b2a
Adding support for adding segments on only one segment wire
lbessard
parents:
316
diff
changeset
|
2714 |
self.Parent.PopupWireMenu(0 < result[0] < len(self.Segments) - 1) |
0 | 2715 |
else: |
2716 |
# Execute the default method for a graphic element |
|
27 | 2717 |
Graphic_Element.OnRightUp(self, event, dc, scaling) |
0 | 2718 |
|
80 | 2719 |
# Method called when a LeftDClick event has been generated |
27 | 2720 |
def OnLeftDClick(self, event, dc, scaling): |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2721 |
rect = self.GetRedrawRect() |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2722 |
if event.ControlDown(): |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2723 |
direction = (self.StartPoint[1], self.EndPoint[1]) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2724 |
if direction in [(EAST, WEST), (WEST, EAST)]: |
395
d432eae889ed
Bug when aligning blocks on wire connectors without scaling defined fixed
laurent
parents:
386
diff
changeset
|
2725 |
avgy = (self.StartPoint[0].y + self.EndPoint[0].y) / 2 |
d432eae889ed
Bug when aligning blocks on wire connectors without scaling defined fixed
laurent
parents:
386
diff
changeset
|
2726 |
if scaling is not None: |
d432eae889ed
Bug when aligning blocks on wire connectors without scaling defined fixed
laurent
parents:
386
diff
changeset
|
2727 |
avgy = round(float(avgy) / scaling[1]) * scaling[1] |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2728 |
if self.StartConnected is not None: |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2729 |
movey = avgy - self.StartPoint[0].y |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2730 |
startblock = self.StartConnected.GetParentBlock() |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2731 |
startblock.Move(0, movey) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2732 |
startblock.RefreshModel() |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2733 |
rect.Union(startblock.GetRedrawRect(0, movey)) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2734 |
else: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2735 |
self.MoveStartPoint(wx.Point(self.StartPoint[0].x, avgy)) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2736 |
if self.EndConnected is not None: |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2737 |
movey = avgy - self.EndPoint[0].y |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2738 |
endblock = self.EndConnected.GetParentBlock() |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2739 |
endblock.Move(0, movey) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2740 |
endblock.RefreshModel() |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2741 |
rect.Union(endblock.GetRedrawRect(0, movey)) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2742 |
else: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2743 |
self.MoveEndPoint(wx.Point(self.EndPoint[0].x, avgy)) |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2744 |
self.Parent.RefreshBuffer() |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2745 |
elif direction in [(NORTH, SOUTH), (SOUTH, NORTH)]: |
395
d432eae889ed
Bug when aligning blocks on wire connectors without scaling defined fixed
laurent
parents:
386
diff
changeset
|
2746 |
avgx = (self.StartPoint[0].x + self.EndPoint[0].x) / 2 |
d432eae889ed
Bug when aligning blocks on wire connectors without scaling defined fixed
laurent
parents:
386
diff
changeset
|
2747 |
if scaling is not None: |
d432eae889ed
Bug when aligning blocks on wire connectors without scaling defined fixed
laurent
parents:
386
diff
changeset
|
2748 |
avgx = round(float(avgx) / scaling[0]) * scaling[0] |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2749 |
if self.StartConnected is not None: |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2750 |
movex = avgx - self.StartPoint[0].x |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2751 |
startblock = self.StartConnected.GetParentBlock() |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2752 |
startblock.Move(movex, 0) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2753 |
startblock.RefreshModel() |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2754 |
rect.Union(startblock.GetRedrawRect(movex, 0)) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2755 |
else: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2756 |
self.MoveStartPoint(wx.Point(avgx, self.StartPoint[0].y)) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2757 |
if self.EndConnected is not None: |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2758 |
movex = avgx - self.EndPoint[0].x |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2759 |
endblock = self.EndConnected.GetParentBlock() |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2760 |
endblock.Move(movex, 0) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2761 |
endblock.RefreshModel() |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2762 |
rect.Union(endblock.GetRedrawRect(movex, 0)) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2763 |
else: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2764 |
self.MoveEndPoint(wx.Point(avgx, self.EndPoint[0].y)) |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2765 |
self.Parent.RefreshBuffer() |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2766 |
else: |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2767 |
self.ResetPoints() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2768 |
self.GeneratePoints() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2769 |
self.RefreshModel() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2770 |
self.Parent.RefreshBuffer() |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2771 |
rect.Union(self.GetRedrawRect()) |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2772 |
self.Parent.RefreshRect(self.Parent.GetScrolledRect(rect), False) |
0 | 2773 |
|
80 | 2774 |
# Method called when a Motion event has been generated |
27 | 2775 |
def OnMotion(self, event, dc, scaling): |
2776 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 2777 |
if not event.Dragging(): |
2778 |
# Test if a segment has been handled |
|
2779 |
result = self.TestSegment(pos) |
|
2780 |
if result: |
|
2781 |
if result[1] in (NORTH, SOUTH): |
|
381
98890d848701
Redefine cursor switching procedure in graphic viewers
laurent
parents:
372
diff
changeset
|
2782 |
wx.CallAfter(self.Parent.SetCurrentCursor, 4) |
0 | 2783 |
elif result[1] in (EAST, WEST): |
381
98890d848701
Redefine cursor switching procedure in graphic viewers
laurent
parents:
372
diff
changeset
|
2784 |
wx.CallAfter(self.Parent.SetCurrentCursor, 5) |
144 | 2785 |
return 0, 0 |
0 | 2786 |
else: |
2787 |
# Test if a point has been handled |
|
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2788 |
#result = self.TestPoint(pos) |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2789 |
#if result != None: |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2790 |
# if result == 0 and self.StartConnected: |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2791 |
# self.OverStart = True |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2792 |
# elif result != 0 and self.EndConnected: |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2793 |
# self.OverEnd = True |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2794 |
#else: |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2795 |
# self.OverStart = False |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2796 |
# self.OverEnd = False |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
2797 |
# Execute the default method for a graphic element |
90
2245e8776086
Adding support support for using PLCOpenEditor with Beremiz
lbessard
parents:
80
diff
changeset
|
2798 |
return Graphic_Element.OnMotion(self, event, dc, scaling) |
0 | 2799 |
else: |
2800 |
# Execute the default method for a graphic element |
|
90
2245e8776086
Adding support support for using PLCOpenEditor with Beremiz
lbessard
parents:
80
diff
changeset
|
2801 |
return Graphic_Element.OnMotion(self, event, dc, scaling) |
0 | 2802 |
|
2803 |
# Refreshes the wire state according to move defined and handle selected |
|
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2804 |
def ProcessDragging(self, movex, movey, event, scaling): |
0 | 2805 |
handle_type, handle = self.Handle |
2806 |
# A point has been handled |
|
2807 |
if handle_type == HANDLE_POINT: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2808 |
movex = max(-self.Points[handle].x + POINT_RADIUS, movex) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2809 |
movey = max(-self.Points[handle].y + POINT_RADIUS, movey) |
145 | 2810 |
if scaling is not None: |
331
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
2811 |
movex = round_scaling(self.Points[handle].x + movex, scaling[0]) - self.Points[handle].x |
9106d66bd204
Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents:
329
diff
changeset
|
2812 |
movey = round_scaling(self.Points[handle].y + movey, scaling[1]) - self.Points[handle].y |
0 | 2813 |
# Try to connect point to a connector |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2814 |
new_pos = wx.Point(self.Points[handle].x + movex, self.Points[handle].y + movey) |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
2815 |
connector = self.Parent.FindBlockConnector(new_pos, self.GetConnectionDirection()) |
0 | 2816 |
if connector: |
339 | 2817 |
if handle == 0 and self.EndConnected != connector: |
525
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2818 |
connector.HighlightParentBlock(True) |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2819 |
connector.Connect((self, handle)) |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2820 |
self.SetStartPointDirection(connector.GetDirection()) |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2821 |
self.ConnectStartPoint(connector.GetPosition(), connector) |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2822 |
pos = connector.GetPosition() |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2823 |
movex = pos.x - self.oldPos.x |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2824 |
movey = pos.y - self.oldPos.y |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2825 |
if not connector.IsCompatible(self.GetEndConnectedType()): |
339 | 2826 |
self.SetValid(False) |
525
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2827 |
self.Dragging = False |
339 | 2828 |
elif handle != 0 and self.StartConnected != connector: |
525
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2829 |
connector.HighlightParentBlock(True) |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2830 |
connector.Connect((self, handle)) |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2831 |
self.SetEndPointDirection(connector.GetDirection()) |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2832 |
self.ConnectEndPoint(connector.GetPosition(), connector) |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2833 |
pos = connector.GetPosition() |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2834 |
movex = pos.x - self.oldPos.x |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2835 |
movey = pos.y - self.oldPos.y |
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2836 |
if not connector.IsCompatible(self.GetStartConnectedType()): |
339 | 2837 |
self.SetValid(False) |
525
e8d5ab0855d3
Adding support for debugging and forcing DATE, DT and TOD in Beremiz interface
laurent
parents:
519
diff
changeset
|
2838 |
self.Dragging = False |
0 | 2839 |
elif handle == 0: |
2840 |
self.MoveStartPoint(new_pos) |
|
2841 |
else: |
|
2842 |
self.MoveEndPoint(new_pos) |
|
2843 |
# If there is no connector, move the point |
|
2844 |
elif handle == 0: |
|
339 | 2845 |
self.SetValid(True) |
0 | 2846 |
if self.StartConnected: |
339 | 2847 |
self.StartConnected.HighlightParentBlock(False) |
0 | 2848 |
self.UnConnectStartPoint() |
2849 |
self.MoveStartPoint(new_pos) |
|
2850 |
else: |
|
339 | 2851 |
self.SetValid(True) |
0 | 2852 |
if self.EndConnected: |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
2853 |
self.EndConnected.HighlightParentBlock(False) |
0 | 2854 |
self.UnConnectEndPoint() |
2855 |
self.MoveEndPoint(new_pos) |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
2856 |
return movex, movey |
0 | 2857 |
# A segment has been handled, move a segment |
2858 |
elif handle_type == HANDLE_SEGMENT: |
|
145 | 2859 |
return self.MoveSegment(handle[0], movex, movey, scaling) |
0 | 2860 |
# Execute the default method for a graphic element |
2861 |
else: |
|
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
321
diff
changeset
|
2862 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling) |
0 | 2863 |
|
2864 |
# Refreshes the wire model |
|
2865 |
def RefreshModel(self, move=True): |
|
2866 |
if self.StartConnected and self.StartPoint[1] in [WEST, NORTH]: |
|
2867 |
self.StartConnected.RefreshParentBlock() |
|
2868 |
if self.EndConnected and self.EndPoint[1] in [WEST, NORTH]: |
|
2869 |
self.EndConnected.RefreshParentBlock() |
|
2870 |
||
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
2871 |
# Draws the highlightment of this element if it is highlighted |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
2872 |
def DrawHighlightment(self, dc): |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2873 |
scalex, scaley = dc.GetUserScale() |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2874 |
dc.SetUserScale(1, 1) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2875 |
dc.SetPen(MiterPen(HIGHLIGHTCOLOR, (2 * scalex + 5))) |
144 | 2876 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
2877 |
dc.SetLogicalFunction(wx.AND) |
|
2878 |
# Draw the start and end points if they are not connected or the mouse is over them |
|
2879 |
if len(self.Points) > 0 and (not self.StartConnected or self.OverStart): |
|
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2880 |
dc.DrawCircle(round(self.Points[0].x * scalex), |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2881 |
round(self.Points[0].y * scaley), |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2882 |
(POINT_RADIUS + 1) * scalex + 2) |
144 | 2883 |
if len(self.Points) > 1 and (not self.EndConnected or self.OverEnd): |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2884 |
dc.DrawCircle(self.Points[-1].x * scalex, self.Points[-1].y * scaley, (POINT_RADIUS + 1) * scalex + 2) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2885 |
# Draw the wire lines and the last point (it seems that DrawLines stop before the last point) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2886 |
if len(self.Points) > 1: |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2887 |
points = [wx.Point(round((self.Points[0].x - self.Segments[0][0]) * scalex), |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2888 |
round((self.Points[0].y - self.Segments[0][1]) * scaley))] |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2889 |
points.extend([wx.Point(round(point.x * scalex), round(point.y * scaley)) for point in self.Points[1:-1]]) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2890 |
points.append(wx.Point(round((self.Points[-1].x + self.Segments[-1][0]) * scalex), |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2891 |
round((self.Points[-1].y + self.Segments[-1][1]) * scaley))) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2892 |
else: |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2893 |
points = [] |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2894 |
dc.DrawLines(points) |
145 | 2895 |
dc.SetLogicalFunction(wx.COPY) |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2896 |
dc.SetUserScale(scalex, scaley) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2897 |
|
144 | 2898 |
if self.StartConnected is not None: |
2899 |
self.StartConnected.DrawHighlightment(dc) |
|
145 | 2900 |
self.StartConnected.Draw(dc) |
144 | 2901 |
if self.EndConnected is not None: |
2902 |
self.EndConnected.DrawHighlightment(dc) |
|
145 | 2903 |
self.EndConnected.Draw(dc) |
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2904 |
|
0 | 2905 |
# Draws the wire lines and points |
2906 |
def Draw(self, dc): |
|
144 | 2907 |
Graphic_Element.Draw(self, dc) |
249 | 2908 |
if not self.Valid: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2909 |
dc.SetPen(MiterPen(wx.RED)) |
339 | 2910 |
dc.SetBrush(wx.RED_BRUSH) |
249 | 2911 |
elif isinstance(self.Value, BooleanType) and self.Value: |
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2912 |
if self.Forced: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2913 |
dc.SetPen(MiterPen(wx.CYAN)) |
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2914 |
dc.SetBrush(wx.CYAN_BRUSH) |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2915 |
else: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2916 |
dc.SetPen(MiterPen(wx.GREEN)) |
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2917 |
dc.SetBrush(wx.GREEN_BRUSH) |
253 | 2918 |
elif self.Value == "undefined": |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2919 |
dc.SetPen(MiterPen(wx.NamedColour("orange"))) |
339 | 2920 |
dc.SetBrush(wx.Brush(wx.NamedColour("orange"))) |
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2921 |
elif self.Forced: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2922 |
dc.SetPen(MiterPen(wx.BLUE)) |
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
469
diff
changeset
|
2923 |
dc.SetBrush(wx.BLUE_BRUSH) |
249 | 2924 |
else: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2925 |
dc.SetPen(MiterPen(wx.BLACK)) |
339 | 2926 |
dc.SetBrush(wx.BLACK_BRUSH) |
0 | 2927 |
# Draw the start and end points if they are not connected or the mouse is over them |
2928 |
if len(self.Points) > 0 and (not self.StartConnected or self.OverStart): |
|
2929 |
dc.DrawCircle(self.Points[0].x, self.Points[0].y, POINT_RADIUS) |
|
2930 |
if len(self.Points) > 1 and (not self.EndConnected or self.OverEnd): |
|
2931 |
dc.DrawCircle(self.Points[-1].x, self.Points[-1].y, POINT_RADIUS) |
|
2932 |
# Draw the wire lines and the last point (it seems that DrawLines stop before the last point) |
|
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2933 |
if len(self.Points) > 1: |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2934 |
points = [wx.Point(self.Points[0].x - self.Segments[0][0], self.Points[0].y - self.Segments[0][1])] |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2935 |
points.extend([point for point in self.Points[1:-1]]) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2936 |
points.append(wx.Point(self.Points[-1].x + self.Segments[-1][0], self.Points[-1].y + self.Segments[-1][1])) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2937 |
else: |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2938 |
points = [] |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2939 |
dc.DrawLines(points) |
0 | 2940 |
# Draw the segment selected in red |
399
3b9e0b092298
Bug drawing element selection state on printed documents fixed
laurent
parents:
398
diff
changeset
|
2941 |
if not getattr(dc, "printing", False) and self.SelectedSegment is not None: |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
2942 |
dc.SetPen(MiterPen(wx.BLUE, 3)) |
0 | 2943 |
if self.SelectedSegment == len(self.Segments) - 1: |
550 | 2944 |
end = 0 |
2945 |
else: |
|
2946 |
end = 1 |
|
2947 |
dc.DrawLine(self.Points[self.SelectedSegment].x - 1, self.Points[self.SelectedSegment].y, |
|
2948 |
self.Points[self.SelectedSegment + 1].x + end, self.Points[self.SelectedSegment + 1].y) |
|
253 | 2949 |
if self.Value is not None and not isinstance(self.Value, BooleanType) and self.Value != "undefined": |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
358
diff
changeset
|
2950 |
dc.SetFont(self.Parent.GetMiniFont()) |
249 | 2951 |
dc.SetTextForeground(wx.NamedColour("purple")) |
519
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
2952 |
if self.ValueSize is not None: |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
2953 |
width, height = self.ValueSize |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
2954 |
if self.BoundingBox[2] > width * 4 or self.BoundingBox[3] > height * 4: |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
2955 |
x = self.Points[0].x + width * (self.StartPoint[1][0] - 1) / 2 |
529
cbfbd0f7135b
Move position of debug value to avoid wire to cross text
laurent
parents:
525
diff
changeset
|
2956 |
y = self.Points[0].y + height * (self.StartPoint[1][1] - 1) |
519
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
2957 |
dc.DrawText(self.ComputedValue, x, y) |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
2958 |
x = self.Points[-1].x + width * (self.EndPoint[1][0] - 1) / 2 |
529
cbfbd0f7135b
Move position of debug value to avoid wire to cross text
laurent
parents:
525
diff
changeset
|
2959 |
y = self.Points[-1].y + height * (self.EndPoint[1][1] - 1) |
519
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
2960 |
dc.DrawText(self.ComputedValue, x, y) |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
2961 |
else: |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
2962 |
middle = len(self.Segments) / 2 + len(self.Segments) % 2 - 1 |
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
2963 |
x = (self.Points[middle].x + self.Points[middle + 1].x - width) / 2 |
529
cbfbd0f7135b
Move position of debug value to avoid wire to cross text
laurent
parents:
525
diff
changeset
|
2964 |
if self.BoundingBox[3] > height and self.Segments[middle] in [NORTH, SOUTH]: |
cbfbd0f7135b
Move position of debug value to avoid wire to cross text
laurent
parents:
525
diff
changeset
|
2965 |
y = (self.Points[middle].y + self.Points[middle + 1].y - height) / 2 |
cbfbd0f7135b
Move position of debug value to avoid wire to cross text
laurent
parents:
525
diff
changeset
|
2966 |
else: |
cbfbd0f7135b
Move position of debug value to avoid wire to cross text
laurent
parents:
525
diff
changeset
|
2967 |
y = self.Points[middle].y - height |
519
722714c04dcd
Adding support for displaying and forcing TIME variables according to IEC 61131 literal format
laurent
parents:
505
diff
changeset
|
2968 |
dc.DrawText(self.ComputedValue, x, y) |
249 | 2969 |
dc.SetFont(self.Parent.GetFont()) |
2970 |
dc.SetTextForeground(wx.BLACK) |
|
144 | 2971 |
|
0 | 2972 |
|
2973 |
#------------------------------------------------------------------------------- |
|
2974 |
# Graphic comment element |
|
2975 |
#------------------------------------------------------------------------------- |
|
2976 |
||
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2977 |
def FilterHighlightsByRow(highlights, row, length): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2978 |
_highlights = [] |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2979 |
for start, end, highlight_type in highlights: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2980 |
if start[0] <= row and end[0] >= row: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2981 |
if start[0] < row: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2982 |
start = (row, 0) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2983 |
if end[0] > row: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2984 |
end = (row, length) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2985 |
_highlights.append((start, end, highlight_type)) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2986 |
return _highlights |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2987 |
|
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2988 |
def FilterHighlightsByColumn(highlights, start_col, end_col): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2989 |
_highlights = [] |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2990 |
for start, end, highlight_type in highlights: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2991 |
if end[1] > start_col and start[1] < end_col: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2992 |
start = (start[0], max(start[1], start_col) - start_col) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2993 |
end = (end[0], min(end[1], end_col) - start_col) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2994 |
_highlights.append((start, end, highlight_type)) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2995 |
return _highlights |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
2996 |
|
0 | 2997 |
""" |
2998 |
Class that implements a comment |
|
2999 |
""" |
|
3000 |
||
3001 |
class Comment(Graphic_Element): |
|
3002 |
||
3003 |
# Create a new comment |
|
3004 |
def __init__(self, parent, content, id = None): |
|
3005 |
Graphic_Element.__init__(self, parent) |
|
3006 |
self.Id = id |
|
3007 |
self.Content = content |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
3008 |
self.Pos = wx.Point(0, 0) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
3009 |
self.Size = wx.Size(0, 0) |
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3010 |
self.Highlights = [] |
0 | 3011 |
|
112 | 3012 |
# Make a clone of this comment |
162 | 3013 |
def Clone(self, parent, id = None, pos = None): |
3014 |
comment = Comment(parent, self.Content, id) |
|
145 | 3015 |
if pos is not None: |
3016 |
comment.SetPosition(pos.x, pos.y) |
|
112 | 3017 |
comment.SetSize(self.Size[0], self.Size[1]) |
3018 |
return comment |
|
3019 |
||
0 | 3020 |
# Method for keeping compatibility with others |
3021 |
def Clean(self): |
|
3022 |
pass |
|
3023 |
||
3024 |
# Delete this comment by calling the corresponding method |
|
3025 |
def Delete(self): |
|
3026 |
self.Parent.DeleteComment(self) |
|
3027 |
||
3028 |
# Refresh the comment bounding box |
|
3029 |
def RefreshBoundingBox(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
3030 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
0 | 3031 |
|
3032 |
# Changes the comment size |
|
3033 |
def SetSize(self, width, height): |
|
3034 |
self.Size.SetWidth(width) |
|
3035 |
self.Size.SetHeight(height) |
|
3036 |
self.RefreshBoundingBox() |
|
3037 |
||
3038 |
# Returns the comment size |
|
3039 |
def GetSize(self): |
|
3040 |
return self.Size.GetWidth(), self.Size.GetHeight() |
|
3041 |
||
3042 |
# Returns the comment minimum size |
|
3043 |
def GetMinSize(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
3044 |
dc = wx.ClientDC(self.Parent) |
0 | 3045 |
min_width = 0 |
3046 |
min_height = 0 |
|
3047 |
# The comment minimum size is the maximum size of words in the content |
|
3048 |
for line in self.Content.splitlines(): |
|
3049 |
for word in line.split(" "): |
|
3050 |
wordwidth, wordheight = dc.GetTextExtent(word) |
|
3051 |
min_width = max(min_width, wordwidth) |
|
3052 |
min_height = max(min_height, wordheight) |
|
3053 |
return min_width + 20, min_height + 20 |
|
3054 |
||
3055 |
# Changes the comment position |
|
3056 |
def SetPosition(self, x, y): |
|
3057 |
self.Pos.x = x |
|
3058 |
self.Pos.y = y |
|
3059 |
self.RefreshBoundingBox() |
|
3060 |
||
3061 |
# Changes the comment content |
|
3062 |
def SetContent(self, content): |
|
3063 |
self.Content = content |
|
3064 |
min_width, min_height = self.GetMinSize() |
|
3065 |
self.Size[0] = max(self.Size[0], min_width) |
|
3066 |
self.Size[1] = max(self.Size[1], min_height) |
|
3067 |
self.RefreshBoundingBox() |
|
3068 |
||
3069 |
# Returns the comment content |
|
3070 |
def GetContent(self): |
|
3071 |
return self.Content |
|
3072 |
||
3073 |
# Returns the comment position |
|
3074 |
def GetPosition(self): |
|
3075 |
return self.Pos.x, self.Pos.y |
|
3076 |
||
3077 |
# Moves the comment |
|
3078 |
def Move(self, dx, dy, connected = True): |
|
3079 |
self.Pos.x += dx |
|
3080 |
self.Pos.y += dy |
|
3081 |
self.RefreshBoundingBox() |
|
3082 |
||
3083 |
# Resizes the comment with the position and the size given |
|
3084 |
def Resize(self, x, y, width, height): |
|
3085 |
self.Move(x, y) |
|
3086 |
self.SetSize(width, height) |
|
3087 |
||
3088 |
# Method called when a RightUp event have been generated |
|
27 | 3089 |
def OnRightUp(self, event, dc, scaling): |
0 | 3090 |
# Popup the default menu |
3091 |
self.Parent.PopupDefaultMenu() |
|
3092 |
||
554 | 3093 |
# Refreshes the wire state according to move defined and handle selected |
3094 |
def ProcessDragging(self, movex, movey, event, scaling): |
|
3095 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE and self.Parent.CurrentLanguage == "LD": |
|
3096 |
movex = movey = 0 |
|
3097 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling) |
|
3098 |
||
0 | 3099 |
# Refreshes the comment model |
3100 |
def RefreshModel(self, move=True): |
|
3101 |
self.Parent.RefreshCommentModel(self) |
|
3102 |
||
3103 |
# Method called when a LeftDClick event have been generated |
|
27 | 3104 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 3105 |
# Edit the comment content |
3106 |
self.Parent.EditCommentContent(self) |
|
3107 |
||
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3108 |
# Adds an highlight to the comment |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3109 |
def AddHighlight(self, infos, start, end, highlight_type): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3110 |
if infos[0] == "content": |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3111 |
AddHighlight(self.Highlights, (start, end, highlight_type)) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3112 |
|
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3113 |
# Removes an highlight from the comment |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3114 |
def RemoveHighlight(self, infos, start, end, highlight_type): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3115 |
RemoveHighlight(self.Highlights, (start, end, highlight_type)) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3116 |
|
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3117 |
# Removes all the highlights of one particular type from the comment |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3118 |
def ClearHighlight(self, highlight_type=None): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3119 |
self.Highlights = ClearHighlights(self.Highlights, highlight_type) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3120 |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
3121 |
# Draws the highlightment of this element if it is highlighted |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
3122 |
def DrawHighlightment(self, dc): |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3123 |
scalex, scaley = dc.GetUserScale() |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3124 |
dc.SetUserScale(1, 1) |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3125 |
dc.SetPen(MiterPen(HIGHLIGHTCOLOR)) |
144 | 3126 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
3127 |
dc.SetLogicalFunction(wx.AND) |
|
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3128 |
|
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3129 |
left = (self.Pos.x - 1) * scalex - 2 |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3130 |
right = (self.Pos.x + self.Size[0] + 1) * scalex + 2 |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3131 |
top = (self.Pos.y - 1) * scaley - 2 |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3132 |
bottom = (self.Pos.y + self.Size[1] + 1) * scaley + 2 |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3133 |
angle_top = (self.Pos.x + self.Size[0] - 9) * scalex + 2 |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3134 |
angle_right = (self.Pos.y + 9) * scaley - 2 |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3135 |
|
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3136 |
polygon = [wx.Point(left, top), wx.Point(angle_top, top), |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3137 |
wx.Point(right, angle_right), wx.Point(right, bottom), |
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3138 |
wx.Point(left, bottom)] |
144 | 3139 |
dc.DrawPolygon(polygon) |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3140 |
|
144 | 3141 |
dc.SetLogicalFunction(wx.COPY) |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3142 |
dc.SetUserScale(scalex, scaley) |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
3143 |
|
0 | 3144 |
# Draws the comment and its content |
3145 |
def Draw(self, dc): |
|
144 | 3146 |
Graphic_Element.Draw(self, dc) |
563
3f92a5e18804
- Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents:
554
diff
changeset
|
3147 |
dc.SetPen(MiterPen(wx.BLACK)) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
3148 |
dc.SetBrush(wx.WHITE_BRUSH) |
0 | 3149 |
# Draws the comment shape |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
3150 |
polygon = [wx.Point(self.Pos.x, self.Pos.y), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
3151 |
wx.Point(self.Pos.x + self.Size[0] - 10, self.Pos.y), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
3152 |
wx.Point(self.Pos.x + self.Size[0], self.Pos.y + 10), |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
3153 |
wx.Point(self.Pos.x + self.Size[0], self.Pos.y + self.Size[1]), |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
3154 |
wx.Point(self.Pos.x, self.Pos.y + self.Size[1])] |
0 | 3155 |
dc.DrawPolygon(polygon) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
3156 |
lines = [wx.Point(self.Pos.x + self.Size[0] - 10, self.Pos.y), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
3157 |
wx.Point(self.Pos.x + self.Size[0] - 10, self.Pos.y + 10), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
3158 |
wx.Point(self.Pos.x + self.Size[0], self.Pos.y + 10)] |
0 | 3159 |
dc.DrawLines(lines) |
3160 |
# Draws the comment content |
|
3161 |
y = self.Pos.y + 10 |
|
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3162 |
for idx, line in enumerate(self.Content.splitlines()): |
0 | 3163 |
first = True |
353 | 3164 |
linetext = "" |
0 | 3165 |
words = line.split(" ") |
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3166 |
if not getattr(dc, "printing", False): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3167 |
highlights = FilterHighlightsByRow(self.Highlights, idx, len(line)) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3168 |
highlights_offset = 0 |
0 | 3169 |
for i, word in enumerate(words): |
3170 |
if first: |
|
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3171 |
text = word |
0 | 3172 |
else: |
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3173 |
text = linetext + " " + word |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3174 |
wordwidth, wordheight = dc.GetTextExtent(text) |
0 | 3175 |
if y + wordheight > self.Pos.y + self.Size[1] - 10: |
3176 |
break |
|
386 | 3177 |
if wordwidth < self.Size[0] - 20: |
3178 |
if i < len(words) - 1: |
|
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3179 |
linetext = text |
386 | 3180 |
first = False |
3181 |
else: |
|
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3182 |
dc.DrawText(text, self.Pos.x + 10, y) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3183 |
if not getattr(dc, "printing", False): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3184 |
DrawHighlightedText(dc, text, FilterHighlightsByColumn(highlights, highlights_offset, highlights_offset + len(text)), self.Pos.x + 10, y) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3185 |
highlights_offset += len(text) + 1 |
386 | 3186 |
y += wordheight + 5 |
0 | 3187 |
else: |
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3188 |
if not first: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3189 |
dc.DrawText(linetext, self.Pos.x + 10, y) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3190 |
if not getattr(dc, "printing", False): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3191 |
DrawHighlightedText(dc, linetext, FilterHighlightsByColumn(highlights, highlights_offset, highlights_offset + len(linetext)), self.Pos.x + 10, y) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3192 |
highlights_offset += len(linetext) + 1 |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3193 |
if first or i == len(words) - 1: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3194 |
if not first: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3195 |
y += wordheight + 5 |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3196 |
if y + wordheight > self.Pos.y + self.Size[1] - 10: |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3197 |
break |
386 | 3198 |
dc.DrawText(word, self.Pos.x + 10, y) |
566
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3199 |
if not getattr(dc, "printing", False): |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3200 |
DrawHighlightedText(dc, word, FilterHighlightsByColumn(highlights, highlights_offset, highlights_offset + len(word)), self.Pos.x + 10, y) |
6014ef82a98a
Adding support for searching text or regular expression in whole project
laurent
parents:
563
diff
changeset
|
3201 |
highlights_offset += len(word) + 1 |
0 | 3202 |
else: |
386 | 3203 |
linetext = word |
0 | 3204 |
y += wordheight + 5 |
3205 |
if y + wordheight > self.Pos.y + self.Size[1] - 10: |
|
3206 |
break |
|
249 | 3207 |