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