author | lbessard |
Wed, 27 Aug 2008 16:55:16 +0200 | |
changeset 242 | 5b3e1c4569e6 |
parent 231 | fc2d6cbb8b39 |
child 243 | c5da8b706cde |
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 |
|
26 |
||
27 |
from GraphicCommons import * |
|
28 |
from plcopen.structures import * |
|
29 |
||
30 |
def GetWireSize(block): |
|
31 |
if isinstance(block, SFC_Step): |
|
32 |
return SFC_WIRE_MIN_SIZE + block.GetActionExtraLineNumber() * SFC_ACTION_MIN_SIZE[1] |
|
33 |
else: |
|
34 |
return SFC_WIRE_MIN_SIZE |
|
35 |
||
36 |
#------------------------------------------------------------------------------- |
|
37 |
# Sequencial Function Chart Step |
|
38 |
#------------------------------------------------------------------------------- |
|
39 |
||
40 |
""" |
|
41 |
Class that implements the graphic representation of a step |
|
42 |
""" |
|
43 |
||
44 |
class SFC_Step(Graphic_Element): |
|
45 |
||
46 |
# Create a new step |
|
47 |
def __init__(self, parent, name, initial = False, id = None): |
|
48 |
Graphic_Element.__init__(self, parent) |
|
213 | 49 |
self.SetName(name) |
0 | 50 |
self.Initial = initial |
51 |
self.Id = id |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
52 |
self.Error = None |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
53 |
self.Size = wx.Size(SFC_STEP_DEFAULT_SIZE[0], SFC_STEP_DEFAULT_SIZE[1]) |
0 | 54 |
# Create an input and output connector |
55 |
if not self.Initial: |
|
108 | 56 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH) |
0 | 57 |
else: |
58 |
self.Input = None |
|
59 |
self.Output = None |
|
60 |
self.Action = None |
|
61 |
||
62 |
# Destructor |
|
63 |
def __del__(self): |
|
64 |
self.Input = None |
|
65 |
self.Output = None |
|
66 |
self.Action = None |
|
67 |
||
112 | 68 |
# Make a clone of this SFC_Step |
162 | 69 |
def Clone(self, parent, id = None, name = "Step", pos = None): |
70 |
step = SFC_Step(parent, name, self.Initial, id) |
|
112 | 71 |
step.SetSize(self.Size[0], self.Size[1]) |
72 |
if pos is not None: |
|
73 |
step.SetPosition(pos.x, pos.y) |
|
144 | 74 |
if self.Input: |
75 |
step.Input = self.Input.Clone(step) |
|
76 |
if self.Output: |
|
77 |
step.Output = self.Output.Clone(step) |
|
78 |
if self.Action: |
|
79 |
step.Action = self.Action.Clone(step) |
|
112 | 80 |
return step |
81 |
||
144 | 82 |
# Returns the RedrawRect |
83 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
84 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
85 |
if self.Input: |
|
86 |
rect = rect.Union(self.Input.GetRedrawRect(movex, movey)) |
|
87 |
if self.Output: |
|
88 |
rect = rect.Union(self.Output.GetRedrawRect(movex, movey)) |
|
89 |
if self.Action: |
|
90 |
rect = rect.Union(self.Action.GetRedrawRect(movex, movey)) |
|
91 |
if movex != 0 or movey != 0: |
|
92 |
if self.Input and self.Input.IsConnected(): |
|
93 |
rect = rect.Union(self.Input.GetConnectedRedrawRect(movex, movey)) |
|
94 |
if self.Output and self.Output.IsConnected(): |
|
95 |
rect = rect.Union(self.Output.GetConnectedRedrawRect(movex, movey)) |
|
96 |
if self.Action and self.Action.IsConnected(): |
|
97 |
rect = rect.Union(self.Action.GetConnectedRedrawRect(movex, movey)) |
|
98 |
return rect |
|
99 |
||
0 | 100 |
# Delete this step by calling the appropriate method |
101 |
def Delete(self): |
|
102 |
self.Parent.DeleteStep(self) |
|
103 |
||
104 |
# Unconnect input and output |
|
105 |
def Clean(self): |
|
106 |
if self.Input: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
107 |
self.Input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 108 |
if self.Output: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
109 |
self.Output.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 110 |
if self.Action: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
111 |
self.Action.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 112 |
|
213 | 113 |
# Refresh the size of text for name |
114 |
def RefreshNameSize(self): |
|
115 |
self.NameSize = self.Parent.GetTextExtent(self.Name) |
|
116 |
||
0 | 117 |
# Add output connector to step |
71 | 118 |
def AddInput(self): |
119 |
if not self.Input: |
|
108 | 120 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH) |
71 | 121 |
self.RefreshBoundingBox() |
122 |
||
123 |
# Remove output connector from step |
|
124 |
def RemoveInput(self): |
|
125 |
if self.Input: |
|
154 | 126 |
self.Input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
71 | 127 |
self.Input = None |
128 |
self.RefreshBoundingBox() |
|
129 |
||
130 |
# Add output connector to step |
|
0 | 131 |
def AddOutput(self): |
132 |
if not self.Output: |
|
145 | 133 |
self.Output = Connector(self, "", None, wx.Point(self.Size[0] / 2, self.Size[1]), SOUTH, onlyone = True) |
0 | 134 |
self.RefreshBoundingBox() |
135 |
||
136 |
# Remove output connector from step |
|
137 |
def RemoveOutput(self): |
|
138 |
if self.Output: |
|
154 | 139 |
self.Output.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 140 |
self.Output = None |
141 |
self.RefreshBoundingBox() |
|
142 |
||
143 |
# Add action connector to step |
|
144 |
def AddAction(self): |
|
145 |
if not self.Action: |
|
145 | 146 |
self.Action = Connector(self, "", None, wx.Point(self.Size[0], self.Size[1] / 2), EAST, onlyone = True) |
0 | 147 |
self.RefreshBoundingBox() |
148 |
||
149 |
# Remove action connector from step |
|
150 |
def RemoveAction(self): |
|
151 |
if self.Action: |
|
154 | 152 |
self.Action.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 153 |
self.Action = None |
154 |
self.RefreshBoundingBox() |
|
155 |
||
156 |
# Refresh the step bounding box |
|
157 |
def RefreshBoundingBox(self): |
|
158 |
# Calculate the bounding box size |
|
159 |
if self.Action: |
|
160 |
bbx_width = self.Size[0] + CONNECTOR_SIZE |
|
161 |
else: |
|
162 |
bbx_width = self.Size[0] |
|
163 |
if self.Initial: |
|
164 |
bbx_y = self.Pos.y |
|
165 |
bbx_height = self.Size[1] |
|
166 |
if self.Output: |
|
167 |
bbx_height += CONNECTOR_SIZE |
|
168 |
else: |
|
169 |
bbx_y = self.Pos.y - CONNECTOR_SIZE |
|
170 |
bbx_height = self.Size[1] + CONNECTOR_SIZE |
|
171 |
if self.Output: |
|
172 |
bbx_height += CONNECTOR_SIZE |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
173 |
#self.BoundingBox = wx.Rect(self.Pos.x, bbx_y, bbx_width + 1, bbx_height + 1) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
174 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
0 | 175 |
|
176 |
# Refresh the positions of the step connectors |
|
177 |
def RefreshConnectors(self): |
|
145 | 178 |
scaling = self.Parent.GetScaling() |
179 |
horizontal_pos = self.Size[0] / 2 |
|
180 |
vertical_pos = self.Size[1] / 2 |
|
181 |
if scaling is not None: |
|
182 |
horizontal_pos = round(float(self.Pos.x + horizontal_pos) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
183 |
vertical_pos = round(float(self.Pos.y + vertical_pos) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
0 | 184 |
# Update input position if it exists |
185 |
if self.Input: |
|
145 | 186 |
self.Input.SetPosition(wx.Point(horizontal_pos, 0)) |
0 | 187 |
# Update output position |
188 |
if self.Output: |
|
145 | 189 |
self.Output.SetPosition(wx.Point(horizontal_pos, self.Size[1])) |
0 | 190 |
# Update action position if it exists |
191 |
if self.Action: |
|
145 | 192 |
self.Action.SetPosition(wx.Point(self.Size[0], vertical_pos)) |
0 | 193 |
self.RefreshConnected() |
194 |
||
195 |
# Refresh the position of wires connected to step |
|
196 |
def RefreshConnected(self, exclude = []): |
|
197 |
if self.Input: |
|
198 |
self.Input.MoveConnected(exclude) |
|
199 |
if self.Output: |
|
200 |
self.Output.MoveConnected(exclude) |
|
201 |
if self.Action: |
|
202 |
self.Action.MoveConnected(exclude) |
|
203 |
||
204 |
# Returns the step connector that starts with the point given if it exists |
|
27 | 205 |
def GetConnector(self, position, name = None): |
206 |
# if a name is given |
|
207 |
if name: |
|
208 |
# Test input, output and action connector if they exists |
|
209 |
if self.Input and name == self.Input.GetName(): |
|
210 |
return self.Input |
|
211 |
if self.Output and name == self.Output.GetName(): |
|
212 |
return self.Output |
|
213 |
if self.Action and name == self.Action.GetName(): |
|
214 |
return self.Action |
|
0 | 215 |
# Test input connector if it exists |
216 |
if self.Input: |
|
217 |
input_pos = self.Input.GetRelPosition() |
|
218 |
if position.x == self.Pos.x + input_pos.x and position.y == self.Pos.y + input_pos.y: |
|
219 |
return self.Input |
|
220 |
# Test output connector if it exists |
|
221 |
if self.Output: |
|
222 |
output_pos = self.Output.GetRelPosition() |
|
223 |
if position.x == self.Pos.x + output_pos.x and position.y == self.Pos.y + output_pos.y: |
|
224 |
return self.Output |
|
225 |
# Test action connector if it exists |
|
226 |
if self.Action: |
|
227 |
action_pos = self.Action.GetRelPosition() |
|
228 |
if position.x == self.Pos.x + action_pos.x and position.y == self.Pos.y + action_pos.y: |
|
229 |
return self.Action |
|
230 |
return None |
|
231 |
||
232 |
# Returns input and output step connectors |
|
233 |
def GetConnectors(self): |
|
234 |
return {"input":self.Input,"output":self.Output,"action":self.Action} |
|
235 |
||
236 |
# Test if point given is on step input or output connector |
|
237 |
def TestConnector(self, pt, exclude=True): |
|
238 |
# Test input connector if it exists |
|
239 |
if self.Input and self.Input.TestPoint(pt, exclude): |
|
240 |
return self.Input |
|
241 |
# Test output connector |
|
242 |
if self.Output and self.Output.TestPoint(pt, exclude): |
|
243 |
return self.Output |
|
108 | 244 |
# Test action connector |
245 |
if self.Action and self.Action.TestPoint(pt, exclude): |
|
246 |
return self.Action |
|
0 | 247 |
return None |
248 |
||
249 |
# Changes the step name |
|
250 |
def SetName(self, name): |
|
251 |
self.Name = name |
|
213 | 252 |
self.RefreshNameSize() |
0 | 253 |
|
254 |
# Returns the step name |
|
255 |
def GetName(self): |
|
256 |
return self.Name |
|
257 |
||
258 |
# Returns the step initial property |
|
259 |
def GetInitial(self): |
|
260 |
return self.Initial |
|
261 |
||
262 |
# Returns the connector connected to input |
|
263 |
def GetPreviousConnector(self): |
|
264 |
if self.Input: |
|
265 |
wires = self.Input.GetWires() |
|
266 |
if len(wires) == 1: |
|
145 | 267 |
return wires[0][0].GetOtherConnected(self.Input) |
0 | 268 |
return None |
269 |
||
270 |
# Returns the connector connected to output |
|
271 |
def GetNextConnector(self): |
|
272 |
if self.Output: |
|
273 |
wires = self.Output.GetWires() |
|
274 |
if len(wires) == 1: |
|
145 | 275 |
return wires[0][0].GetOtherConnected(self.Output) |
0 | 276 |
return None |
277 |
||
278 |
# Returns the connector connected to action |
|
279 |
def GetActionConnector(self): |
|
280 |
if self.Action: |
|
281 |
wires = self.Action.GetWires() |
|
282 |
if len(wires) == 1: |
|
145 | 283 |
return wires[0][0].GetOtherConnected(self.Action) |
0 | 284 |
return None |
285 |
||
286 |
# Returns the number of action line |
|
287 |
def GetActionExtraLineNumber(self): |
|
288 |
if self.Action: |
|
289 |
wires = self.Action.GetWires() |
|
290 |
if len(wires) != 1: |
|
291 |
return 0 |
|
145 | 292 |
action_block = wires[0][0].GetOtherConnected(self.Action).GetParentBlock() |
0 | 293 |
return max(0, action_block.GetLineNumber() - 1) |
294 |
return 0 |
|
295 |
||
296 |
# Returns the step minimum size |
|
297 |
def GetMinSize(self): |
|
165 | 298 |
text_width, text_height = self.Parent.GetTextExtent(self.Name) |
0 | 299 |
if self.Initial: |
300 |
return text_width + 14, text_height + 14 |
|
301 |
else: |
|
302 |
return text_width + 10, text_height + 10 |
|
303 |
||
304 |
# Updates the step size |
|
305 |
def UpdateSize(self, width, height): |
|
306 |
diffx = self.Size.GetWidth() / 2 - width / 2 |
|
307 |
diffy = height - self.Size.GetHeight() |
|
308 |
self.Move(diffx, 0) |
|
309 |
Graphic_Element.SetSize(self, width, height) |
|
108 | 310 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
311 |
self.RefreshConnected() |
|
312 |
else: |
|
313 |
self.RefreshOutputPosition((0, diffy)) |
|
0 | 314 |
|
315 |
# Align input element with this step |
|
316 |
def RefreshInputPosition(self): |
|
317 |
if self.Input: |
|
318 |
current_pos = self.Input.GetPosition(False) |
|
319 |
input = self.GetPreviousConnector() |
|
320 |
if input: |
|
321 |
input_pos = input.GetPosition(False) |
|
322 |
diffx = current_pos.x - input_pos.x |
|
323 |
input_block = input.GetParentBlock() |
|
324 |
if isinstance(input_block, SFC_Divergence): |
|
325 |
input_block.MoveConnector(input, diffx) |
|
326 |
else: |
|
327 |
if isinstance(input_block, SFC_Step): |
|
328 |
input_block.MoveActionBlock((diffx, 0)) |
|
329 |
input_block.Move(diffx, 0) |
|
330 |
input_block.RefreshInputPosition() |
|
331 |
||
332 |
# Align output element with this step |
|
333 |
def RefreshOutputPosition(self, move = None): |
|
334 |
if self.Output: |
|
335 |
wires = self.Output.GetWires() |
|
336 |
if len(wires) != 1: |
|
337 |
return |
|
338 |
current_pos = self.Output.GetPosition(False) |
|
145 | 339 |
output = wires[0][0].GetOtherConnected(self.Output) |
0 | 340 |
output_pos = output.GetPosition(False) |
341 |
diffx = current_pos.x - output_pos.x |
|
342 |
output_block = output.GetParentBlock() |
|
343 |
wire_size = SFC_WIRE_MIN_SIZE + self.GetActionExtraLineNumber() * SFC_ACTION_MIN_SIZE[1] |
|
344 |
diffy = wire_size - output_pos.y + current_pos.y |
|
345 |
if diffy != 0: |
|
346 |
if isinstance(output_block, SFC_Step): |
|
347 |
output_block.MoveActionBlock((diffx, diffy)) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
348 |
wires[0][0].SetPoints([wx.Point(current_pos.x, current_pos.y + wire_size), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
349 |
wx.Point(current_pos.x, current_pos.y)]) |
0 | 350 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
351 |
output_block.Move(diffx, diffy, self.Parent.Wires) |
|
352 |
output_block.RefreshOutputPosition((diffx, diffy)) |
|
353 |
else: |
|
354 |
output_block.RefreshPosition() |
|
355 |
elif move: |
|
356 |
if isinstance(output_block, SFC_Step): |
|
357 |
output_block.MoveActionBlock(move) |
|
358 |
wires[0][0].Move(move[0], move[1], True) |
|
359 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
|
360 |
output_block.Move(move[0], move[1], self.Parent.Wires) |
|
361 |
output_block.RefreshOutputPosition(move) |
|
362 |
else: |
|
363 |
output_block.RefreshPosition() |
|
364 |
elif isinstance(output_block, SFC_Divergence): |
|
365 |
output_block.MoveConnector(output, diffx) |
|
366 |
else: |
|
367 |
if isinstance(output_block, SFC_Step): |
|
368 |
output_block.MoveActionBlock((diffx, 0)) |
|
369 |
output_block.Move(diffx, 0) |
|
370 |
output_block.RefreshOutputPosition() |
|
371 |
||
372 |
# Refresh action element with this step |
|
373 |
def MoveActionBlock(self, move): |
|
374 |
if self.Action: |
|
375 |
wires = self.Action.GetWires() |
|
376 |
if len(wires) != 1: |
|
377 |
return |
|
145 | 378 |
action_block = wires[0][0].GetOtherConnected(self.Action).GetParentBlock() |
0 | 379 |
action_block.Move(move[0], move[1], self.Parent.Wires) |
380 |
wires[0][0].Move(move[0], move[1], True) |
|
381 |
||
382 |
# Resize the divergence from position and size given |
|
383 |
def Resize(self, x, y, width, height): |
|
27 | 384 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
385 |
self.UpdateSize(width, height) |
|
386 |
else: |
|
387 |
Graphic_Element.Resize(self, x, y, width, height) |
|
0 | 388 |
|
389 |
# Method called when a LeftDClick event have been generated |
|
42 | 390 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 391 |
# Edit the step properties |
392 |
self.Parent.EditStepContent(self) |
|
393 |
||
394 |
# Method called when a RightUp event have been generated |
|
27 | 395 |
def OnRightUp(self, event, dc, scaling): |
0 | 396 |
# Popup the menu with special items for a step |
397 |
self.Parent.PopupDefaultMenu() |
|
398 |
||
399 |
# Refreshes the step state according to move defined and handle selected |
|
165 | 400 |
def ProcessDragging(self, movex, movey, centered, scaling): |
0 | 401 |
handle_type, handle = self.Handle |
402 |
if handle_type == HANDLE_MOVE: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
403 |
movex = max(-self.BoundingBox.x, movex) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
404 |
movey = max(-self.BoundingBox.y, movey) |
145 | 405 |
if scaling is not None: |
406 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
407 |
movey = round(float(self.Pos.y + movey) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
0 | 408 |
action_block = None |
27 | 409 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
410 |
self.Move(movex, movey) |
|
411 |
self.RefreshConnected() |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
412 |
return movex, movey |
27 | 413 |
elif self.Initial: |
0 | 414 |
self.MoveActionBlock((movex, movey)) |
415 |
self.Move(movex, movey, self.Parent.Wires) |
|
416 |
self.RefreshOutputPosition((movex, movey)) |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
417 |
return movex, movey |
0 | 418 |
else: |
419 |
self.MoveActionBlock((movex, 0)) |
|
420 |
self.Move(movex, 0) |
|
421 |
self.RefreshInputPosition() |
|
422 |
self.RefreshOutputPosition() |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
423 |
return movex, 0 |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
424 |
else: |
165 | 425 |
return Graphic_Element.ProcessDragging(self, movex, movey, centered, scaling) |
0 | 426 |
|
427 |
# Refresh input element model |
|
428 |
def RefreshInputModel(self): |
|
429 |
if self.Input: |
|
430 |
input = self.GetPreviousConnector() |
|
431 |
if input: |
|
432 |
input_block = input.GetParentBlock() |
|
433 |
input_block.RefreshModel(False) |
|
434 |
if not isinstance(input_block, SFC_Divergence): |
|
435 |
input_block.RefreshInputModel() |
|
436 |
||
437 |
# Refresh output element model |
|
438 |
def RefreshOutputModel(self, move=False): |
|
439 |
if self.Output: |
|
440 |
output = self.GetNextConnector() |
|
441 |
if output: |
|
442 |
output_block = output.GetParentBlock() |
|
443 |
output_block.RefreshModel(False) |
|
444 |
if not isinstance(output_block, SFC_Divergence) or move: |
|
445 |
output_block.RefreshOutputModel(move) |
|
446 |
||
447 |
# Refreshes the step model |
|
448 |
def RefreshModel(self, move=True): |
|
449 |
self.Parent.RefreshStepModel(self) |
|
450 |
if self.Action: |
|
451 |
action = self.GetActionConnector() |
|
452 |
if action: |
|
453 |
action_block = action.GetParentBlock() |
|
454 |
action_block.RefreshModel(False) |
|
455 |
# If step has moved, refresh the model of wires connected to output |
|
456 |
if move: |
|
27 | 457 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
458 |
self.RefreshInputModel() |
|
459 |
self.RefreshOutputModel(self.Initial) |
|
460 |
elif self.Output: |
|
461 |
self.Output.RefreshWires() |
|
0 | 462 |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
463 |
def AddError(self, infos, start, end): |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
464 |
if infos[0] == "name" and start[0] == 0 and end[0] == 0: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
465 |
self.Error = (start[1], end[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
466 |
|
0 | 467 |
# Draws step |
468 |
def Draw(self, dc): |
|
144 | 469 |
Graphic_Element.Draw(self, dc) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
470 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
471 |
dc.SetBrush(wx.WHITE_BRUSH) |
213 | 472 |
|
473 |
if getattr(dc, "printing", False): |
|
474 |
name_size = dc.GetTextExtent(self.Name) |
|
475 |
else: |
|
476 |
name_size = self.NameSize |
|
477 |
||
0 | 478 |
# Draw two rectangles for representing the step |
479 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
|
480 |
if self.Initial: |
|
481 |
dc.DrawRectangle(self.Pos.x + 2, self.Pos.y + 2, self.Size[0] - 3, self.Size[1] - 3) |
|
482 |
# Draw step name |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
483 |
name_pos = (self.Pos.x + (self.Size[0] - name_size[0]) / 2, |
213 | 484 |
self.Pos.y + (self.Size[1] - name_size[1]) / 2) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
485 |
dc.DrawText(self.Name, name_pos[0], name_pos[1]) |
0 | 486 |
# Draw input and output connectors |
487 |
if self.Input: |
|
488 |
self.Input.Draw(dc) |
|
489 |
if self.Output: |
|
490 |
self.Output.Draw(dc) |
|
491 |
if self.Action: |
|
492 |
self.Action.Draw(dc) |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
493 |
if self.Error is not None: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
494 |
HighlightErrorZone(dc, name_pos[0], name_pos[1], name_size[0], name_size[1]) |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
495 |
|
0 | 496 |
|
497 |
#------------------------------------------------------------------------------- |
|
498 |
# Sequencial Function Chart Transition |
|
499 |
#------------------------------------------------------------------------------- |
|
500 |
||
501 |
""" |
|
502 |
Class that implements the graphic representation of a transition |
|
503 |
""" |
|
504 |
||
505 |
class SFC_Transition(Graphic_Element): |
|
506 |
||
507 |
# Create a new transition |
|
80 | 508 |
def __init__(self, parent, type = "reference", condition = None, priority = 0, id = None): |
0 | 509 |
Graphic_Element.__init__(self, parent) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
510 |
self.Type = None |
0 | 511 |
self.Id = id |
80 | 512 |
self.Priority = 0 |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
513 |
self.Size = wx.Size(SFC_TRANSITION_SIZE[0], SFC_TRANSITION_SIZE[1]) |
0 | 514 |
# Create an input and output connector |
145 | 515 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH, onlyone = True) |
516 |
self.Output = Connector(self, "", None, wx.Point(self.Size[0] / 2, self.Size[1]), SOUTH, onlyone = True) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
517 |
self.SetType(type, condition) |
80 | 518 |
self.SetPriority(priority) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
519 |
self.Errors = {} |
0 | 520 |
|
521 |
# Destructor |
|
522 |
def __del__(self): |
|
523 |
self.Input = None |
|
524 |
self.Output = None |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
525 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
526 |
self.Condition = None |
0 | 527 |
|
112 | 528 |
# Make a clone of this SFC_Transition |
162 | 529 |
def Clone(self, parent, id = None, pos = None): |
530 |
transition = SFC_Transition(parent, self.Type, self.Condition, self.Priority, id) |
|
112 | 531 |
transition.SetSize(self.Size[0], self.Size[1]) |
532 |
if pos is not None: |
|
533 |
transition.SetPosition(pos.x, pos.y) |
|
534 |
transition.Input = self.Input.Clone(transition) |
|
535 |
transition.Output = self.Output.Clone(transition) |
|
172 | 536 |
if self.Type == "connection": |
537 |
transition.Condition = self.Condition.Clone(transition) |
|
112 | 538 |
return transition |
539 |
||
144 | 540 |
# Returns the RedrawRect |
541 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
542 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
543 |
rect = rect.Union(self.Input.GetRedrawRect(movex, movey)) |
|
544 |
rect = rect.Union(self.Output.GetRedrawRect(movex, movey)) |
|
545 |
if movex != 0 or movey != 0: |
|
546 |
if self.Input.IsConnected(): |
|
547 |
rect = rect.Union(self.Input.GetConnectedRedrawRect(movex, movey)) |
|
548 |
if self.Output.IsConnected(): |
|
549 |
rect = rect.Union(self.Output.GetConnectedRedrawRect(movex, movey)) |
|
175 | 550 |
if self.Type == "connection" and self.Condition.IsConnected(): |
172 | 551 |
rect = rect.Union(self.Condition.GetConnectedRedrawRect(movex, movey)) |
144 | 552 |
return rect |
553 |
||
0 | 554 |
# Forbids to change the transition size |
555 |
def SetSize(self, width, height): |
|
27 | 556 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
557 |
Graphic_Element.SetSize(self, width, height) |
|
0 | 558 |
|
559 |
# Forbids to resize the transition |
|
560 |
def Resize(self, x, y, width, height): |
|
27 | 561 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
562 |
Graphic_Element.Resize(self, x, y, width, height) |
|
0 | 563 |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
564 |
# Refresh the size of text for name |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
565 |
def RefreshConditionSize(self): |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
566 |
if self.Type != "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
567 |
if self.Condition != "": |
165 | 568 |
self.ConditionSize = self.Parent.GetTextExtent(self.Condition) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
569 |
else: |
165 | 570 |
self.ConditionSize = self.Parent.GetTextExtent("Transition") |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
571 |
|
80 | 572 |
# Refresh the size of text for name |
573 |
def RefreshPrioritySize(self): |
|
574 |
if self.Priority != "": |
|
165 | 575 |
self.PrioritySize = self.Parent.GetTextExtent(str(self.Priority)) |
80 | 576 |
else: |
577 |
self.PrioritySize = None |
|
578 |
||
0 | 579 |
# Delete this transition by calling the appropriate method |
580 |
def Delete(self): |
|
581 |
self.Parent.DeleteTransition(self) |
|
582 |
||
583 |
# Unconnect input and output |
|
584 |
def Clean(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
585 |
self.Input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
586 |
self.Output.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
587 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
588 |
self.Condition.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 589 |
|
590 |
# Refresh the transition bounding box |
|
591 |
def RefreshBoundingBox(self): |
|
80 | 592 |
bbx_x, bbx_y, bbx_width, bbx_height = self.Pos.x, self.Pos.y, self.Size[0], self.Size[1] |
593 |
if self.Priority != 0: |
|
594 |
bbx_y = self.Pos.y - self.PrioritySize[1] - 2 |
|
595 |
bbx_width = max(self.Size[0], self.PrioritySize[0]) |
|
596 |
bbx_height = self.Size[1] + self.PrioritySize[1] + 2 |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
597 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
598 |
bbx_x = self.Pos.x - CONNECTOR_SIZE |
80 | 599 |
bbx_width = bbx_width + CONNECTOR_SIZE |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
600 |
else: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
601 |
text_width, text_height = self.ConditionSize |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
602 |
# Calculate the bounding box size |
80 | 603 |
bbx_width = max(bbx_width, self.Size[0] + 5 + text_width) |
604 |
bbx_y = min(bbx_y, self.Pos.y - max(0, (text_height - self.Size[1]) / 2)) |
|
605 |
bbx_height = max(bbx_height, self.Pos.y - bbx_y + (self.Size[1] + text_height) / 2) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
606 |
self.BoundingBox = wx.Rect(bbx_x, bbx_y, bbx_width + 1, bbx_height + 1) |
0 | 607 |
|
608 |
# Returns the connector connected to input |
|
609 |
def GetPreviousConnector(self): |
|
610 |
wires = self.Input.GetWires() |
|
611 |
if len(wires) == 1: |
|
145 | 612 |
return wires[0][0].GetOtherConnected(self.Input) |
0 | 613 |
return None |
614 |
||
615 |
# Returns the connector connected to output |
|
616 |
def GetNextConnector(self): |
|
617 |
wires = self.Output.GetWires() |
|
618 |
if len(wires) == 1: |
|
145 | 619 |
return wires[0][0].GetOtherConnected(self.Output) |
0 | 620 |
return None |
621 |
||
622 |
# Refresh the positions of the transition connectors |
|
623 |
def RefreshConnectors(self): |
|
145 | 624 |
scaling = self.Parent.GetScaling() |
625 |
horizontal_pos = self.Size[0] / 2 |
|
626 |
vertical_pos = self.Size[1] / 2 |
|
627 |
if scaling is not None: |
|
628 |
horizontal_pos = round(float(self.Pos.x + horizontal_pos) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
629 |
vertical_pos = round(float(self.Pos.y + vertical_pos) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
0 | 630 |
# Update input position |
145 | 631 |
self.Input.SetPosition(wx.Point(horizontal_pos, 0)) |
0 | 632 |
# Update output position |
145 | 633 |
self.Output.SetPosition(wx.Point(horizontal_pos, self.Size[1])) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
634 |
if self.Type == "connection": |
145 | 635 |
self.Condition.SetPosition(wx.Point(0, vertical_pos)) |
0 | 636 |
self.RefreshConnected() |
637 |
||
638 |
# Refresh the position of the wires connected to transition |
|
639 |
def RefreshConnected(self, exclude = []): |
|
640 |
self.Input.MoveConnected(exclude) |
|
641 |
self.Output.MoveConnected(exclude) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
642 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
643 |
self.Condition.MoveConnected(exclude) |
0 | 644 |
|
645 |
# Returns the transition connector that starts with the point given if it exists |
|
27 | 646 |
def GetConnector(self, position, name = None): |
647 |
# if a name is given |
|
648 |
if name: |
|
649 |
# Test input and output connector |
|
650 |
if name == self.Input.GetName(): |
|
651 |
return self.Input |
|
652 |
if name == self.Output.GetName(): |
|
653 |
return self.Output |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
654 |
if self.Type == "connection" and name == self.Condition.GetName(): |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
655 |
return self.Condition |
0 | 656 |
# Test input connector |
657 |
input_pos = self.Input.GetRelPosition() |
|
658 |
if position.x == self.Pos.x + input_pos.x and position.y == self.Pos.y + input_pos.y: |
|
659 |
return self.Input |
|
660 |
# Test output connector |
|
661 |
output_pos = self.Output.GetRelPosition() |
|
662 |
if position.x == self.Pos.x + output_pos.x and position.y == self.Pos.y + output_pos.y: |
|
663 |
return self.Output |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
664 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
665 |
# Test condition connector |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
666 |
condition_pos = self.Condition.GetRelPosition() |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
667 |
if position.x == self.Pos.x + condition_pos.x and position.y == self.Pos.y + condition_pos.y: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
668 |
return self.Condition |
0 | 669 |
return None |
670 |
||
671 |
# Returns input and output transition connectors |
|
672 |
def GetConnectors(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
673 |
connectors = {"input":self.Input,"output":self.Output} |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
674 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
675 |
connectors["connection"] = self.Condition |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
676 |
return connectors |
0 | 677 |
|
678 |
# Test if point given is on transition input or output connector |
|
679 |
def TestConnector(self, pt, exclude=True): |
|
680 |
# Test input connector |
|
681 |
if self.Input.TestPoint(pt, exclude): |
|
682 |
return self.Input |
|
683 |
# Test output connector |
|
684 |
if self.Output.TestPoint(pt, exclude): |
|
685 |
return self.Output |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
686 |
# Test condition connector |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
687 |
if self.Type == "connection" and self.Condition.TestPoint(pt, exclude): |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
688 |
return self.Condition |
0 | 689 |
return None |
690 |
||
691 |
# Changes the transition type |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
692 |
def SetType(self, type, condition = None): |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
693 |
if self.Type != type: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
694 |
if self.Type == "connection": |
154 | 695 |
self.Condition.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
696 |
self.Type = type |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
697 |
if type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
698 |
self.Condition = Connector(self, "", "BOOL", wx.Point(0, self.Size[1] / 2), WEST) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
699 |
else: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
700 |
if condition == None: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
701 |
condition = "" |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
702 |
self.Condition = condition |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
703 |
self.RefreshConditionSize() |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
704 |
elif self.Type != "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
705 |
if condition == None: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
706 |
condition = "" |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
707 |
self.Condition = condition |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
708 |
self.RefreshConditionSize() |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
709 |
self.RefreshBoundingBox() |
0 | 710 |
|
711 |
# Returns the transition type |
|
712 |
def GetType(self): |
|
713 |
return self.Type |
|
714 |
||
80 | 715 |
# Changes the transition priority |
716 |
def SetPriority(self, priority): |
|
717 |
self.Priority = priority |
|
718 |
self.RefreshPrioritySize() |
|
719 |
self.RefreshBoundingBox() |
|
720 |
||
721 |
# Returns the transition type |
|
722 |
def GetPriority(self): |
|
723 |
return self.Priority |
|
724 |
||
0 | 725 |
# Returns the transition condition |
726 |
def GetCondition(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
727 |
if self.Type != "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
728 |
return self.Condition |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
729 |
return None |
0 | 730 |
|
731 |
# Returns the transition minimum size |
|
732 |
def GetMinSize(self): |
|
733 |
return SFC_TRANSITION_SIZE |
|
734 |
||
735 |
# Align input element with this step |
|
736 |
def RefreshInputPosition(self): |
|
737 |
wires = self.Input.GetWires() |
|
738 |
current_pos = self.Input.GetPosition(False) |
|
739 |
input = self.GetPreviousConnector() |
|
740 |
if input: |
|
741 |
input_pos = input.GetPosition(False) |
|
742 |
diffx = current_pos.x - input_pos.x |
|
743 |
input_block = input.GetParentBlock() |
|
744 |
if isinstance(input_block, SFC_Divergence): |
|
745 |
input_block.MoveConnector(input, diffx) |
|
746 |
else: |
|
747 |
if isinstance(input_block, SFC_Step): |
|
748 |
input_block.MoveActionBlock((diffx, 0)) |
|
749 |
input_block.Move(diffx, 0) |
|
750 |
input_block.RefreshInputPosition() |
|
751 |
||
752 |
# Align output element with this step |
|
753 |
def RefreshOutputPosition(self, move = None): |
|
754 |
wires = self.Output.GetWires() |
|
755 |
if len(wires) != 1: |
|
756 |
return |
|
757 |
current_pos = self.Output.GetPosition(False) |
|
145 | 758 |
output = wires[0][0].GetOtherConnected(self.Output) |
0 | 759 |
output_pos = output.GetPosition(False) |
760 |
diffx = current_pos.x - output_pos.x |
|
761 |
output_block = output.GetParentBlock() |
|
762 |
if move: |
|
763 |
if isinstance(output_block, SFC_Step): |
|
764 |
output_block.MoveActionBlock(move) |
|
765 |
wires[0][0].Move(move[0], move[1], True) |
|
766 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
|
767 |
output_block.Move(move[0], move[1], self.Parent.Wires) |
|
768 |
output_block.RefreshOutputPosition(move) |
|
769 |
else: |
|
770 |
output_block.RefreshPosition() |
|
771 |
elif isinstance(output_block, SFC_Divergence): |
|
772 |
output_block.MoveConnector(output, diffx) |
|
773 |
else: |
|
774 |
if isinstance(output_block, SFC_Step): |
|
775 |
output_block.MoveActionBlock((diffx, 0)) |
|
776 |
output_block.Move(diffx, 0) |
|
777 |
output_block.RefreshOutputPosition() |
|
27 | 778 |
|
0 | 779 |
# Method called when a LeftDClick event have been generated |
27 | 780 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 781 |
# Edit the transition properties |
782 |
self.Parent.EditTransitionContent(self) |
|
783 |
||
784 |
# Method called when a RightUp event have been generated |
|
27 | 785 |
def OnRightUp(self, event, dc, scaling): |
0 | 786 |
# Popup the menu with special items for a step |
787 |
self.Parent.PopupDefaultMenu() |
|
788 |
||
789 |
# Refreshes the transition state according to move defined and handle selected |
|
165 | 790 |
def ProcessDragging(self, movex, movey, centered, scaling): |
27 | 791 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
792 |
movex = max(-self.BoundingBox.x, movex) |
145 | 793 |
if scaling is not None: |
794 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
27 | 795 |
self.Move(movex, 0) |
796 |
self.RefreshInputPosition() |
|
797 |
self.RefreshOutputPosition() |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
798 |
return movex, 0 |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
799 |
else: |
175 | 800 |
return Graphic_Element.ProcessDragging(self, movex, movey, centered, scaling, width_fac = 2, height_fac = 2) |
0 | 801 |
|
802 |
# Refresh input element model |
|
803 |
def RefreshInputModel(self): |
|
27 | 804 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
805 |
input = self.GetPreviousConnector() |
|
806 |
if input: |
|
807 |
input_block = input.GetParentBlock() |
|
808 |
input_block.RefreshModel(False) |
|
809 |
if not isinstance(input_block, SFC_Divergence): |
|
810 |
input_block.RefreshInputModel() |
|
0 | 811 |
|
812 |
# Refresh output element model |
|
813 |
def RefreshOutputModel(self, move=False): |
|
814 |
output = self.GetNextConnector() |
|
815 |
if output: |
|
816 |
output_block = output.GetParentBlock() |
|
817 |
output_block.RefreshModel(False) |
|
818 |
if not isinstance(output_block, SFC_Divergence) or move: |
|
819 |
output_block.RefreshOutputModel(move) |
|
820 |
||
821 |
# Refreshes the transition model |
|
822 |
def RefreshModel(self, move=True): |
|
823 |
self.Parent.RefreshTransitionModel(self) |
|
824 |
# If transition has moved, refresh the model of wires connected to output |
|
825 |
if move: |
|
27 | 826 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
827 |
self.RefreshInputModel() |
|
828 |
self.RefreshOutputModel() |
|
829 |
else: |
|
830 |
self.Output.RefreshWires() |
|
0 | 831 |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
832 |
def AddError(self, infos, start, end): |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
833 |
if infos[0] == "priority" and start[0] == 0 and start[1] == 0: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
834 |
self.Errors[infos[0]] = (start[1], end[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
835 |
elif infos[0] == "inline": |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
836 |
if infos[0] not in self.Errors: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
837 |
self.Errors[infos[0]] = [] |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
838 |
self.Errors[infos[0]].append((start[1], end[1])) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
839 |
else: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
840 |
pass |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
841 |
|
0 | 842 |
# Draws transition |
843 |
def Draw(self, dc): |
|
144 | 844 |
Graphic_Element.Draw(self, dc) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
845 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
846 |
dc.SetBrush(wx.BLACK_BRUSH) |
213 | 847 |
|
848 |
if getattr(dc, "printing", False): |
|
849 |
if self.Type != "connection": |
|
850 |
condition_size = dc.GetTextExtent(self.Condition) |
|
851 |
if self.Priority != 0: |
|
852 |
priority_size = dc.GetTextExtent(str(self.Priority)) |
|
853 |
else: |
|
854 |
if self.Type != "connection": |
|
855 |
condition_size = self.ConditionSize |
|
856 |
if self.Priority != 0: |
|
857 |
priority_size = self.PrioritySize |
|
858 |
||
0 | 859 |
# Draw plain rectangle for representing the transition |
175 | 860 |
dc.DrawRectangle(self.Pos.x, |
861 |
self.Pos.y + (self.Size[1] - SFC_TRANSITION_SIZE[1])/2, |
|
862 |
self.Size[0] + 1, |
|
863 |
SFC_TRANSITION_SIZE[1] + 1) |
|
864 |
vertical_line_x = self.Input.GetPosition()[0] |
|
199 | 865 |
dc.DrawLine(vertical_line_x, self.Pos.y, vertical_line_x, self.Pos.y + self.Size[1] + 1) |
0 | 866 |
# Draw transition condition |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
867 |
if self.Type != "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
868 |
if self.Condition != "": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
869 |
condition = self.Condition |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
870 |
else: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
871 |
condition = "Transition" |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
872 |
condition_pos = (self.Pos.x + self.Size[0] + 5, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
873 |
self.Pos.y + (self.Size[1] - condition_size[1]) / 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
874 |
dc.DrawText(condition, condition_pos[0], condition_pos[1]) |
80 | 875 |
# Draw priority number |
876 |
if self.Priority != 0: |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
877 |
priority_pos = (self.Pos.x, self.Pos.y - priority_size[1] - 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
878 |
dc.DrawText(str(self.Priority), priority_pos[0], priority_pos[1]) |
0 | 879 |
# Draw input and output connectors |
880 |
self.Input.Draw(dc) |
|
881 |
self.Output.Draw(dc) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
882 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
883 |
self.Condition.Draw(dc) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
884 |
if "priority" in self.Errors: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
885 |
HighlightErrorZone(dc, priority_pos[0], priority_pos[1], priority_size[0], priority_size[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
886 |
if "inline" in self.Errors: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
887 |
for start, end in self.Errors["inline"]: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
888 |
offset = dc.GetTextExtent(self.Condition[:start]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
889 |
size = dc.GetTextExtent(self.Condition[start:end + 1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
890 |
HighlightErrorZone(dc, condition_pos[0] + offset[0], condition_pos[1], size[0], size[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
891 |
|
0 | 892 |
|
893 |
#------------------------------------------------------------------------------- |
|
894 |
# Sequencial Function Chart Divergence and Convergence |
|
895 |
#------------------------------------------------------------------------------- |
|
896 |
||
897 |
""" |
|
898 |
Class that implements the graphic representation of a divergence or convergence, |
|
899 |
selection or simultaneous |
|
900 |
""" |
|
901 |
||
902 |
class SFC_Divergence(Graphic_Element): |
|
903 |
||
904 |
# Create a new divergence |
|
905 |
def __init__(self, parent, type, number = 2, id = None): |
|
906 |
Graphic_Element.__init__(self, parent) |
|
907 |
self.Type = type |
|
908 |
self.Id = id |
|
909 |
self.RealConnectors = None |
|
910 |
number = max(2, number) |
|
175 | 911 |
self.Size = wx.Size((number - 1) * SFC_DEFAULT_SEQUENCE_INTERVAL, self.GetMinSize()[1]) |
0 | 912 |
# Create an input and output connector |
913 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
145 | 914 |
self.Inputs = [Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH, onlyone = True)] |
0 | 915 |
self.Outputs = [] |
916 |
for i in xrange(number): |
|
145 | 917 |
self.Outputs.append(Connector(self, "", None, wx.Point(i * SFC_DEFAULT_SEQUENCE_INTERVAL, self.Size[1]), SOUTH, onlyone = True)) |
0 | 918 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
919 |
self.Inputs = [] |
|
920 |
for i in xrange(number): |
|
145 | 921 |
self.Inputs.append(Connector(self, "", None, wx.Point(i * SFC_DEFAULT_SEQUENCE_INTERVAL, 0), NORTH, onlyone = True)) |
922 |
self.Outputs = [Connector(self, "", None, wx.Point(self.Size[0] / 2, self.Size[1]), SOUTH, onlyone = True)] |
|
0 | 923 |
|
924 |
# Destructor |
|
925 |
def __del__(self): |
|
926 |
self.Inputs = [] |
|
927 |
self.Outputs = [] |
|
928 |
||
112 | 929 |
# Make a clone of this SFC_Divergence |
162 | 930 |
def Clone(self, parent, id = None, pos = None): |
931 |
divergence = SFC_Divergence(parent, self.Type, max(len(self.Inputs), len(self.Outputs)), id) |
|
112 | 932 |
divergence.SetSize(self.Size[0], self.Size[1]) |
933 |
if pos is not None: |
|
934 |
divergence.SetPosition(pos.x, pos.y) |
|
935 |
divergence.Inputs = [input.Clone(divergence) for input in self.Inputs] |
|
936 |
divergence.Outputs = [output.Clone(divergence) for output in self.Outputs] |
|
937 |
return divergence |
|
938 |
||
144 | 939 |
# Returns the RedrawRect |
940 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
941 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
942 |
if movex != 0 or movey != 0: |
|
943 |
for input in self.Inputs: |
|
944 |
if input.IsConnected(): |
|
945 |
rect = rect.Union(input.GetConnectedRedrawRect(movex, movey)) |
|
946 |
for output in self.Outputs: |
|
947 |
if output.IsConnected(): |
|
948 |
rect = rect.Union(output.GetConnectedRedrawRect(movex, movey)) |
|
949 |
return rect |
|
950 |
||
0 | 951 |
# Forbids to resize the divergence |
952 |
def Resize(self, x, y, width, height): |
|
27 | 953 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
175 | 954 |
Graphic_Element.Resize(self, x, 0, width, self.GetMinSize()[1]) |
0 | 955 |
|
956 |
# Delete this divergence by calling the appropriate method |
|
957 |
def Delete(self): |
|
958 |
self.Parent.DeleteDivergence(self) |
|
959 |
||
960 |
# Returns the divergence type |
|
961 |
def GetType(self): |
|
962 |
return self.Type |
|
963 |
||
964 |
# Unconnect input and output |
|
965 |
def Clean(self): |
|
966 |
for input in self.Inputs: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
967 |
input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 968 |
for output in self.Outputs: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
969 |
output.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 970 |
|
971 |
# Add a branch to the divergence |
|
972 |
def AddBranch(self): |
|
973 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
974 |
maxx = 0 |
|
975 |
for output in self.Outputs: |
|
976 |
pos = output.GetRelPosition() |
|
977 |
maxx = max(maxx, pos.x) |
|
145 | 978 |
connector = Connector(self, "", None, wx.Point(maxx + SFC_DEFAULT_SEQUENCE_INTERVAL, self.Size[1]), SOUTH, onlyone = True) |
0 | 979 |
self.Outputs.append(connector) |
980 |
self.MoveConnector(connector, 0) |
|
981 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
982 |
maxx = 0 |
|
983 |
for input in self.Inputs: |
|
984 |
pos = input.GetRelPosition() |
|
985 |
maxx = max(maxx, pos.x) |
|
145 | 986 |
connector = Connector(self, "", None, wx.Point(maxx + SFC_DEFAULT_SEQUENCE_INTERVAL, 0), NORTH, onlyone = True) |
0 | 987 |
self.Inputs.append(connector) |
988 |
self.MoveConnector(connector, SFC_DEFAULT_SEQUENCE_INTERVAL) |
|
989 |
||
990 |
# Remove a branch from the divergence |
|
991 |
def RemoveBranch(self, connector): |
|
992 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
993 |
if connector in self.Outputs and len(self.Outputs) > 2: |
0 | 994 |
self.Outputs.remove(connector) |
995 |
self.MoveConnector(self.Outputs[0], 0) |
|
996 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
997 |
if connector in self.Inputs and len(self.Inputs) > 2: |
0 | 998 |
self.Inputs.remove(connector) |
999 |
self.MoveConnector(self.Inputs[0], 0) |
|
1000 |
||
80 | 1001 |
# Remove the handled branch from the divergence |
1002 |
def RemoveHandledBranch(self): |
|
1003 |
handle_type, handle = self.Handle |
|
1004 |
if handle_type == HANDLE_CONNECTOR: |
|
1005 |
handle.UnConnect(delete=True) |
|
1006 |
self.RemoveBranch(handle) |
|
1007 |
||
0 | 1008 |
# Return the number of branches for the divergence |
1009 |
def GetBranchNumber(self): |
|
1010 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
1011 |
return len(self.Outputs) |
|
1012 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1013 |
return len(self.Inputs) |
|
1014 |
||
1015 |
# Returns if the point given is in the bounding box |
|
1016 |
def HitTest(self, pt): |
|
1017 |
rect = self.BoundingBox |
|
1018 |
return rect.InsideXY(pt.x, pt.y) or self.TestConnector(pt, False) != None |
|
1019 |
||
1020 |
# Refresh the divergence bounding box |
|
1021 |
def RefreshBoundingBox(self): |
|
1022 |
if self.Type in [SELECTION_DIVERGENCE, SELECTION_CONVERGENCE]: |
|
145 | 1023 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, |
1024 |
self.Size[0] + 1, self.Size[1] + 1) |
|
0 | 1025 |
elif self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
145 | 1026 |
self.BoundingBox = wx.Rect(self.Pos.x - SFC_SIMULTANEOUS_SEQUENCE_EXTRA, self.Pos.y, |
1027 |
self.Size[0] + 2 * SFC_SIMULTANEOUS_SEQUENCE_EXTRA + 1, self.Size[1] + 1) |
|
0 | 1028 |
|
1029 |
# Refresh the position of wires connected to divergence |
|
1030 |
def RefreshConnected(self, exclude = []): |
|
1031 |
for input in self.Inputs: |
|
1032 |
input.MoveConnected(exclude) |
|
1033 |
for output in self.Outputs: |
|
1034 |
output.MoveConnected(exclude) |
|
1035 |
||
1036 |
# Moves the divergence connector given |
|
1037 |
def MoveConnector(self, connector, movex): |
|
1038 |
position = connector.GetRelPosition() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1039 |
connector.SetPosition(wx.Point(position.x + movex, position.y)) |
0 | 1040 |
minx = self.Size[0] |
1041 |
maxx = 0 |
|
1042 |
for input in self.Inputs: |
|
1043 |
input_pos = input.GetRelPosition() |
|
1044 |
minx = min(minx, input_pos.x) |
|
1045 |
maxx = max(maxx, input_pos.x) |
|
1046 |
for output in self.Outputs: |
|
1047 |
output_pos = output.GetRelPosition() |
|
1048 |
minx = min(minx, output_pos.x) |
|
1049 |
maxx = max(maxx, output_pos.x) |
|
1050 |
if minx != 0: |
|
1051 |
for input in self.Inputs: |
|
1052 |
input_pos = input.GetRelPosition() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1053 |
input.SetPosition(wx.Point(input_pos.x - minx, input_pos.y)) |
0 | 1054 |
for output in self.Outputs: |
1055 |
output_pos = output.GetRelPosition() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1056 |
output.SetPosition(wx.Point(output_pos.x - minx, output_pos.y)) |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1057 |
self.Inputs.sort(lambda x, y: x.Pos.x.__cmp__(y.Pos.x)) |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1058 |
self.Outputs.sort(lambda x, y: x.Pos.x.__cmp__(y.Pos.x)) |
0 | 1059 |
self.Pos.x += minx |
1060 |
self.Size[0] = maxx - minx |
|
1061 |
connector.MoveConnected() |
|
1062 |
self.RefreshBoundingBox() |
|
1063 |
||
1064 |
# Returns the divergence connector that starts with the point given if it exists |
|
27 | 1065 |
def GetConnector(self, position, name = None): |
1066 |
# if a name is given |
|
1067 |
if name: |
|
1068 |
# Test each input and output connector |
|
1069 |
for input in self.Inputs: |
|
1070 |
if name == input.GetName(): |
|
1071 |
return input |
|
1072 |
for output in self.Outputs: |
|
1073 |
if name == output.GetName(): |
|
1074 |
return output |
|
0 | 1075 |
# Test input connector |
1076 |
for input in self.Inputs: |
|
1077 |
input_pos = input.GetPosition(False) |
|
1078 |
if position.x == input_pos.x and position.y == input_pos.y: |
|
1079 |
return input |
|
1080 |
# Test output connector |
|
1081 |
for output in self.Outputs: |
|
1082 |
output_pos = output.GetPosition(False) |
|
1083 |
if position.x == output_pos.x and position.y == output_pos.y: |
|
1084 |
return output |
|
1085 |
return None |
|
1086 |
||
1087 |
# Returns input and output divergence connectors |
|
1088 |
def GetConnectors(self): |
|
1089 |
return {"inputs":self.Inputs,"outputs":self.Outputs} |
|
1090 |
||
1091 |
# Test if point given is on divergence input or output connector |
|
1092 |
def TestConnector(self, pt, exclude=True): |
|
1093 |
# Test input connector |
|
1094 |
for input in self.Inputs: |
|
1095 |
if input.TestPoint(pt, exclude): |
|
1096 |
return input |
|
1097 |
# Test output connector |
|
1098 |
for output in self.Outputs: |
|
1099 |
if output.TestPoint(pt, exclude): |
|
1100 |
return output |
|
1101 |
return None |
|
1102 |
||
1103 |
# Changes the divergence size |
|
1104 |
def SetSize(self, width, height): |
|
199 | 1105 |
height = self.GetMinSize()[1] |
0 | 1106 |
for i, input in enumerate(self.Inputs): |
1107 |
position = input.GetRelPosition() |
|
1108 |
if self.RealConnectors: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1109 |
input.SetPosition(wx.Point(int(round(self.RealConnectors["Inputs"][i] * width)), 0)) |
0 | 1110 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1111 |
input.SetPosition(wx.Point(int(round(float(position.x)*float(width)/float(self.Size[0]))), 0)) |
0 | 1112 |
input.MoveConnected() |
1113 |
for i, output in enumerate(self.Outputs): |
|
1114 |
position = output.GetRelPosition() |
|
1115 |
if self.RealConnectors: |
|
146 | 1116 |
output.SetPosition(wx.Point(int(round(self.RealConnectors["Outputs"][i] * width)), height)) |
0 | 1117 |
else: |
146 | 1118 |
output.SetPosition(wx.Point(int(round(float(position.x)*float(width)/float(self.Size[0]))), height)) |
0 | 1119 |
output.MoveConnected() |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1120 |
self.Size = wx.Size(width, height) |
0 | 1121 |
self.RefreshBoundingBox() |
1122 |
||
1123 |
# Returns the divergence minimum size |
|
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1124 |
def GetMinSize(self, default=False): |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1125 |
width = 0 |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1126 |
if default: |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1127 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1128 |
width = (len(self.Outputs) - 1) * SFC_DEFAULT_SEQUENCE_INTERVAL |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1129 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1130 |
width = (len(self.Inputs) - 1) * SFC_DEFAULT_SEQUENCE_INTERVAL |
27 | 1131 |
if self.Type in [SELECTION_DIVERGENCE, SELECTION_CONVERGENCE]: |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1132 |
return width, 1 |
27 | 1133 |
elif self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1134 |
return width, 3 |
27 | 1135 |
return 0, 0 |
0 | 1136 |
|
1137 |
# Refresh the position of the block connected to connector |
|
1138 |
def RefreshConnectedPosition(self, connector): |
|
1139 |
wires = connector.GetWires() |
|
1140 |
if len(wires) != 1: |
|
1141 |
return |
|
1142 |
current_pos = connector.GetPosition(False) |
|
145 | 1143 |
next = wires[0][0].GetOtherConnected(connector) |
0 | 1144 |
next_pos = next.GetPosition(False) |
1145 |
diffx = current_pos.x - next_pos.x |
|
1146 |
next_block = next.GetParentBlock() |
|
1147 |
if isinstance(next_block, SFC_Divergence): |
|
1148 |
next_block.MoveConnector(next, diffx) |
|
1149 |
else: |
|
1150 |
next_block.Move(diffx, 0) |
|
1151 |
if connector in self.Inputs: |
|
1152 |
next_block.RefreshInputPosition() |
|
1153 |
else: |
|
1154 |
next_block.RefreshOutputPosition() |
|
27 | 1155 |
|
0 | 1156 |
# Refresh the position of this divergence |
1157 |
def RefreshPosition(self): |
|
1158 |
y = 0 |
|
1159 |
for input in self.Inputs: |
|
1160 |
wires = input.GetWires() |
|
1161 |
if len(wires) != 1: |
|
1162 |
return |
|
145 | 1163 |
previous = wires[0][0].GetOtherConnected(input) |
0 | 1164 |
previous_pos = previous.GetPosition(False) |
1165 |
y = max(y, previous_pos.y + GetWireSize(previous.GetParentBlock())) |
|
1166 |
diffy = y - self.Pos.y |
|
1167 |
if diffy != 0: |
|
1168 |
self.Move(0, diffy, self.Parent.Wires) |
|
1169 |
self.RefreshOutputPosition((0, diffy)) |
|
1170 |
for input in self.Inputs: |
|
1171 |
input.MoveConnected() |
|
1172 |
||
1173 |
# Align output element with this divergence |
|
1174 |
def RefreshOutputPosition(self, move = None): |
|
1175 |
if move: |
|
1176 |
for output_connector in self.Outputs: |
|
1177 |
wires = output_connector.GetWires() |
|
1178 |
if len(wires) != 1: |
|
1179 |
return |
|
1180 |
current_pos = output_connector.GetPosition(False) |
|
145 | 1181 |
output = wires[0][0].GetOtherConnected(self.Output) |
0 | 1182 |
output_pos = output.GetPosition(False) |
1183 |
diffx = current_pos.x - output_pos.x |
|
1184 |
output_block = output.GetParentBlock() |
|
1185 |
if isinstance(output_block, SFC_Step): |
|
1186 |
output_block.MoveActionBlock(move) |
|
1187 |
wires[0][0].Move(move[0], move[1], True) |
|
1188 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
|
1189 |
output_block.Move(move[0], move[1], self.Parent.Wires) |
|
1190 |
output_block.RefreshOutputPosition(move) |
|
1191 |
||
1192 |
# Method called when a LeftDown event have been generated |
|
27 | 1193 |
def OnLeftDown(self, event, dc, scaling): |
145 | 1194 |
self.RealConnectors = {"Inputs":[],"Outputs":[]} |
1195 |
for input in self.Inputs: |
|
1196 |
position = input.GetRelPosition() |
|
1197 |
self.RealConnectors["Inputs"].append(float(position.x)/float(self.Size[0])) |
|
1198 |
for output in self.Outputs: |
|
1199 |
position = output.GetRelPosition() |
|
1200 |
self.RealConnectors["Outputs"].append(float(position.x)/float(self.Size[0])) |
|
1201 |
Graphic_Element.OnLeftDown(self, event, dc, scaling) |
|
1202 |
||
1203 |
# Method called when a LeftUp event have been generated |
|
1204 |
def OnLeftUp(self, event, dc, scaling): |
|
1205 |
Graphic_Element.OnLeftUp(self, event, dc, scaling) |
|
1206 |
self.RealConnectors = None |
|
1207 |
||
1208 |
# Method called when a RightDown event have been generated |
|
1209 |
def OnRightDown(self, event, dc, scaling): |
|
27 | 1210 |
pos = GetScaledEventPosition(event, dc, scaling) |
0 | 1211 |
# Test if a connector have been handled |
1212 |
connector = self.TestConnector(pos, False) |
|
1213 |
if connector: |
|
1214 |
self.Handle = (HANDLE_CONNECTOR, connector) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1215 |
self.Parent.SetCursor(wx.StockCursor(wx.CURSOR_HAND)) |
0 | 1216 |
self.Selected = False |
1217 |
# Initializes the last position |
|
27 | 1218 |
self.oldPos = GetScaledEventPosition(event, dc, scaling) |
0 | 1219 |
else: |
145 | 1220 |
Graphic_Element.OnRightDown(self, event, dc, scaling) |
1221 |
||
1222 |
# Method called when a RightUp event have been generated |
|
1223 |
def OnRightUp(self, event, dc, scaling): |
|
0 | 1224 |
handle_type, handle = self.Handle |
204
5eb48c97f6e5
Bug with RightUp on SFC_Divergence connectors without movement fixed
lbessard
parents:
199
diff
changeset
|
1225 |
if handle_type == HANDLE_CONNECTOR and self.Dragging and self.oldPos: |
0 | 1226 |
wires = handle.GetWires() |
1227 |
if len(wires) != 1: |
|
1228 |
return |
|
145 | 1229 |
block = wires[0][0].GetOtherConnected(handle).GetParentBlock() |
0 | 1230 |
block.RefreshModel(False) |
1231 |
if not isinstance(block, SFC_Divergence): |
|
1232 |
if handle in self.Inputs: |
|
1233 |
block.RefreshInputModel() |
|
1234 |
else: |
|
1235 |
block.RefreshOutputModel() |
|
145 | 1236 |
Graphic_Element.OnRightUp(self, event, dc, scaling) |
1237 |
else: |
|
1238 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
1239 |
# Popup the menu with special items for a block and a connector if one is handled |
|
1240 |
connector = self.TestConnector(pos, False) |
|
1241 |
if connector: |
|
1242 |
self.Handle = (HANDLE_CONNECTOR, connector) |
|
1243 |
self.Parent.PopupDivergenceMenu(True) |
|
1244 |
else: |
|
1245 |
# Popup the divergence menu without delete branch |
|
1246 |
self.Parent.PopupDivergenceMenu(False) |
|
0 | 1247 |
|
1248 |
# Refreshes the divergence state according to move defined and handle selected |
|
165 | 1249 |
def ProcessDragging(self, movex, movey, centered, scaling): |
0 | 1250 |
handle_type, handle = self.Handle |
1251 |
# A connector has been handled |
|
1252 |
if handle_type == HANDLE_CONNECTOR: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1253 |
movex = max(-self.BoundingBox.x, movex) |
145 | 1254 |
if scaling is not None: |
1255 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
0 | 1256 |
self.MoveConnector(handle, movex) |
27 | 1257 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1258 |
self.RefreshConnectedPosition(handle) |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1259 |
return movex, 0 |
27 | 1260 |
elif self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
165 | 1261 |
return Graphic_Element.ProcessDragging(self, movex, movey, centered, scaling) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1262 |
return 0, 0 |
0 | 1263 |
|
1264 |
# Refresh output element model |
|
1265 |
def RefreshOutputModel(self, move=False): |
|
27 | 1266 |
if move and self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
0 | 1267 |
for output in self.Outputs: |
1268 |
wires = output.GetWires() |
|
1269 |
if len(wires) != 1: |
|
1270 |
return |
|
145 | 1271 |
output_block = wires[0][0].GetOtherConnected(output).GetParentBlock() |
0 | 1272 |
output_block.RefreshModel(False) |
1273 |
if not isinstance(output_block, SFC_Divergence) or move: |
|
1274 |
output_block.RefreshOutputModel(move) |
|
1275 |
||
1276 |
# Refreshes the divergence model |
|
1277 |
def RefreshModel(self, move=True): |
|
1278 |
self.Parent.RefreshDivergenceModel(self) |
|
1279 |
# If divergence has moved, refresh the model of wires connected to outputs |
|
1280 |
if move: |
|
27 | 1281 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1282 |
self.RefreshOutputModel() |
|
1283 |
else: |
|
1284 |
for output in self.Outputs: |
|
1285 |
output.RefreshWires() |
|
0 | 1286 |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1287 |
# 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
|
1288 |
def DrawHighlightment(self, dc): |
144 | 1289 |
dc.SetPen(wx.Pen(HIGHLIGHTCOLOR)) |
1290 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
|
1291 |
dc.SetLogicalFunction(wx.AND) |
|
1292 |
# Draw two rectangles for representing the contact |
|
1293 |
posx = self.Pos.x - 2 |
|
1294 |
width = self.Size[0] + 5 |
|
1295 |
if self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1296 |
posx -= SFC_SIMULTANEOUS_SEQUENCE_EXTRA |
|
1297 |
width += SFC_SIMULTANEOUS_SEQUENCE_EXTRA * 2 |
|
1298 |
dc.DrawRectangle(posx, self.Pos.y - 2, width, self.Size[1] + 5) |
|
1299 |
dc.SetLogicalFunction(wx.COPY) |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1300 |
|
0 | 1301 |
# Draws divergence |
1302 |
def Draw(self, dc): |
|
144 | 1303 |
Graphic_Element.Draw(self, dc) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1304 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1305 |
dc.SetBrush(wx.BLACK_BRUSH) |
0 | 1306 |
# Draw plain rectangle for representing the divergence |
1307 |
if self.Type in [SELECTION_DIVERGENCE, SELECTION_CONVERGENCE]: |
|
1308 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
|
1309 |
elif self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1310 |
dc.DrawLine(self.Pos.x - SFC_SIMULTANEOUS_SEQUENCE_EXTRA, self.Pos.y, |
|
1311 |
self.Pos.x + self.Size[0] + SFC_SIMULTANEOUS_SEQUENCE_EXTRA + 1, self.Pos.y) |
|
27 | 1312 |
dc.DrawLine(self.Pos.x - SFC_SIMULTANEOUS_SEQUENCE_EXTRA, self.Pos.y + self.Size[1], |
1313 |
self.Pos.x + self.Size[0] + SFC_SIMULTANEOUS_SEQUENCE_EXTRA + 1, self.Pos.y + self.Size[1]) |
|
0 | 1314 |
# Draw inputs and outputs connectors |
1315 |
for input in self.Inputs: |
|
1316 |
input.Draw(dc) |
|
1317 |
for output in self.Outputs: |
|
1318 |
output.Draw(dc) |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1319 |
|
0 | 1320 |
|
1321 |
#------------------------------------------------------------------------------- |
|
1322 |
# Sequencial Function Chart Jump to Step |
|
1323 |
#------------------------------------------------------------------------------- |
|
1324 |
||
1325 |
""" |
|
1326 |
Class that implements the graphic representation of a jump to step |
|
1327 |
""" |
|
1328 |
||
1329 |
class SFC_Jump(Graphic_Element): |
|
1330 |
||
1331 |
# Create a new jump |
|
1332 |
def __init__(self, parent, target, id = None): |
|
1333 |
Graphic_Element.__init__(self, parent) |
|
213 | 1334 |
self.SetTarget(target) |
0 | 1335 |
self.Id = id |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1336 |
self.Size = wx.Size(SFC_JUMP_SIZE[0], SFC_JUMP_SIZE[1]) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1337 |
self.Errors = {} |
0 | 1338 |
# Create an input and output connector |
145 | 1339 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH, onlyone = True) |
0 | 1340 |
|
1341 |
# Destructor |
|
1342 |
def __del__(self): |
|
27 | 1343 |
self.Input = None |
0 | 1344 |
|
112 | 1345 |
# Make a clone of this SFC_Jump |
162 | 1346 |
def Clone(self, parent, id = None, pos = None): |
1347 |
jump = SFC_Jump(parent, self.Target, id) |
|
112 | 1348 |
jump.SetSize(self.Size[0], self.Size[1]) |
1349 |
if pos is not None: |
|
1350 |
jump.SetPosition(pos.x, pos.y) |
|
1351 |
jump.Input = self.Input.Clone(jump) |
|
1352 |
return jump |
|
1353 |
||
144 | 1354 |
# Returns the RedrawRect |
1355 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
1356 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
1357 |
rect = rect.Union(self.Input.GetRedrawRect(movex, movey)) |
|
1358 |
if movex != 0 or movey != 0: |
|
1359 |
if self.Input.IsConnected(): |
|
1360 |
rect = rect.Union(self.Input.GetConnectedRedrawRect(movex, movey)) |
|
1361 |
return rect |
|
1362 |
||
0 | 1363 |
# Forbids to change the jump size |
1364 |
def SetSize(self, width, height): |
|
27 | 1365 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
1366 |
Graphic_Element.SetSize(self, width, height) |
|
0 | 1367 |
|
1368 |
# Forbids to resize jump |
|
1369 |
def Resize(self, x, y, width, height): |
|
27 | 1370 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
1371 |
Graphic_Element.Resize(self, x, y, width, height) |
|
0 | 1372 |
|
1373 |
# Delete this jump by calling the appropriate method |
|
1374 |
def Delete(self): |
|
1375 |
self.Parent.DeleteJump(self) |
|
1376 |
||
1377 |
# Unconnect input |
|
1378 |
def Clean(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1379 |
self.Input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 1380 |
|
213 | 1381 |
# Refresh the size of text for target |
1382 |
def RefreshTargetSize(self): |
|
1383 |
self.TargetSize = self.Parent.GetTextExtent(self.Target) |
|
1384 |
||
0 | 1385 |
# Refresh the jump bounding box |
1386 |
def RefreshBoundingBox(self): |
|
165 | 1387 |
text_width, text_height = self.Parent.GetTextExtent(self.Target) |
0 | 1388 |
# Calculate the bounding box size |
1389 |
bbx_width = self.Size[0] + 2 + text_width |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1390 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y - CONNECTOR_SIZE, |
0 | 1391 |
bbx_width + 1, self.Size[1] + CONNECTOR_SIZE + 1) |
1392 |
||
1393 |
# Returns the connector connected to input |
|
1394 |
def GetPreviousConnector(self): |
|
27 | 1395 |
wires = self.Input.GetWires() |
1396 |
if len(wires) == 1: |
|
145 | 1397 |
return wires[0][0].GetOtherConnected(self.Input) |
0 | 1398 |
return None |
1399 |
||
27 | 1400 |
# Refresh the element connectors position |
1401 |
def RefreshConnectors(self): |
|
145 | 1402 |
scaling = self.Parent.GetScaling() |
1403 |
horizontal_pos = self.Size[0] / 2 |
|
1404 |
if scaling is not None: |
|
1405 |
horizontal_pos = round(float(self.Pos.x + horizontal_pos) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
1406 |
self.Input.SetPosition(wx.Point(horizontal_pos, 0)) |
|
27 | 1407 |
self.RefreshConnected() |
1408 |
||
0 | 1409 |
# Refresh the position of wires connected to jump |
1410 |
def RefreshConnected(self, exclude = []): |
|
1411 |
if self.Input: |
|
1412 |
self.Input.MoveConnected(exclude) |
|
1413 |
||
1414 |
# Returns input jump connector |
|
27 | 1415 |
def GetConnector(self, position = None, name = None): |
0 | 1416 |
return self.Input |
1417 |
||
1418 |
# Test if point given is on jump input connector |
|
1419 |
def TestConnector(self, pt, exclude = True): |
|
1420 |
# Test input connector |
|
1421 |
if self.Input and self.Input.TestPoint(pt, exclude): |
|
1422 |
return self.Input |
|
1423 |
return None |
|
1424 |
||
1425 |
# Changes the jump target |
|
1426 |
def SetTarget(self, target): |
|
1427 |
self.Target = target |
|
213 | 1428 |
self.RefreshTargetSize() |
0 | 1429 |
self.RefreshBoundingBox() |
1430 |
||
1431 |
# Returns the jump target |
|
1432 |
def GetTarget(self): |
|
1433 |
return self.Target |
|
1434 |
||
1435 |
# Returns the jump minimum size |
|
1436 |
def GetMinSize(self): |
|
1437 |
return SFC_JUMP_SIZE |
|
1438 |
||
1439 |
# Align input element with this jump |
|
1440 |
def RefreshInputPosition(self): |
|
1441 |
if self.Input: |
|
1442 |
current_pos = self.Input.GetPosition(False) |
|
1443 |
input = self.GetPreviousConnector() |
|
1444 |
if input: |
|
1445 |
input_pos = input.GetPosition(False) |
|
1446 |
diffx = current_pos.x - input_pos.x |
|
1447 |
input_block = input.GetParentBlock() |
|
1448 |
if isinstance(input_block, SFC_Divergence): |
|
1449 |
input_block.MoveConnector(input, diffx) |
|
1450 |
else: |
|
1451 |
if isinstance(input_block, SFC_Step): |
|
1452 |
input_block.MoveActionBlock((diffx, 0)) |
|
1453 |
input_block.Move(diffx, 0) |
|
1454 |
input_block.RefreshInputPosition() |
|
1455 |
||
1456 |
# Can't align output element, because there is no output |
|
1457 |
def RefreshOutputPosition(self, move = None): |
|
1458 |
pass |
|
1459 |
||
1460 |
# Method called when a LeftDClick event have been generated |
|
27 | 1461 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 1462 |
# Edit the jump properties |
1463 |
self.Parent.EditJumpContent(self) |
|
1464 |
||
1465 |
# Method called when a RightUp event have been generated |
|
27 | 1466 |
def OnRightUp(self, event, dc, scaling): |
0 | 1467 |
# Popup the default menu |
1468 |
self.Parent.PopupDefaultMenu() |
|
1469 |
||
1470 |
# Refreshes the jump state according to move defined and handle selected |
|
165 | 1471 |
def ProcessDragging(self, movex, movey, centered, scaling): |
27 | 1472 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1473 |
movex = max(-self.BoundingBox.x, movex) |
145 | 1474 |
if scaling is not None: |
1475 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
27 | 1476 |
self.Move(movex, 0) |
1477 |
self.RefreshInputPosition() |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1478 |
return movex, 0 |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1479 |
else: |
175 | 1480 |
return Graphic_Element.ProcessDragging(self, movex, movey, centered, scaling, width_fac = 2) |
0 | 1481 |
|
1482 |
# Refresh input element model |
|
1483 |
def RefreshInputModel(self): |
|
27 | 1484 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1485 |
input = self.GetPreviousConnector() |
|
1486 |
if input: |
|
1487 |
input_block = input.GetParentBlock() |
|
1488 |
input_block.RefreshModel(False) |
|
1489 |
if not isinstance(input_block, SFC_Divergence): |
|
1490 |
input_block.RefreshInputModel() |
|
0 | 1491 |
|
1492 |
# Refresh output element model |
|
1493 |
def RefreshOutputModel(self, move=False): |
|
1494 |
pass |
|
1495 |
||
1496 |
# Refreshes the jump model |
|
1497 |
def RefreshModel(self, move=True): |
|
1498 |
self.Parent.RefreshJumpModel(self) |
|
1499 |
if move: |
|
27 | 1500 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1501 |
self.RefreshInputModel() |
|
0 | 1502 |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1503 |
def AddError(self, infos, start, end): |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1504 |
if infos[0] == "target" and start[0] == 0 and end[0] == 0: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1505 |
self.Errors[infos[0]] = (start[1], end[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1506 |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1507 |
# 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
|
1508 |
def DrawHighlightment(self, dc): |
144 | 1509 |
dc.SetPen(wx.Pen(HIGHLIGHTCOLOR)) |
1510 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
|
1511 |
dc.SetLogicalFunction(wx.AND) |
|
1512 |
points = [wx.Point(self.Pos.x - 3, self.Pos.y - 2), |
|
1513 |
wx.Point(self.Pos.x + self.Size[0] + 4, self.Pos.y - 2), |
|
1514 |
wx.Point(self.Pos.x + self.Size[0] / 2, self.Pos.y + self.Size[1] + 4)] |
|
1515 |
dc.DrawPolygon(points) |
|
1516 |
dc.SetLogicalFunction(wx.COPY) |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1517 |
|
0 | 1518 |
# Draws divergence |
1519 |
def Draw(self, dc): |
|
144 | 1520 |
Graphic_Element.Draw(self, dc) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1521 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1522 |
dc.SetBrush(wx.BLACK_BRUSH) |
213 | 1523 |
|
1524 |
if getattr(dc, "printing", False): |
|
1525 |
target_size = dc.GetTextExtent(self.Target) |
|
1526 |
else: |
|
1527 |
target_size = self.TargetSize |
|
1528 |
||
0 | 1529 |
# Draw plain rectangle for representing the divergence |
1530 |
dc.DrawLine(self.Pos.x + self.Size[0] / 2, self.Pos.y, self.Pos.x + self.Size[0] / 2, self.Pos.y + self.Size[1]) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1531 |
points = [wx.Point(self.Pos.x, self.Pos.y), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1532 |
wx.Point(self.Pos.x + self.Size[0] / 2, self.Pos.y + self.Size[1] / 3), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1533 |
wx.Point(self.Pos.x + self.Size[0], self.Pos.y), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1534 |
wx.Point(self.Pos.x + self.Size[0] / 2, self.Pos.y + self.Size[1])] |
0 | 1535 |
dc.DrawPolygon(points) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1536 |
target_pos = (self.Pos.x + self.Size[0] + 2, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1537 |
self.Pos.y + (self.Size[1] - target_size[1]) / 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1538 |
dc.DrawText(self.Target, target_pos[0], target_pos[1]) |
0 | 1539 |
# Draw input connector |
1540 |
if self.Input: |
|
1541 |
self.Input.Draw(dc) |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1542 |
if "target" in self.Errors: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1543 |
HighlightErrorZone(dc, target_pos[0], target_pos[1], target_size[0], target_size[1]) |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1544 |
|
0 | 1545 |
|
1546 |
#------------------------------------------------------------------------------- |
|
1547 |
# Sequencial Function Chart Action Block |
|
1548 |
#------------------------------------------------------------------------------- |
|
1549 |
||
1550 |
""" |
|
1551 |
Class that implements the graphic representation of an action block |
|
1552 |
""" |
|
1553 |
||
1554 |
class SFC_ActionBlock(Graphic_Element): |
|
1555 |
||
1556 |
# Create a new action block |
|
1557 |
def __init__(self, parent, actions = [], id = None): |
|
1558 |
Graphic_Element.__init__(self, parent) |
|
1559 |
self.Id = id |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1560 |
self.Size = wx.Size(SFC_ACTION_MIN_SIZE[0], SFC_ACTION_MIN_SIZE[1]) |
108 | 1561 |
self.MinSize = wx.Size(SFC_ACTION_MIN_SIZE[0], SFC_ACTION_MIN_SIZE[1]) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1562 |
self.Errors = {} |
0 | 1563 |
# Create an input and output connector |
145 | 1564 |
self.Input = Connector(self, "", None, wx.Point(0, SFC_ACTION_MIN_SIZE[1] / 2), WEST, onlyone = True) |
0 | 1565 |
self.SetActions(actions) |
1566 |
||
1567 |
# Destructor |
|
1568 |
def __del__(self): |
|
1569 |
self.Input = None |
|
1570 |
||
112 | 1571 |
# Make a clone of this SFC_ActionBlock |
162 | 1572 |
def Clone(self, parent, id = None, pos = None): |
112 | 1573 |
actions = [action.copy() for action in self.Actions] |
162 | 1574 |
action_block = SFC_ActionBlock(parent, actions, id) |
112 | 1575 |
action_block.SetSize(self.Size[0], self.Size[1]) |
1576 |
if pos is not None: |
|
1577 |
action_block.SetPosition(pos.x, pos.y) |
|
1578 |
action_block.Input = self.Input.Clone(action_block) |
|
144 | 1579 |
return action_block |
1580 |
||
1581 |
# Returns the RedrawRect |
|
1582 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
1583 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
1584 |
rect = rect.Union(self.Input.GetRedrawRect(movex, movey)) |
|
1585 |
if movex != 0 or movey != 0: |
|
1586 |
if self.Input.IsConnected(): |
|
1587 |
rect = rect.Union(self.Input.GetConnectedRedrawRect(movex, movey)) |
|
1588 |
return rect |
|
112 | 1589 |
|
0 | 1590 |
# Returns the number of action lines |
1591 |
def GetLineNumber(self): |
|
1592 |
return len(self.Actions) |
|
1593 |
||
27 | 1594 |
def GetLineSize(self): |
108 | 1595 |
if len(self.Actions) > 0: |
27 | 1596 |
return self.Size[1] / len(self.Actions) |
1597 |
else: |
|
1598 |
return SFC_ACTION_MIN_SIZE[1] |
|
1599 |
||
0 | 1600 |
# Forbids to resize the action block |
1601 |
def Resize(self, x, y, width, height): |
|
27 | 1602 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1603 |
if x == 0: |
|
1604 |
self.SetSize(width, self.Size[1]) |
|
1605 |
else: |
|
1606 |
Graphic_Element.Resize(self, x, y, width, height) |
|
0 | 1607 |
|
1608 |
# Delete this action block by calling the appropriate method |
|
1609 |
def Delete(self): |
|
1610 |
self.Parent.DeleteActionBlock(self) |
|
1611 |
||
1612 |
# Unconnect input and output |
|
1613 |
def Clean(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1614 |
self.Input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 1615 |
|
1616 |
# Refresh the action block bounding box |
|
1617 |
def RefreshBoundingBox(self): |
|
144 | 1618 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
0 | 1619 |
|
1620 |
# Refresh the position of wires connected to action block |
|
1621 |
def RefreshConnected(self, exclude = []): |
|
1622 |
self.Input.MoveConnected(exclude) |
|
1623 |
||
1624 |
# Returns input action block connector |
|
27 | 1625 |
def GetConnector(self, position = None, name = None): |
0 | 1626 |
return self.Input |
1627 |
||
1628 |
# Test if point given is on action block input connector |
|
1629 |
def TestConnector(self, pt, exclude = True): |
|
1630 |
# Test input connector |
|
1631 |
if self.Input.TestPoint(pt, exclude): |
|
1632 |
return self.Input |
|
1633 |
return None |
|
1634 |
||
145 | 1635 |
# Refresh the element connectors position |
1636 |
def RefreshConnectors(self): |
|
1637 |
scaling = self.Parent.GetScaling() |
|
1638 |
vertical_pos = SFC_ACTION_MIN_SIZE[1] / 2 |
|
1639 |
if scaling is not None: |
|
1640 |
vertical_pos = round(float(self.Pos.y + vertical_pos) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
1641 |
self.Input.SetPosition(wx.Point(0, vertical_pos)) |
|
1642 |
self.RefreshConnected() |
|
1643 |
||
0 | 1644 |
# Changes the action block actions |
1645 |
def SetActions(self, actions): |
|
1646 |
self.Actions = actions |
|
1647 |
self.ColSize = [0, 0, 0] |
|
108 | 1648 |
min_height = 0 |
0 | 1649 |
for action in self.Actions: |
165 | 1650 |
width, height = self.Parent.GetTextExtent(action["qualifier"]) |
0 | 1651 |
self.ColSize[0] = max(self.ColSize[0], width + 10) |
108 | 1652 |
row_height = height |
0 | 1653 |
if "duration" in action: |
165 | 1654 |
width, height = self.Parent.GetTextExtent(action["duration"]) |
108 | 1655 |
row_height = max(row_height, height) |
0 | 1656 |
self.ColSize[0] = max(self.ColSize[0], width + 10) |
165 | 1657 |
width, height = self.Parent.GetTextExtent(action["value"]) |
108 | 1658 |
row_height = max(row_height, height) |
0 | 1659 |
self.ColSize[1] = max(self.ColSize[1], width + 10) |
1660 |
if "indicator" in action and action["indicator"] != "": |
|
165 | 1661 |
width, height = self.Parent.GetTextExtent(action["indicator"]) |
108 | 1662 |
row_height = max(row_height, height) |
0 | 1663 |
self.ColSize[2] = max(self.ColSize[2], width + 10) |
108 | 1664 |
min_height += row_height + 5 |
27 | 1665 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
108 | 1666 |
self.Size = wx.Size(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], max(min_height, SFC_ACTION_MIN_SIZE[1], self.Size[1])) |
1667 |
self.MinSize = max(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], |
|
1668 |
SFC_ACTION_MIN_SIZE[0]), max(SFC_ACTION_MIN_SIZE[1], min_height) |
|
1669 |
self.RefreshBoundingBox() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1670 |
else: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1671 |
self.Size = wx.Size(max(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], |
27 | 1672 |
SFC_ACTION_MIN_SIZE[0]), len(self.Actions) * SFC_ACTION_MIN_SIZE[1]) |
108 | 1673 |
self.MinSize = max(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], |
1674 |
SFC_ACTION_MIN_SIZE[0]), len(self.Actions) * SFC_ACTION_MIN_SIZE[1] |
|
1675 |
self.RefreshBoundingBox() |
|
1676 |
if self.Input: |
|
1677 |
wires = self.Input.GetWires() |
|
1678 |
if len(wires) == 1: |
|
145 | 1679 |
input_block = wires[0][0].GetOtherConnected(self.Input).GetParentBlock() |
108 | 1680 |
input_block.RefreshOutputPosition() |
1681 |
input_block.RefreshOutputModel(True) |
|
0 | 1682 |
|
1683 |
# Returns the action block actions |
|
1684 |
def GetActions(self): |
|
1685 |
return self.Actions |
|
1686 |
||
1687 |
# Returns the action block minimum size |
|
1688 |
def GetMinSize(self): |
|
108 | 1689 |
return self.MinSize |
0 | 1690 |
|
1691 |
# Method called when a LeftDClick event have been generated |
|
27 | 1692 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 1693 |
# Edit the action block properties |
1694 |
self.Parent.EditActionBlockContent(self) |
|
1695 |
||
127
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
1696 |
# Method called when a RightUp event have been generated |
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
1697 |
def OnRightUp(self, event, dc, scaling): |
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
1698 |
# Popup the default menu |
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
1699 |
self.Parent.PopupDefaultMenu() |
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
1700 |
|
0 | 1701 |
# Refreshes the action block state according to move defined and handle selected |
165 | 1702 |
def ProcessDragging(self, movex, movey, centered, scaling): |
27 | 1703 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1704 |
handle_type, handle = self.Handle |
|
1705 |
if handle_type == HANDLE_MOVE: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1706 |
movex = max(-self.BoundingBox.x, movex) |
145 | 1707 |
if scaling is not None: |
1708 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
27 | 1709 |
wires = self.Input.GetWires() |
1710 |
if len(wires) == 1: |
|
145 | 1711 |
input_pos = wires[0][0].GetOtherConnected(self.Input).GetPosition(False) |
27 | 1712 |
if self.Pos.x - input_pos.x + movex >= SFC_WIRE_MIN_SIZE: |
1713 |
self.Move(movex, 0) |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1714 |
return movex, 0 |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1715 |
return 0, 0 |
27 | 1716 |
else: |
165 | 1717 |
return Graphic_Element.ProcessDragging(self, movex, movey, centered, scaling) |
1718 |
else: |
|
1719 |
return Graphic_Element.ProcessDragging(self, movex, movey, centered, scaling) |
|
27 | 1720 |
|
0 | 1721 |
|
1722 |
# Refreshes the action block model |
|
1723 |
def RefreshModel(self, move=True): |
|
1724 |
self.Parent.RefreshActionBlockModel(self) |
|
1725 |
||
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1726 |
def AddError(self, infos, start, end): |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1727 |
if infos[0] == "action" and infos[1] < len(self.Actions): |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1728 |
if infos[1] not in self.Errors: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1729 |
self.Errors[infos[1]] = {} |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1730 |
if infos[2] == "inline": |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1731 |
if infos[2] not in self.Errors[infos[1]]: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1732 |
self.Errors[infos[1]][infos[2]] = [] |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1733 |
self.Errors[infos[1]][infos[2]].append((start[1], end[1])) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1734 |
else: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1735 |
self.Errors[infos[1]][infos[2]] = (start[1], end[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1736 |
|
0 | 1737 |
# Draws divergence |
1738 |
def Draw(self, dc): |
|
144 | 1739 |
Graphic_Element.Draw(self, dc) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1740 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1741 |
dc.SetBrush(wx.WHITE_BRUSH) |
0 | 1742 |
colsize = [self.ColSize[0], self.Size[0] - self.ColSize[0] - self.ColSize[2], self.ColSize[2]] |
1743 |
# Draw plain rectangle for representing the action block |
|
1744 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
|
1745 |
dc.DrawLine(self.Pos.x + colsize[0], self.Pos.y, |
|
1746 |
self.Pos.x + colsize[0], self.Pos.y + self.Size[1]) |
|
1747 |
dc.DrawLine(self.Pos.x + colsize[0] + colsize[1], self.Pos.y, |
|
1748 |
self.Pos.x + colsize[0] + colsize[1], self.Pos.y + self.Size[1]) |
|
27 | 1749 |
line_size = self.GetLineSize() |
0 | 1750 |
for i, action in enumerate(self.Actions): |
1751 |
if i != 0: |
|
27 | 1752 |
dc.DrawLine(self.Pos.x, self.Pos.y + i * line_size, |
1753 |
self.Pos.x + self.Size[0], self.Pos.y + i * line_size) |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1754 |
qualifier_size = dc.GetTextExtent(action["qualifier"]) |
0 | 1755 |
if "duration" in action: |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1756 |
qualifier_pos = (self.Pos.x + (colsize[0] - qualifier_size[0]) / 2, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1757 |
self.Pos.y + i * line_size + line_size / 2 - qualifier_size[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1758 |
duration_size = dc.GetTextExtent(action["duration"]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1759 |
duration_pos = (self.Pos.x + (colsize[0] - duration_size[0]) / 2, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1760 |
self.Pos.y + i * line_size + line_size / 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1761 |
dc.DrawText(action["duration"], duration_pos[0], duration_pos[1]) |
0 | 1762 |
else: |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1763 |
qualifier_pos = (self.Pos.x + (colsize[0] - qualifier_size[0]) / 2, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1764 |
self.Pos.y + i * line_size + (line_size - qualifier_size[1]) / 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1765 |
dc.DrawText(action["qualifier"], qualifier_pos[0], qualifier_pos[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1766 |
content_size = dc.GetTextExtent(action["value"]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1767 |
content_pos = (self.Pos.x + colsize[0] + (colsize[1] - content_size[0]) / 2, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1768 |
self.Pos.y + i * line_size + (line_size - content_size[1]) / 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1769 |
dc.DrawText(action["value"], content_pos[0], content_pos[1]) |
0 | 1770 |
if "indicator" in action: |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1771 |
indicator_size = dc.GetTextExtent(action["indicator"]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1772 |
indicator_pos = (self.Pos.x + colsize[0] + colsize[1] + (colsize[2] - indicator_size[0]) / 2, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1773 |
self.Pos.y + i * line_size + (line_size - indicator_size[1]) / 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1774 |
dc.DrawText(action["indicator"], indicator_pos[0], indicator_pos[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1775 |
if i in self.Errors: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1776 |
if "duration" in self.Errors[i] and "duration" in action: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1777 |
HighlightErrorZone(dc, duration_pos[0], duration_pos[1], duration_size[0], duration_size[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1778 |
if "qualifier" in self.Errors[i]: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1779 |
HighlightErrorZone(dc, qualifier_pos[0], qualifier_pos[1], qualifier_size[0], qualifier_size[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1780 |
if "reference" in self.Errors[i]: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1781 |
HighlightErrorZone(dc, content_pos[0], content_pos[1], content_size[0], content_size[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1782 |
elif "inline" in self.Errors[i]: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1783 |
for start, end in self.Errors[i]["inline"]: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1784 |
offset = dc.GetTextExtent(action["value"][:start]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1785 |
size = dc.GetTextExtent(action["value"][start:end + 1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1786 |
HighlightErrorZone(dc, content_pos[0] + offset[0], content_pos[1], size[0], size[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1787 |
if "indicator" in self.Errors[i]: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1788 |
HighlightErrorZone(dc, indicator_pos[0], indicator_pos[1], indicator_size[0], indicator_size[1]) |
0 | 1789 |
# Draw input connector |
1790 |
self.Input.Draw(dc) |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1791 |