author | PaulBeltyukov |
Mon, 06 Mar 2017 12:04:15 +0500 | |
changeset 1650 | 54f81a762ff2 |
parent 1585 | 60c0db313ec9 |
child 1696 | 8043f32de7b8 |
permissions | -rw-r--r-- |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1259
diff
changeset
|
1 |
#!/usr/bin/env python |
814 | 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:
1259
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:
1259
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:
1259
diff
changeset
|
7 |
# Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
814 | 8 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1259
diff
changeset
|
9 |
# See COPYING file for copyrights details. |
814 | 10 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1259
diff
changeset
|
11 |
# 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:
1259
diff
changeset
|
12 |
# 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:
1259
diff
changeset
|
13 |
# 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:
1259
diff
changeset
|
14 |
# of the License, or (at your option) any later version. |
814 | 15 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1259
diff
changeset
|
16 |
# 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:
1259
diff
changeset
|
17 |
# 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:
1259
diff
changeset
|
18 |
# 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:
1259
diff
changeset
|
19 |
# GNU General Public License for more details. |
814 | 20 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1259
diff
changeset
|
21 |
# 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:
1259
diff
changeset
|
22 |
# 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:
1259
diff
changeset
|
23 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
814 | 24 |
|
25 |
import wx |
|
26 |
||
1251 | 27 |
from graphics.GraphicCommons import SELECTION_DIVERGENCE, \ |
28 |
SELECTION_CONVERGENCE, SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE |
|
29 |
from graphics.SFC_Objects import SFC_Divergence |
|
30 |
from BlockPreviewDialog import BlockPreviewDialog |
|
814 | 31 |
|
32 |
#------------------------------------------------------------------------------- |
|
33 |
# Create New Divergence Dialog |
|
34 |
#------------------------------------------------------------------------------- |
|
35 |
||
1251 | 36 |
""" |
37 |
Class that implements a dialog for defining parameters for creating a new |
|
38 |
divergence graphic element |
|
39 |
""" |
|
40 |
||
41 |
class SFCDivergenceDialog(BlockPreviewDialog): |
|
814 | 42 |
|
1584
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
43 |
def __init__(self, parent, controller, tagname, poss_div_types = None): |
1251 | 44 |
""" |
45 |
Constructor |
|
46 |
@param parent: Parent wx.Window of dialog for modal |
|
47 |
@param controller: Reference to project controller |
|
48 |
@param tagname: Tagname of project POU edited |
|
1584
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
49 |
@param poss_div_types: Types of divergence that will be available in the dialog window |
1251 | 50 |
""" |
51 |
BlockPreviewDialog.__init__(self, parent, controller, tagname, |
|
52 |
size=wx.Size(500, 300), |
|
814 | 53 |
title=_('Create a new divergence or convergence')) |
54 |
||
1251 | 55 |
# Init common sizers |
56 |
self._init_sizers(2, 0, 7, None, 2, 1) |
|
814 | 57 |
|
1251 | 58 |
# Create label for divergence type |
59 |
type_label = wx.StaticText(self, label=_('Type:')) |
|
60 |
self.LeftGridSizer.AddWindow(type_label, flag=wx.GROW) |
|
814 | 61 |
|
1251 | 62 |
# Create radio buttons for selecting divergence type |
1584
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
63 |
divergence_buttons = [ |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
64 |
(SELECTION_DIVERGENCE, _('Selection Divergence')), |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
65 |
(SELECTION_CONVERGENCE, _('Selection Convergence')), |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
66 |
(SIMULTANEOUS_DIVERGENCE, _('Simultaneous Divergence')), |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
67 |
(SIMULTANEOUS_CONVERGENCE, _('Simultaneous Convergence'))] |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
68 |
poss_div_btns = [] |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
69 |
if poss_div_types is not None: |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
70 |
for val in poss_div_types: |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
71 |
poss_div_btns.append(divergence_buttons[val]) |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
72 |
else: |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
73 |
poss_div_btns = divergence_buttons |
1251 | 74 |
self.TypeRadioButtons = {} |
75 |
first = True |
|
1584
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
76 |
focusbtn = None |
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
77 |
for type, label in poss_div_btns: |
1251 | 78 |
radio_button = wx.RadioButton(self, label=label, |
79 |
style=(wx.RB_GROUP if first else 0)) |
|
80 |
radio_button.SetValue(first) |
|
81 |
self.Bind(wx.EVT_RADIOBUTTON, self.OnTypeChanged, radio_button) |
|
82 |
self.LeftGridSizer.AddWindow(radio_button, flag=wx.GROW) |
|
83 |
self.TypeRadioButtons[type] = radio_button |
|
1584
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
84 |
if first: focusbtn = type |
1251 | 85 |
first = False |
814 | 86 |
|
1251 | 87 |
# Create label for number of divergence sequences |
814 | 88 |
sequences_label = wx.StaticText(self, |
89 |
label=_('Number of sequences:')) |
|
1251 | 90 |
self.LeftGridSizer.AddWindow(sequences_label, flag=wx.GROW) |
814 | 91 |
|
1251 | 92 |
# Create spin control for defining number of divergence sequences |
1585
60c0db313ec9
fix initial(equal to the min) number of sequences in SFC Divergence dialog.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1584
diff
changeset
|
93 |
self.Sequences = wx.SpinCtrl(self, min=2, max=20, initial=2) |
814 | 94 |
self.Bind(wx.EVT_SPINCTRL, self.OnSequencesChanged, self.Sequences) |
1251 | 95 |
self.LeftGridSizer.AddWindow(self.Sequences, flag=wx.GROW) |
814 | 96 |
|
1251 | 97 |
# Add preview panel and associated label to sizers |
98 |
self.RightGridSizer.AddWindow(self.PreviewLabel, flag=wx.GROW) |
|
99 |
self.RightGridSizer.AddWindow(self.Preview, flag=wx.GROW) |
|
814 | 100 |
|
1251 | 101 |
# Add buttons sizer to sizers |
102 |
self.MainSizer.AddSizer(self.ButtonSizer, border=20, |
|
103 |
flag=wx.ALIGN_RIGHT|wx.BOTTOM|wx.LEFT|wx.RIGHT) |
|
814 | 104 |
|
1251 | 105 |
# Selection divergence radio button is default control having keyboard |
106 |
# focus |
|
1584
431f4ef34bde
make only correct blocks(by IEC 61131-3 standard) available in wire popup menu in SFC Viewer
Sergey Surkov <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
107 |
self.TypeRadioButtons[focusbtn].SetFocus() |
814 | 108 |
|
1251 | 109 |
def GetMinElementSize(self): |
110 |
""" |
|
111 |
Get minimal graphic element size |
|
112 |
@return: Tuple containing minimal size (width, height) or None if no |
|
113 |
element defined |
|
114 |
""" |
|
1259
8350222a81c3
Added support for adding graphic element when dropping wire in midair
Laurent Bessard
parents:
1251
diff
changeset
|
115 |
return self.Element.GetMinSize(True) |
1251 | 116 |
|
117 |
def GetDivergenceType(self): |
|
118 |
""" |
|
119 |
Return type selected for SFC divergence |
|
120 |
@return: Type selected (None if not found) |
|
121 |
""" |
|
122 |
# Go through radio buttons and return type associated to the one that |
|
123 |
# is selected |
|
124 |
for type, control in self.TypeRadioButtons.iteritems(): |
|
125 |
if control.GetValue(): |
|
126 |
return type |
|
127 |
return None |
|
814 | 128 |
|
129 |
def GetValues(self): |
|
1251 | 130 |
""" |
131 |
Set default SFC divergence parameters |
|
132 |
@param values: Divergence parameters values |
|
133 |
""" |
|
134 |
return {"type": self.GetDivergenceType(), |
|
135 |
"number": self.Sequences.GetValue()} |
|
814 | 136 |
|
137 |
def OnTypeChanged(self, event): |
|
1251 | 138 |
""" |
139 |
Called when SFC divergence type changed |
|
140 |
@param event: wx.RadioButtonEvent |
|
141 |
""" |
|
814 | 142 |
self.RefreshPreview() |
143 |
event.Skip() |
|
144 |
||
145 |
def OnSequencesChanged(self, event): |
|
1251 | 146 |
""" |
147 |
Called when SFC divergence number of sequences changed |
|
148 |
@param event: wx.SpinEvent |
|
149 |
""" |
|
814 | 150 |
self.RefreshPreview() |
151 |
event.Skip() |
|
152 |
||
153 |
def RefreshPreview(self): |
|
1251 | 154 |
""" |
155 |
Refresh preview panel of graphic element |
|
156 |
Override BlockPreviewDialog function |
|
157 |
""" |
|
158 |
# Set graphic element displayed, creating a SFC divergence |
|
159 |
self.Element = SFC_Divergence(self.Preview, |
|
160 |
self.GetDivergenceType(), |
|
161 |
self.Sequences.GetValue()) |
|
162 |
||
163 |
# Call BlockPreviewDialog function |
|
164 |
BlockPreviewDialog.RefreshPreview(self) |
|
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1259
diff
changeset
|
165 |