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