author | Andrey Skvortsov <andrej.skvortzov@gmail.com> |
Tue, 10 Oct 2017 13:21:48 +0300 | |
changeset 1858 | 4c5156dee87a |
parent 1836 | d42b6cf00fa6 |
child 1881 | 091005ec69c4 |
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:
1085
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:
1085
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:
1085
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:
1085
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:
1085
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:
1085
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:
1085
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:
1085
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:
1085
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:
1085
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:
1085
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:
1085
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:
1085
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:
1085
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:
1085
diff
changeset
|
23 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
814 | 24 |
|
25 |
import wx |
|
26 |
||
27 |
from controls import VariablePanel |
|
28 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1735
diff
changeset
|
29 |
|
814 | 30 |
class EditorPanel(wx.SplitterWindow): |
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
31 |
|
814 | 32 |
VARIABLE_PANEL_TYPE = None |
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
33 |
|
814 | 34 |
def _init_Editor(self, prnt): |
35 |
self.Editor = None |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
36 |
|
814 | 37 |
def _init_MenuItems(self): |
38 |
self.MenuItems = [] |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
39 |
|
814 | 40 |
def _init_ctrls(self, parent): |
41 |
self.SetMinimumPaneSize(1) |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
42 |
|
814 | 43 |
self._init_MenuItems() |
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
44 |
|
814 | 45 |
if self.VARIABLE_PANEL_TYPE is not None: |
46 |
self.VariableEditor = VariablePanel(self, self, self.Controler, self.VARIABLE_PANEL_TYPE, self.Debug) |
|
47 |
self.VariableEditor.SetTagName(self.TagName) |
|
48 |
else: |
|
49 |
self.VariableEditor = None |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
50 |
|
814 | 51 |
self._init_Editor(self) |
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
52 |
|
814 | 53 |
if self.Editor is not None and self.VariableEditor is not None: |
54 |
self.SplitHorizontally(self.VariableEditor, self.Editor, 200) |
|
55 |
elif self.VariableEditor is not None: |
|
56 |
self.Initialize(self.VariableEditor) |
|
57 |
elif self.Editor is not None: |
|
58 |
self.Initialize(self.Editor) |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
59 |
|
814 | 60 |
def __init__(self, parent, tagname, window, controler, debug=False): |
1836
d42b6cf00fa6
fix error __init__ method from base class is not called
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
61 |
wx.SplitterWindow.__init__(self, parent, |
d42b6cf00fa6
fix error __init__ method from base class is not called
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
62 |
style=wx.SUNKEN_BORDER | wx.SP_3D) |
d42b6cf00fa6
fix error __init__ method from base class is not called
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
63 |
|
814 | 64 |
self.ParentWindow = window |
65 |
self.Controler = controler |
|
66 |
self.TagName = tagname |
|
67 |
self.Icon = None |
|
68 |
self.Debug = debug |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
69 |
|
814 | 70 |
self._init_ctrls(parent) |
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
71 |
|
814 | 72 |
def SetTagName(self, tagname): |
73 |
self.TagName = tagname |
|
74 |
if self.VARIABLE_PANEL_TYPE is not None: |
|
75 |
self.VariableEditor.SetTagName(tagname) |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
76 |
|
814 | 77 |
def GetTagName(self): |
78 |
return self.TagName |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
79 |
|
814 | 80 |
def Select(self): |
81 |
self.ParentWindow.EditProjectElement(None, self.GetTagName(), True) |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
82 |
|
814 | 83 |
def GetTitle(self): |
1615
af9b0ccb418e
replace '-' with '.' in resource tab and transition/action SFC code
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
84 |
return ".".join(self.TagName.split("::")[1:]) |
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
85 |
|
814 | 86 |
def GetIcon(self): |
87 |
return self.Icon |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
88 |
|
814 | 89 |
def SetIcon(self, icon): |
90 |
self.Icon = icon |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
91 |
|
814 | 92 |
def IsViewing(self, tagname): |
93 |
return self.GetTagName() == tagname |
|
94 |
||
95 |
def IsDebugging(self): |
|
96 |
return self.Debug |
|
97 |
||
98 |
def SetMode(self, mode): |
|
99 |
pass |
|
100 |
||
101 |
def ResetBuffer(self): |
|
102 |
pass |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
103 |
|
814 | 104 |
def IsModified(self): |
105 |
return False |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
106 |
|
814 | 107 |
def CheckSaveBeforeClosing(self): |
108 |
return True |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
109 |
|
814 | 110 |
def Save(self): |
111 |
pass |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
112 |
|
814 | 113 |
def SaveAs(self): |
114 |
pass |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
115 |
|
814 | 116 |
def GetBufferState(self): |
117 |
if self.Controler is not None: |
|
118 |
return self.Controler.GetBufferState() |
|
119 |
return False, False |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
120 |
|
814 | 121 |
def Undo(self): |
122 |
if self.Controler is not None: |
|
123 |
self.Controler.LoadPrevious() |
|
124 |
self.RefreshView() |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
125 |
|
814 | 126 |
def Redo(self): |
127 |
if self.Controler is not None: |
|
128 |
self.Controler.LoadNext() |
|
129 |
self.RefreshView() |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
130 |
|
814 | 131 |
def Find(self, direction, search_params): |
132 |
pass |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
133 |
|
814 | 134 |
def HasNoModel(self): |
135 |
return False |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
136 |
|
814 | 137 |
def RefreshView(self, variablepanel=True): |
138 |
if variablepanel: |
|
139 |
self.RefreshVariablePanel() |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
140 |
|
814 | 141 |
def RefreshVariablePanel(self): |
142 |
if self.VariableEditor is not None: |
|
143 |
self.VariableEditor.RefreshView() |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
144 |
|
814 | 145 |
def GetConfNodeMenuItems(self): |
146 |
return self.MenuItems |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
147 |
|
814 | 148 |
def RefreshConfNodeMenu(self, confnode_menu): |
149 |
pass |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
150 |
|
814 | 151 |
def _Refresh(self, *args): |
152 |
self.ParentWindow._Refresh(*args) |
|
153 |
||
154 |
def RefreshScaling(self, refresh=True): |
|
155 |
pass |
|
156 |
||
157 |
def AddHighlight(self, infos, start, end, highlight_type): |
|
158 |
if self.VariableEditor is not None and infos[0] in ["var_local", "var_input", "var_output", "var_inout"]: |
|
159 |
self.VariableEditor.AddVariableHighlight(infos[1:], highlight_type) |
|
160 |
||
161 |
def RemoveHighlight(self, infos, start, end, highlight_type): |
|
162 |
if self.VariableEditor is not None and infos[0] in ["var_local", "var_input", "var_output", "var_inout"]: |
|
163 |
self.VariableEditor.RemoveVariableHighlight(infos[1:], highlight_type) |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1615
diff
changeset
|
164 |
|
814 | 165 |
def ClearHighlights(self, highlight_type=None): |
166 |
if self.VariableEditor is not None: |
|
167 |
self.VariableEditor.ClearHighlights(highlight_type) |