author | Andrey Skvortsov <andrej.skvortzov@gmail.com> |
Wed, 16 Aug 2017 12:53:23 +0300 | |
changeset 1750 | acf02488f37f |
parent 1749 | d73b64672238 |
child 1762 | fcc406143e5b |
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:
1421
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:
1421
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:
1421
diff
changeset
|
7 |
# Copyright (C) 2012: 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:
1421
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:
1421
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:
1421
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:
1421
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:
1421
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:
1421
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:
1421
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:
1421
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:
1421
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:
1421
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:
1421
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:
1421
diff
changeset
|
24 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
814 | 25 |
|
26 |
import wx |
|
27 |
||
28 |
from plcopen.structures import TestIdentifier, IEC_KEYWORDS |
|
29 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
30 |
|
814 | 31 |
def GetPouTypes(): |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
32 |
_ = lambda x: x |
814 | 33 |
return [_("function"), _("functionBlock"), _("program")] |
1749
d73b64672238
clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
34 |
|
d73b64672238
clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
35 |
|
814 | 36 |
POU_TYPES_DICT = dict([(_(pou_type), pou_type) for pou_type in GetPouTypes()]) |
37 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
38 |
|
814 | 39 |
def GetPouLanguages(): |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
40 |
_ = lambda x: x |
814 | 41 |
return [_("IL"), _("ST"), _("LD"), _("FBD"), _("SFC")] |
42 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
43 |
|
814 | 44 |
class PouDialog(wx.Dialog): |
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
45 |
|
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
46 |
POU_LANGUAGES = GetPouLanguages() |
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
47 |
POU_LANGUAGES_DICT = dict([(_(language), language) for language in POU_LANGUAGES]) |
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
48 |
|
1708
24416137cda7
add dialog "add program", that appears after creating new project
Surkov Sergey <surkovsv93@gmail.com>
parents:
1696
diff
changeset
|
49 |
def __init__(self, parent, pou_type=None, type_readonly=False): |
814 | 50 |
wx.Dialog.__init__(self, id=-1, parent=parent, |
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
51 |
name='PouDialog', title=_('Create a new POU'), |
1696
8043f32de7b8
make all dialog have non-fixed size
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
52 |
style=wx.DEFAULT_DIALOG_STYLE) |
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
53 |
|
814 | 54 |
main_sizer = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=10) |
55 |
main_sizer.AddGrowableCol(0) |
|
56 |
main_sizer.AddGrowableRow(0) |
|
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
57 |
|
814 | 58 |
infos_sizer = wx.FlexGridSizer(cols=2, hgap=5, rows=3, vgap=15) |
59 |
infos_sizer.AddGrowableCol(1) |
|
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
60 |
main_sizer.AddSizer(infos_sizer, border=20, |
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
61 |
flag=wx.GROW | wx.TOP | wx.LEFT | wx.RIGHT) |
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
62 |
|
814 | 63 |
pouname_label = wx.StaticText(self, label=_('POU Name:')) |
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
64 |
infos_sizer.AddWindow(pouname_label, border=4, |
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
65 |
flag=wx.ALIGN_CENTER_VERTICAL | wx.TOP) |
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
66 |
|
814 | 67 |
self.PouName = wx.TextCtrl(self) |
68 |
infos_sizer.AddWindow(self.PouName, flag=wx.GROW) |
|
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
69 |
|
814 | 70 |
poutype_label = wx.StaticText(self, label=_('POU Type:')) |
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
71 |
infos_sizer.AddWindow(poutype_label, border=4, |
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
72 |
flag=wx.ALIGN_CENTER_VERTICAL | wx.TOP) |
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
73 |
|
814 | 74 |
self.PouType = wx.ComboBox(self, style=wx.CB_READONLY) |
75 |
self.Bind(wx.EVT_COMBOBOX, self.OnTypeChanged, self.PouType) |
|
76 |
infos_sizer.AddWindow(self.PouType, flag=wx.GROW) |
|
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
77 |
|
814 | 78 |
language_label = wx.StaticText(self, label=_('Language:')) |
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
79 |
infos_sizer.AddWindow(language_label, border=4, |
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
80 |
flag=wx.ALIGN_CENTER_VERTICAL | wx.TOP) |
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
81 |
|
814 | 82 |
self.Language = wx.ComboBox(self, style=wx.CB_READONLY) |
83 |
infos_sizer.AddWindow(self.Language, flag=wx.GROW) |
|
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
84 |
|
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
85 |
button_sizer = self.CreateButtonSizer(wx.OK | wx.CANCEL | wx.CENTRE) |
814 | 86 |
self.Bind(wx.EVT_BUTTON, self.OnOK, button_sizer.GetAffirmativeButton()) |
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
87 |
main_sizer.AddSizer(button_sizer, border=20, |
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
88 |
flag=wx.ALIGN_RIGHT | wx.BOTTOM | wx.LEFT | wx.RIGHT) |
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
89 |
|
814 | 90 |
self.SetSizer(main_sizer) |
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
91 |
|
814 | 92 |
for option in GetPouTypes(): |
1708
24416137cda7
add dialog "add program", that appears after creating new project
Surkov Sergey <surkovsv93@gmail.com>
parents:
1696
diff
changeset
|
93 |
if not type_readonly or _(option) == _(pou_type): |
24416137cda7
add dialog "add program", that appears after creating new project
Surkov Sergey <surkovsv93@gmail.com>
parents:
1696
diff
changeset
|
94 |
self.PouType.Append(_(option)) |
814 | 95 |
if pou_type is not None: |
96 |
self.PouType.SetStringSelection(_(pou_type)) |
|
97 |
self.RefreshLanguage() |
|
1696
8043f32de7b8
make all dialog have non-fixed size
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
98 |
self.Fit() |
814 | 99 |
self.PouNames = [] |
100 |
self.PouElementNames = [] |
|
101 |
||
102 |
def OnOK(self, event): |
|
103 |
error = [] |
|
104 |
pou_name = self.PouName.GetValue() |
|
105 |
if pou_name == "": |
|
106 |
error.append(_("POU Name")) |
|
107 |
if self.PouType.GetSelection() == -1: |
|
108 |
error.append(_("POU Type")) |
|
109 |
if self.Language.GetSelection() == -1: |
|
110 |
error.append(_("Language")) |
|
111 |
message = None |
|
112 |
question = False |
|
113 |
if len(error) > 0: |
|
114 |
text = "" |
|
115 |
for i, item in enumerate(error): |
|
116 |
if i == 0: |
|
117 |
text += item |
|
118 |
elif i == len(error) - 1: |
|
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1708
diff
changeset
|
119 |
text += _(" and %s") % item |
814 | 120 |
else: |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1708
diff
changeset
|
121 |
text += _(", %s") % item |
814 | 122 |
message = _("Form isn't complete. %s must be filled!") % text |
123 |
elif not TestIdentifier(pou_name): |
|
124 |
message = _("\"%s\" is not a valid identifier!") % pou_name |
|
125 |
elif pou_name.upper() in IEC_KEYWORDS: |
|
126 |
message = _("\"%s\" is a keyword. It can't be used!") % pou_name |
|
127 |
elif pou_name.upper() in self.PouNames: |
|
128 |
message = _("\"%s\" pou already exists!") % pou_name |
|
129 |
elif pou_name.upper() in self.PouElementNames: |
|
130 |
message = _("A POU has an element named \"%s\". This could cause a conflict. Do you wish to continue?") % pou_name |
|
131 |
question = True |
|
132 |
if message is not None: |
|
133 |
if question: |
|
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
134 |
dialog = wx.MessageDialog(self, message, _("Warning"), wx.YES_NO | wx.ICON_EXCLAMATION) |
814 | 135 |
result = dialog.ShowModal() |
136 |
dialog.Destroy() |
|
137 |
if result == wx.ID_YES: |
|
138 |
self.EndModal(wx.ID_OK) |
|
139 |
else: |
|
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
140 |
dialog = wx.MessageDialog(self, message, _("Error"), wx.OK | wx.ICON_ERROR) |
814 | 141 |
dialog.ShowModal() |
142 |
dialog.Destroy() |
|
143 |
else: |
|
144 |
self.EndModal(wx.ID_OK) |
|
145 |
||
146 |
def RefreshLanguage(self): |
|
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
147 |
selection = self.POU_LANGUAGES_DICT.get(self.Language.GetStringSelection(), "") |
814 | 148 |
self.Language.Clear() |
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
149 |
for language in self.POU_LANGUAGES: |
814 | 150 |
if language != "SFC" or POU_TYPES_DICT[self.PouType.GetStringSelection()] != "function": |
151 |
self.Language.Append(_(language)) |
|
152 |
if self.Language.FindString(_(selection)) != wx.NOT_FOUND: |
|
153 |
self.Language.SetStringSelection(_(selection)) |
|
154 |
||
155 |
def OnTypeChanged(self, event): |
|
156 |
self.RefreshLanguage() |
|
157 |
event.Skip() |
|
158 |
||
159 |
def SetPouNames(self, pou_names): |
|
160 |
self.PouNames = [pou_name.upper() for pou_name in pou_names] |
|
161 |
||
162 |
def SetPouElementNames(self, element_names): |
|
163 |
self.PouElementNames = [element_name.upper() for element_name in element_names] |
|
164 |
||
165 |
def SetValues(self, values): |
|
166 |
for item, value in values.items(): |
|
167 |
if item == "pouName": |
|
168 |
self.PouName.SetValue(value) |
|
169 |
elif item == "pouType": |
|
170 |
self.PouType.SetStringSelection(_(value)) |
|
171 |
elif item == "language": |
|
172 |
self.Language.SetStringSelection(_(value)) |
|
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
173 |
|
814 | 174 |
def GetValues(self): |
175 |
values = {} |
|
176 |
values["pouName"] = self.PouName.GetValue() |
|
177 |
values["pouType"] = POU_TYPES_DICT[self.PouType.GetStringSelection()] |
|
1421
0e1a6fcf4670
Enable overloading of availables languages in POU creation dialog
Edouard Tisserant
parents:
814
diff
changeset
|
178 |
values["language"] = self.POU_LANGUAGES_DICT[self.Language.GetStringSelection()] |
814 | 179 |
return values |