author | Edouard Tisserant |
Thu, 11 Jan 2018 12:48:49 +0100 | |
changeset 1898 | d2dbdeffc426 |
parent 1878 | fb73a6b6622d |
child 2587 | c67488bd8134 |
permissions | -rw-r--r-- |
814 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
3 |
||
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
4 |
# This file is part of Beremiz, a Integrated Development Environment for |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
5 |
# programming IEC 61131-3 automates supporting plcopen standard and CanFestival. |
814 | 6 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
7 |
# Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
1696
8043f32de7b8
make all dialog have non-fixed size
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
8 |
# Copyright (C) 2017: Andrey Skvortsov <andrej.skvortzov@gmail.com> |
814 | 9 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
10 |
# See COPYING file for copyrights details. |
814 | 11 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
12 |
# This program is free software; you can redistribute it and/or |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
13 |
# modify it under the terms of the GNU General Public License |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
14 |
# as published by the Free Software Foundation; either version 2 |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
15 |
# of the License, or (at your option) any later version. |
814 | 16 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
17 |
# This program is distributed in the hope that it will be useful, |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
18 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
19 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
20 |
# GNU General Public License for more details. |
814 | 21 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
22 |
# You should have received a copy of the GNU General Public License |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
23 |
# along with this program; if not, write to the Free Software |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1493
diff
changeset
|
24 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
814 | 25 |
|
1853
47a3f39bead0
fix pylint warning "(relative-import) Relative import 'Y', should be 'X.Y'"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1782
diff
changeset
|
26 |
|
47a3f39bead0
fix pylint warning "(relative-import) Relative import 'Y', should be 'X.Y'"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1782
diff
changeset
|
27 |
from __future__ import absolute_import |
814 | 28 |
import wx |
29 |
||
1246 | 30 |
from graphics.GraphicCommons import CONTACT_NORMAL, CONTACT_REVERSE, \ |
31 |
CONTACT_RISING, CONTACT_FALLING, COIL_NORMAL, COIL_REVERSE, COIL_SET, \ |
|
32 |
COIL_RESET, COIL_RISING, COIL_FALLING |
|
33 |
from graphics.LD_Objects import LD_Contact, LD_Coil |
|
1853
47a3f39bead0
fix pylint warning "(relative-import) Relative import 'Y', should be 'X.Y'"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1782
diff
changeset
|
34 |
from dialogs.BlockPreviewDialog import BlockPreviewDialog |
814 | 35 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
36 |
# ------------------------------------------------------------------------------- |
1246 | 37 |
# Set Ladder Element Parmeters Dialog |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
38 |
# ------------------------------------------------------------------------------- |
814 | 39 |
|
1246 | 40 |
|
41 |
class LDElementDialog(BlockPreviewDialog): |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
42 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
43 |
Class that implements a dialog for defining parameters of a LD contact or coil |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
44 |
graphic element |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
45 |
""" |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
46 |
|
1246 | 47 |
def __init__(self, parent, controller, tagname, type): |
48 |
""" |
|
49 |
Constructor |
|
50 |
@param parent: Parent wx.Window of dialog for modal |
|
51 |
@param controller: Reference to project controller |
|
52 |
@param tagname: Tagname of project POU edited |
|
53 |
@param type: Type of LD element ('contact or 'coil') |
|
54 |
""" |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
55 |
BlockPreviewDialog.__init__(self, parent, controller, tagname, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
56 |
title=(_("Edit Contact Values") |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
57 |
if type == "contact" |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
58 |
else _("Edit Coil Values"))) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
59 |
|
1250
7e6de17c687a
Rewrite SFCStepDialog and factorize code for creating common dialog sizers
Laurent Bessard
parents:
1247
diff
changeset
|
60 |
# Init common sizers |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
61 |
self._init_sizers(2, 0, (7 if type == "contact" else 9), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
62 |
None, 2, 1) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
63 |
|
1246 | 64 |
# Create label for LD element modifier |
814 | 65 |
modifier_label = wx.StaticText(self, label=_('Modifier:')) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
66 |
self.LeftGridSizer.AddWindow(modifier_label, border=5, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
67 |
flag=wx.GROW | wx.BOTTOM) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
68 |
|
1246 | 69 |
# Create radio buttons for selecting LD element modifier |
70 |
self.ModifierRadioButtons = {} |
|
71 |
first = True |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
72 |
element_modifiers = ([CONTACT_NORMAL, CONTACT_REVERSE, |
1246 | 73 |
CONTACT_RISING, CONTACT_FALLING] |
74 |
if type == "contact" |
|
75 |
else [COIL_NORMAL, COIL_REVERSE, COIL_SET, |
|
76 |
COIL_RESET, COIL_RISING, COIL_FALLING]) |
|
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
77 |
modifiers_label = \ |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
78 |
[_("Normal"), _("Negated")] + \ |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
79 |
([_("Set"), _("Reset")] if type == "coil" else []) + \ |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
80 |
[_("Rising Edge"), _("Falling Edge")] |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
81 |
|
1246 | 82 |
for modifier, label in zip(element_modifiers, modifiers_label): |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
83 |
radio_button = wx.RadioButton(self, label=label, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
84 |
style=(wx.RB_GROUP if first else 0)) |
1246 | 85 |
radio_button.SetValue(first) |
86 |
self.Bind(wx.EVT_RADIOBUTTON, self.OnModifierChanged, radio_button) |
|
1250
7e6de17c687a
Rewrite SFCStepDialog and factorize code for creating common dialog sizers
Laurent Bessard
parents:
1247
diff
changeset
|
87 |
self.LeftGridSizer.AddWindow(radio_button, flag=wx.GROW) |
1246 | 88 |
self.ModifierRadioButtons[modifier] = radio_button |
89 |
first = False |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
90 |
|
1246 | 91 |
# Create label for LD element variable |
92 |
element_variable_label = wx.StaticText(self, label=_('Variable:')) |
|
1250
7e6de17c687a
Rewrite SFCStepDialog and factorize code for creating common dialog sizers
Laurent Bessard
parents:
1247
diff
changeset
|
93 |
self.LeftGridSizer.AddWindow(element_variable_label, border=5, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
94 |
flag=wx.GROW | wx.TOP) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
95 |
|
1246 | 96 |
# Create a combo box for defining LD element variable |
1370
ee795a8d4404
Fixed coil and contact dialog to let user select a complex type variable for contact and coil expression
Laurent Bessard
parents:
1259
diff
changeset
|
97 |
self.ElementVariable = wx.ComboBox(self, style=wx.CB_SORT) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
98 |
self.Bind(wx.EVT_COMBOBOX, self.OnVariableChanged, |
1246 | 99 |
self.ElementVariable) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
100 |
self.Bind(wx.EVT_TEXT, self.OnVariableChanged, |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
101 |
self.ElementVariable) |
1250
7e6de17c687a
Rewrite SFCStepDialog and factorize code for creating common dialog sizers
Laurent Bessard
parents:
1247
diff
changeset
|
102 |
self.LeftGridSizer.AddWindow(self.ElementVariable, border=5, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
103 |
flag=wx.GROW | wx.TOP) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
104 |
|
1246 | 105 |
# Add preview panel and associated label to sizers |
1250
7e6de17c687a
Rewrite SFCStepDialog and factorize code for creating common dialog sizers
Laurent Bessard
parents:
1247
diff
changeset
|
106 |
self.RightGridSizer.AddWindow(self.PreviewLabel, flag=wx.GROW) |
7e6de17c687a
Rewrite SFCStepDialog and factorize code for creating common dialog sizers
Laurent Bessard
parents:
1247
diff
changeset
|
107 |
self.RightGridSizer.AddWindow(self.Preview, flag=wx.GROW) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
108 |
|
1246 | 109 |
# Add buttons sizer to sizers |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
110 |
self.MainSizer.AddSizer(self.ButtonSizer, border=20, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
111 |
flag=wx.ALIGN_RIGHT | wx.BOTTOM | wx.LEFT | wx.RIGHT) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
112 |
|
1246 | 113 |
# Save LD element class |
114 |
self.ElementClass = (LD_Contact if type == "contact" else LD_Coil) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
115 |
|
1246 | 116 |
# Extract list of variables defined in POU |
117 |
self.RefreshVariableList() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
118 |
|
1246 | 119 |
# Set values in ElementVariable |
120 |
for name, (var_type, value_type) in self.VariableList.iteritems(): |
|
121 |
# Only select BOOL variable and avoid input for coil |
|
122 |
if (type == "contact" or var_type != "Input") and \ |
|
123 |
value_type == "BOOL": |
|
124 |
self.ElementVariable.Append(name) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
125 |
|
1696
8043f32de7b8
make all dialog have non-fixed size
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
126 |
self.Fit() |
1246 | 127 |
# Normal radio button is default control having keyboard focus |
128 |
self.ModifierRadioButtons[element_modifiers[0]].SetFocus() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
129 |
|
1246 | 130 |
def GetElementModifier(self): |
131 |
""" |
|
132 |
Return modifier selected for LD element |
|
133 |
@return: Modifier selected (None if not found) |
|
134 |
""" |
|
135 |
# Go through radio buttons and return modifier associated to the one |
|
136 |
# that is selected |
|
137 |
for modifier, control in self.ModifierRadioButtons.iteritems(): |
|
138 |
if control.GetValue(): |
|
139 |
return modifier |
|
140 |
return None |
|
814 | 141 |
|
142 |
def SetValues(self, values): |
|
1246 | 143 |
""" |
144 |
Set default LD element parameters |
|
1252 | 145 |
@param values: LD element parameters values |
1246 | 146 |
""" |
147 |
# For each parameters defined, set corresponding control value |
|
814 | 148 |
for name, value in values.items(): |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
149 |
|
1246 | 150 |
# Parameter is LD element variable |
151 |
if name == "variable": |
|
1370
ee795a8d4404
Fixed coil and contact dialog to let user select a complex type variable for contact and coil expression
Laurent Bessard
parents:
1259
diff
changeset
|
152 |
self.ElementVariable.SetValue(value) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
153 |
|
1246 | 154 |
# Set value of other controls |
155 |
elif name == "modifier": |
|
156 |
self.ModifierRadioButtons[value].SetValue(True) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
157 |
|
1246 | 158 |
# Refresh preview panel |
159 |
self.RefreshPreview() |
|
814 | 160 |
|
161 |
def GetValues(self): |
|
1246 | 162 |
""" |
163 |
Return LD element parameters defined in dialog |
|
164 |
@return: {parameter_name: parameter_value,...} |
|
165 |
""" |
|
166 |
values = { |
|
167 |
"variable": self.ElementVariable.GetValue(), |
|
168 |
"modifier": self.GetElementModifier()} |
|
814 | 169 |
values["width"], values["height"] = self.Element.GetSize() |
170 |
return values |
|
171 |
||
1246 | 172 |
def OnModifierChanged(self, event): |
173 |
""" |
|
174 |
Called when LD element modifier changed |
|
175 |
@param event: wx.RadioButtonEvent |
|
176 |
""" |
|
814 | 177 |
self.RefreshPreview() |
178 |
event.Skip() |
|
179 |
||
1246 | 180 |
def OnVariableChanged(self, event): |
181 |
""" |
|
182 |
Called when LD element associated variable changed |
|
183 |
@param event: wx.ComboBoxEvent |
|
184 |
""" |
|
814 | 185 |
self.RefreshPreview() |
186 |
event.Skip() |
|
187 |
||
188 |
def RefreshPreview(self): |
|
1246 | 189 |
""" |
190 |
Refresh preview panel of graphic element |
|
191 |
Override BlockPreviewDialog function |
|
192 |
""" |
|
1698
ae3e819252fc
disable empty coils and contacts in LD/SFC editors
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1696
diff
changeset
|
193 |
value = self.ElementVariable.GetValue() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
194 |
|
1246 | 195 |
# Set graphic element displayed, creating a LD element |
196 |
self.Element = self.ElementClass( |
|
1878
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
197 |
self.Preview, |
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
198 |
self.GetElementModifier(), |
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1853
diff
changeset
|
199 |
value) |
1698
ae3e819252fc
disable empty coils and contacts in LD/SFC editors
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1696
diff
changeset
|
200 |
|
ae3e819252fc
disable empty coils and contacts in LD/SFC editors
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1696
diff
changeset
|
201 |
button = self.ButtonSizer.GetAffirmativeButton() |
ae3e819252fc
disable empty coils and contacts in LD/SFC editors
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1696
diff
changeset
|
202 |
button.Enable(value != "") |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
203 |
|
1246 | 204 |
# Call BlockPreviewDialog function |
205 |
BlockPreviewDialog.RefreshPreview(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1698
diff
changeset
|
206 |
|
1698
ae3e819252fc
disable empty coils and contacts in LD/SFC editors
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1696
diff
changeset
|
207 |
def OnOK(self, event): |
ae3e819252fc
disable empty coils and contacts in LD/SFC editors
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1696
diff
changeset
|
208 |
if self.ElementVariable.GetValue() != "": |
ae3e819252fc
disable empty coils and contacts in LD/SFC editors
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1696
diff
changeset
|
209 |
self.EndModal(wx.ID_OK) |