author | Laurent Bessard |
Mon, 30 Jul 2012 16:06:21 +0200 | |
changeset 732 | 7991eb6bcb5a |
parent 714 | 131ea7f237b9 |
permissions | -rw-r--r-- |
705
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
1 |
#!/usr/bin/env python |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
2 |
# -*- coding: utf-8 -*- |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
3 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
4 |
#This file is part of PLCOpenEditor, a library implementing an IEC 61131-3 editor |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
5 |
#based on the plcopen standard. |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
6 |
# |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
7 |
#Copyright (C) 2012: Edouard TISSERANT and Laurent BESSARD |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
8 |
# |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
9 |
#See COPYING file for copyrights details. |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
10 |
# |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
11 |
#This library is free software; you can redistribute it and/or |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
12 |
#modify it under the terms of the GNU General Public |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
13 |
#License as published by the Free Software Foundation; either |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
14 |
#version 2.1 of the License, or (at your option) any later version. |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
15 |
# |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
16 |
#This library is distributed in the hope that it will be useful, |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
17 |
#but WITHOUT ANY WARRANTY; without even the implied warranty of |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
18 |
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
19 |
#General Public License for more details. |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
20 |
# |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
21 |
#You should have received a copy of the GNU General Public |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
22 |
#License along with this library; if not, write to the Free Software |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
23 |
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
24 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
25 |
import wx |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
26 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
27 |
from plcopen.structures import TestIdentifier, IEC_KEYWORDS |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
28 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
29 |
def GetPouTypes(): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
30 |
_ = lambda x : x |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
31 |
return [_("function"), _("functionBlock"), _("program")] |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
32 |
POU_TYPES_DICT = dict([(_(pou_type), pou_type) for pou_type in GetPouTypes()]) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
33 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
34 |
def GetPouLanguages(): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
35 |
_ = lambda x : x |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
36 |
return [_("IL"), _("ST"), _("LD"), _("FBD"), _("SFC")] |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
37 |
POU_LANGUAGES_DICT = dict([(_(language), language) for language in GetPouLanguages()]) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
38 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
39 |
class PouDialog(wx.Dialog): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
40 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
41 |
def __init__(self, parent, pou_type = None): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
42 |
wx.Dialog.__init__(self, id=-1, parent=parent, |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
43 |
name='PouDialog', title=_('Create a new POU'), |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
44 |
size=wx.Size(300, 200), style=wx.DEFAULT_DIALOG_STYLE) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
45 |
self.SetClientSize(wx.Size(300, 200)) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
46 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
47 |
main_sizer = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=10) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
48 |
main_sizer.AddGrowableCol(0) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
49 |
main_sizer.AddGrowableRow(0) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
50 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
51 |
infos_sizer = wx.FlexGridSizer(cols=2, hgap=5, rows=3, vgap=15) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
52 |
infos_sizer.AddGrowableCol(1) |
714
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
53 |
main_sizer.AddSizer(infos_sizer, border=20, |
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
54 |
flag=wx.GROW|wx.TOP|wx.LEFT|wx.RIGHT) |
705
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
55 |
|
714
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
56 |
pouname_label = wx.StaticText(self, label=_('POU Name:')) |
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
57 |
infos_sizer.AddWindow(pouname_label, border=4, |
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
58 |
flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP) |
705
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
59 |
|
714
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
60 |
self.PouName = wx.TextCtrl(self) |
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
61 |
infos_sizer.AddWindow(self.PouName, flag=wx.GROW) |
705
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
62 |
|
714
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
63 |
poutype_label = wx.StaticText(self, label=_('POU Type:')) |
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
64 |
infos_sizer.AddWindow(poutype_label, border=4, |
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
65 |
flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP) |
705
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
66 |
|
714
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
67 |
self.PouType = wx.ComboBox(self, style=wx.CB_READONLY) |
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
68 |
self.Bind(wx.EVT_COMBOBOX, self.OnTypeChanged, self.PouType) |
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
69 |
infos_sizer.AddWindow(self.PouType, flag=wx.GROW) |
705
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
70 |
|
714
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
71 |
language_label = wx.StaticText(self, label=_('Language:')) |
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
72 |
infos_sizer.AddWindow(language_label, border=4, |
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
73 |
flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP) |
705
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
74 |
|
714
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
75 |
self.Language = wx.ComboBox(self, style=wx.CB_READONLY) |
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
76 |
infos_sizer.AddWindow(self.Language, flag=wx.GROW) |
705
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
77 |
|
714
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
78 |
button_sizer = self.CreateButtonSizer(wx.OK|wx.CANCEL|wx.CENTRE) |
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
79 |
self.Bind(wx.EVT_BUTTON, self.OnOK, button_sizer.GetAffirmativeButton()) |
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
80 |
main_sizer.AddSizer(button_sizer, border=20, |
131ea7f237b9
Replacing buttons with text by buttons with icons
Laurent Bessard
parents:
705
diff
changeset
|
81 |
flag=wx.ALIGN_RIGHT|wx.BOTTOM|wx.LEFT|wx.RIGHT) |
705
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
82 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
83 |
self.SetSizer(main_sizer) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
84 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
85 |
for option in GetPouTypes(): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
86 |
self.PouType.Append(_(option)) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
87 |
if pou_type is not None: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
88 |
self.PouType.SetStringSelection(_(pou_type)) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
89 |
self.RefreshLanguage() |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
90 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
91 |
self.PouNames = [] |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
92 |
self.PouElementNames = [] |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
93 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
94 |
def OnOK(self, event): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
95 |
error = [] |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
96 |
pou_name = self.PouName.GetValue() |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
97 |
if pou_name == "": |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
98 |
error.append(_("POU Name")) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
99 |
if self.PouType.GetSelection() == -1: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
100 |
error.append(_("POU Type")) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
101 |
if self.Language.GetSelection() == -1: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
102 |
error.append(_("Language")) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
103 |
message = None |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
104 |
question = False |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
105 |
if len(error) > 0: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
106 |
text = "" |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
107 |
for i, item in enumerate(error): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
108 |
if i == 0: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
109 |
text += item |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
110 |
elif i == len(error) - 1: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
111 |
text += _(" and %s")%item |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
112 |
else: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
113 |
text += _(", %s")%item |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
114 |
message = _("Form isn't complete. %s must be filled!") % text |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
115 |
elif not TestIdentifier(pou_name): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
116 |
message = _("\"%s\" is not a valid identifier!") % pou_name |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
117 |
elif pou_name.upper() in IEC_KEYWORDS: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
118 |
message = _("\"%s\" is a keyword. It can't be used!") % pou_name |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
119 |
elif pou_name.upper() in self.PouNames: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
120 |
message = _("\"%s\" pou already exists!") % pou_name |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
121 |
elif pou_name.upper() in self.PouElementNames: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
122 |
message = _("A POU has an element named \"%s\". This could cause a conflict. Do you wish to continue?") % pou_name |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
123 |
question = True |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
124 |
if message is not None: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
125 |
if question: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
126 |
dialog = wx.MessageDialog(self, message, _("Warning"), wx.YES_NO|wx.ICON_EXCLAMATION) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
127 |
result = dialog.ShowModal() |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
128 |
dialog.Destroy() |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
129 |
if result == wx.ID_YES: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
130 |
self.EndModal(wx.ID_OK) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
131 |
else: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
132 |
dialog = wx.MessageDialog(self, message, _("Error"), wx.OK|wx.ICON_ERROR) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
133 |
dialog.ShowModal() |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
134 |
dialog.Destroy() |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
135 |
else: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
136 |
self.EndModal(wx.ID_OK) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
137 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
138 |
def RefreshLanguage(self): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
139 |
selection = POU_LANGUAGES_DICT.get(self.Language.GetStringSelection(), "") |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
140 |
self.Language.Clear() |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
141 |
for language in GetPouLanguages(): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
142 |
if language != "SFC" or POU_TYPES_DICT[self.PouType.GetStringSelection()] != "function": |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
143 |
self.Language.Append(_(language)) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
144 |
if self.Language.FindString(_(selection)) != wx.NOT_FOUND: |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
145 |
self.Language.SetStringSelection(_(selection)) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
146 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
147 |
def OnTypeChanged(self, event): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
148 |
self.RefreshLanguage() |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
149 |
event.Skip() |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
150 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
151 |
def SetPouNames(self, pou_names): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
152 |
self.PouNames = [pou_name.upper() for pou_name in pou_names] |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
153 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
154 |
def SetPouElementNames(self, element_names): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
155 |
self.PouElementNames = [element_name.upper() for element_name in element_names] |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
156 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
157 |
def SetValues(self, values): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
158 |
for item, value in values.items(): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
159 |
if item == "pouName": |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
160 |
self.PouName.SetValue(value) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
161 |
elif item == "pouType": |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
162 |
self.PouType.SetStringSelection(_(value)) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
163 |
elif item == "language": |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
164 |
self.Language.SetStringSelection(_(value)) |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
165 |
|
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
166 |
def GetValues(self): |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
167 |
values = {} |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
168 |
values["pouName"] = self.PouName.GetValue() |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
169 |
values["pouType"] = POU_TYPES_DICT[self.PouType.GetStringSelection()] |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
170 |
values["language"] = POU_LANGUAGES_DICT[self.Language.GetStringSelection()] |
1a343b239e9c
Replacing dialog asking for a name when adding datatype, configuration and resource by automatically generated name
Laurent Bessard
parents:
diff
changeset
|
171 |
return values |