author | Edouard Tisserant <edouard.tisserant@gmail.com> |
Wed, 16 Oct 2024 12:18:14 +0200 | |
changeset 4030 | 45532de22b75 |
parent 3906 | f831ff63ca6e |
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:
1565
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:
1565
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:
1565
diff
changeset
|
7 |
# Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
1680
6db967480b7d
make run Beremiz and PLCOpen Editor, if full path contain non-lating
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1581
diff
changeset
|
8 |
# Copyright (C) 2017: Andrey Skvortsov |
814 | 9 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1565
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:
1565
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:
1565
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:
1565
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:
1565
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:
1565
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:
1565
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:
1565
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:
1565
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:
1565
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:
1565
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:
1565
diff
changeset
|
24 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
814 | 25 |
|
1826
91796f408540
fix usage of python2-only print statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1815
diff
changeset
|
26 |
|
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
27 |
|
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
28 |
|
1732
94ffe74e6895
clean-up: fix PEP8 E401 multiple imports on one line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
29 |
import os |
94ffe74e6895
clean-up: fix PEP8 E401 multiple imports on one line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
30 |
import sys |
94ffe74e6895
clean-up: fix PEP8 E401 multiple imports on one line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
31 |
import getopt |
1792
4d1de8b0183f
unify exception handling of Beremiz and PLCOpenEditor
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1791
diff
changeset
|
32 |
|
1832
0f1081928d65
fix wrong-import-order. first standard modules are imported, then others
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1826
diff
changeset
|
33 |
import wx |
3570
eb915a9fdcb0
IDE: fix About dialog not showing (wxPython4 sequel), update copyright section.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2737
diff
changeset
|
34 |
import wx.adv |
1832
0f1081928d65
fix wrong-import-order. first standard modules are imported, then others
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1826
diff
changeset
|
35 |
|
1560
4ce8492159ab
add version with commit hash to 'About' dialogs for Beremiz IDE and PLCOpenEditor
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1533
diff
changeset
|
36 |
import version |
1680
6db967480b7d
make run Beremiz and PLCOpen Editor, if full path contain non-lating
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1581
diff
changeset
|
37 |
import util.paths as paths |
1792
4d1de8b0183f
unify exception handling of Beremiz and PLCOpenEditor
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1791
diff
changeset
|
38 |
import util.ExceptionHandler |
1834
cd42b426028b
fix ungrouped imports from package X
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
39 |
from util.misc import InstallLocalRessources |
1872
866fb3ab8778
fix pylint error "(undefined-variable) Undefined variable 'X'"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
40 |
from docutil.docpdf import open_pdf |
1814
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
41 |
from IDEFrame import IDEFrame, AppendMenu |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
42 |
from IDEFrame import \ |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
43 |
TITLE, \ |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
44 |
EDITORTOOLBAR, \ |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
45 |
FILEMENU, \ |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
46 |
EDITMENU, \ |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
47 |
DISPLAYMENU, \ |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
48 |
PROJECTTREE, \ |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
49 |
POUINSTANCEVARIABLESPANEL, \ |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
50 |
LIBRARYTREE, \ |
1850
614396cbffbf
fix pylint warning '(unused-import), Unused import connectors'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
51 |
PAGETITLES, \ |
614396cbffbf
fix pylint warning '(unused-import), Unused import connectors'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
52 |
DecodeFileSystemPath |
1814
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
53 |
from editors.Viewer import Viewer |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
54 |
from PLCControler import PLCControler |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
55 |
from dialogs import ProjectDialog |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
56 |
from dialogs.AboutDialog import ShowAboutDialog |
1791
3216ed1ba1f7
fix problem running PLCOpenEditor
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1783
diff
changeset
|
57 |
|
814 | 58 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1781
diff
changeset
|
59 |
# ------------------------------------------------------------------------------- |
814 | 60 |
# PLCOpenEditor Main Class |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1781
diff
changeset
|
61 |
# ------------------------------------------------------------------------------- |
814 | 62 |
|
63 |
# Define PLCOpenEditor FileMenu extra items id |
|
1773
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
64 |
[ |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
65 |
ID_PLCOPENEDITORFILEMENUGENERATE, |
2532
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
66 |
ID_PLCOPENEDITORFILEMENUGENERATEAS, |
3766 | 67 |
] = [wx.NewIdRef() for _init_coll_FileMenu_Items in range(2)] |
814 | 68 |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
69 |
|
1814
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
70 |
beremiz_dir = paths.AbsDir(__file__) |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
71 |
|
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
72 |
|
814 | 73 |
class PLCOpenEditor(IDEFrame): |
74 |
||
75 |
def _init_coll_FileMenu_Items(self, parent): |
|
76 |
AppendMenu(parent, help='', id=wx.ID_NEW, |
|
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
77 |
kind=wx.ITEM_NORMAL, text=_('New') + '\tCTRL+N') |
814 | 78 |
AppendMenu(parent, help='', id=wx.ID_OPEN, |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
79 |
kind=wx.ITEM_NORMAL, text=_('Open') + '\tCTRL+O') |
814 | 80 |
AppendMenu(parent, help='', id=wx.ID_CLOSE, |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
81 |
kind=wx.ITEM_NORMAL, text=_('Close Tab') + '\tCTRL+W') |
814 | 82 |
AppendMenu(parent, help='', id=wx.ID_CLOSE_ALL, |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
83 |
kind=wx.ITEM_NORMAL, text=_('Close Project') + '\tCTRL+SHIFT+W') |
814 | 84 |
parent.AppendSeparator() |
85 |
AppendMenu(parent, help='', id=wx.ID_SAVE, |
|
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
86 |
kind=wx.ITEM_NORMAL, text=_('Save') + '\tCTRL+S') |
814 | 87 |
AppendMenu(parent, help='', id=wx.ID_SAVEAS, |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
88 |
kind=wx.ITEM_NORMAL, text=_('Save As...') + '\tCTRL+SHIFT+S') |
814 | 89 |
AppendMenu(parent, help='', id=ID_PLCOPENEDITORFILEMENUGENERATE, |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
90 |
kind=wx.ITEM_NORMAL, text=_('Generate Program') + '\tCTRL+G') |
2532
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
91 |
AppendMenu(parent, help='', id=ID_PLCOPENEDITORFILEMENUGENERATEAS, |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
92 |
kind=wx.ITEM_NORMAL, text=_('Generate Program As...') + '\tCTRL+SHIFT+G') |
814 | 93 |
parent.AppendSeparator() |
94 |
AppendMenu(parent, help='', id=wx.ID_PAGE_SETUP, |
|
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
95 |
kind=wx.ITEM_NORMAL, text=_('Page Setup') + '\tCTRL+ALT+P') |
814 | 96 |
AppendMenu(parent, help='', id=wx.ID_PREVIEW, |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
97 |
kind=wx.ITEM_NORMAL, text=_('Preview') + '\tCTRL+SHIFT+P') |
814 | 98 |
AppendMenu(parent, help='', id=wx.ID_PRINT, |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
99 |
kind=wx.ITEM_NORMAL, text=_('Print') + '\tCTRL+P') |
814 | 100 |
parent.AppendSeparator() |
101 |
AppendMenu(parent, help='', id=wx.ID_PROPERTIES, |
|
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
102 |
kind=wx.ITEM_NORMAL, text=_('&Properties')) |
814 | 103 |
parent.AppendSeparator() |
104 |
AppendMenu(parent, help='', id=wx.ID_EXIT, |
|
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
105 |
kind=wx.ITEM_NORMAL, text=_('Quit') + '\tCTRL+Q') |
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
106 |
|
814 | 107 |
self.Bind(wx.EVT_MENU, self.OnNewProjectMenu, id=wx.ID_NEW) |
108 |
self.Bind(wx.EVT_MENU, self.OnOpenProjectMenu, id=wx.ID_OPEN) |
|
109 |
self.Bind(wx.EVT_MENU, self.OnCloseTabMenu, id=wx.ID_CLOSE) |
|
110 |
self.Bind(wx.EVT_MENU, self.OnCloseProjectMenu, id=wx.ID_CLOSE_ALL) |
|
111 |
self.Bind(wx.EVT_MENU, self.OnSaveProjectMenu, id=wx.ID_SAVE) |
|
112 |
self.Bind(wx.EVT_MENU, self.OnSaveProjectAsMenu, id=wx.ID_SAVEAS) |
|
113 |
self.Bind(wx.EVT_MENU, self.OnGenerateProgramMenu, |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1762
diff
changeset
|
114 |
id=ID_PLCOPENEDITORFILEMENUGENERATE) |
2532
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
115 |
self.Bind(wx.EVT_MENU, self.OnGenerateProgramAsMenu, |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
116 |
id=ID_PLCOPENEDITORFILEMENUGENERATEAS) |
814 | 117 |
self.Bind(wx.EVT_MENU, self.OnPageSetupMenu, id=wx.ID_PAGE_SETUP) |
118 |
self.Bind(wx.EVT_MENU, self.OnPreviewMenu, id=wx.ID_PREVIEW) |
|
119 |
self.Bind(wx.EVT_MENU, self.OnPrintMenu, id=wx.ID_PRINT) |
|
120 |
self.Bind(wx.EVT_MENU, self.OnPropertiesMenu, id=wx.ID_PROPERTIES) |
|
121 |
self.Bind(wx.EVT_MENU, self.OnQuitMenu, id=wx.ID_EXIT) |
|
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
122 |
|
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
123 |
self.AddToMenuToolBar([(wx.ID_NEW, "new", _('New'), None), |
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
124 |
(wx.ID_OPEN, "open", _('Open'), None), |
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
125 |
(wx.ID_SAVE, "save", _('Save'), None), |
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
126 |
(wx.ID_SAVEAS, "saveas", _('Save As...'), None), |
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
127 |
(wx.ID_PRINT, "print", _('Print'), None), |
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
128 |
(ID_PLCOPENEDITORFILEMENUGENERATE, "Build", _('Generate Program'), None)]) |
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
129 |
|
814 | 130 |
def _init_coll_HelpMenu_Items(self, parent): |
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
131 |
AppendMenu(parent, help='', id=wx.ID_HELP, |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
132 |
kind=wx.ITEM_NORMAL, text=_('PLCOpenEditor') + '\tF1') |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1781
diff
changeset
|
133 |
# AppendMenu(parent, help='', id=wx.ID_HELP_CONTENTS, |
814 | 134 |
# kind=wx.ITEM_NORMAL, text=u'PLCOpen\tF2') |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1781
diff
changeset
|
135 |
# AppendMenu(parent, help='', id=wx.ID_HELP_CONTEXT, |
814 | 136 |
# kind=wx.ITEM_NORMAL, text=u'IEC 61131-3\tF3') |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1718
diff
changeset
|
137 |
|
1762
fcc406143e5b
clean-up: fix PEP8 E731 do not assign a lambda expression, use a def
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1760
diff
changeset
|
138 |
def handler(event): |
fcc406143e5b
clean-up: fix PEP8 E731 do not assign a lambda expression, use a def
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1760
diff
changeset
|
139 |
return wx.MessageBox( |
fcc406143e5b
clean-up: fix PEP8 E731 do not assign a lambda expression, use a def
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1760
diff
changeset
|
140 |
version.GetCommunityHelpMsg(), |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
141 |
_('Community support'), |
1762
fcc406143e5b
clean-up: fix PEP8 E731 do not assign a lambda expression, use a def
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1760
diff
changeset
|
142 |
wx.OK | wx.ICON_INFORMATION) |
fcc406143e5b
clean-up: fix PEP8 E731 do not assign a lambda expression, use a def
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1760
diff
changeset
|
143 |
|
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
144 |
menu_entry = parent.Append(help='', id=wx.ID_ANY, kind=wx.ITEM_NORMAL, text=_('Community support')) |
2737
38afed869ff6
Finished fixing Wx IDs abuse. There was still some wasted IDs because of wx.NewId calls in many places where it wasn't needed, and those IDs were not re-used. As a consequence Beremiz was making exception crashing after a few hours of intensive use.
Edouard Tisserant
parents:
2532
diff
changeset
|
145 |
self.Bind(wx.EVT_MENU, handler, menu_entry) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1718
diff
changeset
|
146 |
|
814 | 147 |
AppendMenu(parent, help='', id=wx.ID_ABOUT, |
3750
f62625418bff
automated conversion using 2to3-3.9 tool
GP Orcullo <kinsamanka@gmail.com>
parents:
3570
diff
changeset
|
148 |
kind=wx.ITEM_NORMAL, text=_('About')) |
814 | 149 |
self.Bind(wx.EVT_MENU, self.OnPLCOpenEditorMenu, id=wx.ID_HELP) |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1781
diff
changeset
|
150 |
# self.Bind(wx.EVT_MENU, self.OnPLCOpenMenu, id=wx.ID_HELP_CONTENTS) |
814 | 151 |
self.Bind(wx.EVT_MENU, self.OnAboutMenu, id=wx.ID_ABOUT) |
152 |
||
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
153 |
def __init__(self, parent, fileOpen=None): |
1781
b112bfdde5cc
clean-up: fix PEP8 E266 too many leading '#' for block comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1773
diff
changeset
|
154 |
""" Constructor of the PLCOpenEditor class. |
b112bfdde5cc
clean-up: fix PEP8 E266 too many leading '#' for block comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1773
diff
changeset
|
155 |
|
b112bfdde5cc
clean-up: fix PEP8 E266 too many leading '#' for block comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1773
diff
changeset
|
156 |
:param parent: The parent window. |
b112bfdde5cc
clean-up: fix PEP8 E266 too many leading '#' for block comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1773
diff
changeset
|
157 |
:param fileOpen: The filepath to open if no controler defined (default: None). |
b112bfdde5cc
clean-up: fix PEP8 E266 too many leading '#' for block comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1773
diff
changeset
|
158 |
""" |
1533
aca8f43483e9
fix issues in PLCOpenEditor with moving from wxWidgets 2.8 to 3.0
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1492
diff
changeset
|
159 |
self.icon = wx.Icon(os.path.join(beremiz_dir, "images", "poe.ico"), wx.BITMAP_TYPE_ICO) |
814 | 160 |
IDEFrame.__init__(self, parent) |
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
161 |
|
814 | 162 |
result = None |
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
163 |
|
814 | 164 |
# Open the filepath if defined |
165 |
if fileOpen is not None: |
|
166 |
fileOpen = DecodeFileSystemPath(fileOpen, False) |
|
167 |
if os.path.isfile(fileOpen): |
|
168 |
# Create a new controller |
|
169 |
controler = PLCControler() |
|
170 |
result = controler.OpenXMLFile(fileOpen) |
|
1330
96b242e4c59d
Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Laurent Bessard
parents:
1312
diff
changeset
|
171 |
self.Controler = controler |
96b242e4c59d
Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Laurent Bessard
parents:
1312
diff
changeset
|
172 |
self.LibraryPanel.SetController(controler) |
96b242e4c59d
Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Laurent Bessard
parents:
1312
diff
changeset
|
173 |
self.ProjectTree.Enable(True) |
96b242e4c59d
Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Laurent Bessard
parents:
1312
diff
changeset
|
174 |
self.PouInstanceVariablesPanel.SetController(controler) |
96b242e4c59d
Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Laurent Bessard
parents:
1312
diff
changeset
|
175 |
self._Refresh(PROJECTTREE, POUINSTANCEVARIABLESPANEL, LIBRARYTREE) |
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
176 |
|
814 | 177 |
# Define PLCOpenEditor icon |
1533
aca8f43483e9
fix issues in PLCOpenEditor with moving from wxWidgets 2.8 to 3.0
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1492
diff
changeset
|
178 |
self.SetIcon(self.icon) |
814 | 179 |
|
180 |
self.Bind(wx.EVT_CLOSE, self.OnCloseFrame) |
|
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
181 |
|
814 | 182 |
self._Refresh(TITLE, EDITORTOOLBAR, FILEMENU, EDITMENU, DISPLAYMENU) |
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
183 |
|
814 | 184 |
if result is not None: |
1581
2295fdc5c271
fix translation strings with multiple parameters
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1580
diff
changeset
|
185 |
(num, line) = result |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
186 |
self.ShowErrorMessage(_("PLC syntax error at line {a1}:\n{a2}").format(a1=num, a2=line)) |
814 | 187 |
|
188 |
def OnCloseFrame(self, event): |
|
189 |
if self.Controler is None or self.CheckSaveBeforeClosing(_("Close Application")): |
|
190 |
self.AUIManager.UnInit() |
|
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
191 |
|
814 | 192 |
self.SaveLastState() |
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
193 |
|
814 | 194 |
event.Skip() |
195 |
else: |
|
196 |
event.Veto() |
|
197 |
||
198 |
def RefreshTitle(self): |
|
199 |
name = _("PLCOpenEditor") |
|
200 |
if self.Controler is not None: |
|
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1732
diff
changeset
|
201 |
self.SetTitle("%s - %s" % (name, self.Controler.GetFilename())) |
814 | 202 |
else: |
203 |
self.SetTitle(name) |
|
204 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1781
diff
changeset
|
205 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1781
diff
changeset
|
206 |
# File Menu Functions |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1781
diff
changeset
|
207 |
# ------------------------------------------------------------------------------- |
814 | 208 |
|
209 |
def RefreshFileMenu(self): |
|
210 |
MenuToolBar = self.Panes["MenuToolBar"] |
|
211 |
if self.Controler is not None: |
|
212 |
selected = self.TabsOpened.GetSelection() |
|
213 |
if selected >= 0: |
|
214 |
graphic_viewer = isinstance(self.TabsOpened.GetPage(selected), Viewer) |
|
215 |
else: |
|
216 |
graphic_viewer = False |
|
217 |
if self.TabsOpened.GetPageCount() > 0: |
|
218 |
self.FileMenu.Enable(wx.ID_CLOSE, True) |
|
219 |
if graphic_viewer: |
|
220 |
self.FileMenu.Enable(wx.ID_PREVIEW, True) |
|
221 |
self.FileMenu.Enable(wx.ID_PRINT, True) |
|
222 |
MenuToolBar.EnableTool(wx.ID_PRINT, True) |
|
223 |
else: |
|
224 |
self.FileMenu.Enable(wx.ID_PREVIEW, False) |
|
225 |
self.FileMenu.Enable(wx.ID_PRINT, False) |
|
226 |
MenuToolBar.EnableTool(wx.ID_PRINT, False) |
|
227 |
else: |
|
228 |
self.FileMenu.Enable(wx.ID_CLOSE, False) |
|
229 |
self.FileMenu.Enable(wx.ID_PREVIEW, False) |
|
230 |
self.FileMenu.Enable(wx.ID_PRINT, False) |
|
231 |
MenuToolBar.EnableTool(wx.ID_PRINT, False) |
|
232 |
self.FileMenu.Enable(wx.ID_PAGE_SETUP, True) |
|
233 |
project_modified = not self.Controler.ProjectIsSaved() |
|
234 |
self.FileMenu.Enable(wx.ID_SAVE, project_modified) |
|
235 |
MenuToolBar.EnableTool(wx.ID_SAVE, project_modified) |
|
236 |
self.FileMenu.Enable(wx.ID_PROPERTIES, True) |
|
237 |
self.FileMenu.Enable(wx.ID_CLOSE_ALL, True) |
|
238 |
self.FileMenu.Enable(wx.ID_SAVEAS, True) |
|
239 |
MenuToolBar.EnableTool(wx.ID_SAVEAS, True) |
|
240 |
self.FileMenu.Enable(ID_PLCOPENEDITORFILEMENUGENERATE, True) |
|
2531
f5891ce3228e
Add "Generate Program" to toolbar in PLCOpenEditor standalone mode.
Schlumpf <schlumpf@kr-ll.de>
parents:
2497
diff
changeset
|
241 |
MenuToolBar.EnableTool(ID_PLCOPENEDITORFILEMENUGENERATE, True) |
2532
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
242 |
self.FileMenu.Enable(ID_PLCOPENEDITORFILEMENUGENERATEAS, True) |
814 | 243 |
else: |
244 |
self.FileMenu.Enable(wx.ID_CLOSE, False) |
|
245 |
self.FileMenu.Enable(wx.ID_PAGE_SETUP, False) |
|
246 |
self.FileMenu.Enable(wx.ID_PREVIEW, False) |
|
247 |
self.FileMenu.Enable(wx.ID_PRINT, False) |
|
248 |
MenuToolBar.EnableTool(wx.ID_PRINT, False) |
|
249 |
self.FileMenu.Enable(wx.ID_SAVE, False) |
|
250 |
MenuToolBar.EnableTool(wx.ID_SAVE, False) |
|
251 |
self.FileMenu.Enable(wx.ID_PROPERTIES, False) |
|
252 |
self.FileMenu.Enable(wx.ID_CLOSE_ALL, False) |
|
253 |
self.FileMenu.Enable(wx.ID_SAVEAS, False) |
|
254 |
MenuToolBar.EnableTool(wx.ID_SAVEAS, False) |
|
255 |
self.FileMenu.Enable(ID_PLCOPENEDITORFILEMENUGENERATE, False) |
|
2531
f5891ce3228e
Add "Generate Program" to toolbar in PLCOpenEditor standalone mode.
Schlumpf <schlumpf@kr-ll.de>
parents:
2497
diff
changeset
|
256 |
MenuToolBar.EnableTool(ID_PLCOPENEDITORFILEMENUGENERATE, False) |
2532
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
257 |
self.FileMenu.Enable(ID_PLCOPENEDITORFILEMENUGENERATEAS, False) |
814 | 258 |
|
259 |
def OnNewProjectMenu(self, event): |
|
260 |
if self.Controler is not None and not self.CheckSaveBeforeClosing(): |
|
261 |
return |
|
262 |
dialog = ProjectDialog(self) |
|
263 |
if dialog.ShowModal() == wx.ID_OK: |
|
264 |
properties = dialog.GetValues() |
|
265 |
self.ResetView() |
|
266 |
self.Controler = PLCControler() |
|
267 |
self.Controler.CreateNewProject(properties) |
|
268 |
self.LibraryPanel.SetController(self.Controler) |
|
1295
2ad168756c5e
Fixed bug no contextual menu displayed in left panel tree when creating new project
Laurent Bessard
parents:
1030
diff
changeset
|
269 |
self.ProjectTree.Enable(True) |
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
270 |
self._Refresh(TITLE, FILEMENU, EDITMENU, PROJECTTREE, POUINSTANCEVARIABLESPANEL, |
814 | 271 |
LIBRARYTREE) |
272 |
||
273 |
def OnOpenProjectMenu(self, event): |
|
274 |
if self.Controler is not None and not self.CheckSaveBeforeClosing(): |
|
275 |
return |
|
276 |
filepath = "" |
|
277 |
if self.Controler is not None: |
|
278 |
filepath = self.Controler.GetFilePath() |
|
279 |
if filepath != "": |
|
280 |
directory = os.path.dirname(filepath) |
|
281 |
else: |
|
282 |
directory = os.getcwd() |
|
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
283 |
|
814 | 284 |
result = None |
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
285 |
|
814 | 286 |
dialog = wx.FileDialog(self, _("Choose a file"), directory, "", _("PLCOpen files (*.xml)|*.xml|All files|*.*"), wx.OPEN) |
287 |
if dialog.ShowModal() == wx.ID_OK: |
|
288 |
filepath = dialog.GetPath() |
|
289 |
if os.path.isfile(filepath): |
|
290 |
self.ResetView() |
|
291 |
controler = PLCControler() |
|
292 |
result = controler.OpenXMLFile(filepath) |
|
1330
96b242e4c59d
Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Laurent Bessard
parents:
1312
diff
changeset
|
293 |
self.Controler = controler |
96b242e4c59d
Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Laurent Bessard
parents:
1312
diff
changeset
|
294 |
self.LibraryPanel.SetController(controler) |
96b242e4c59d
Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Laurent Bessard
parents:
1312
diff
changeset
|
295 |
self.ProjectTree.Enable(True) |
96b242e4c59d
Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Laurent Bessard
parents:
1312
diff
changeset
|
296 |
self.PouInstanceVariablesPanel.SetController(controler) |
96b242e4c59d
Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Laurent Bessard
parents:
1312
diff
changeset
|
297 |
self._Refresh(PROJECTTREE, LIBRARYTREE) |
814 | 298 |
self._Refresh(TITLE, EDITORTOOLBAR, FILEMENU, EDITMENU) |
299 |
dialog.Destroy() |
|
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
300 |
|
814 | 301 |
if result is not None: |
1581
2295fdc5c271
fix translation strings with multiple parameters
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1580
diff
changeset
|
302 |
(num, line) = result |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
303 |
self.ShowErrorMessage(_("PLC syntax error at line {a1}:\n{a2}").format(a1=num, a2=line)) |
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
304 |
|
814 | 305 |
def OnCloseProjectMenu(self, event): |
306 |
if not self.CheckSaveBeforeClosing(): |
|
307 |
return |
|
308 |
self.ResetView() |
|
309 |
self._Refresh(TITLE, EDITORTOOLBAR, FILEMENU, EDITMENU) |
|
310 |
||
311 |
def OnSaveProjectMenu(self, event): |
|
312 |
self.SaveProject() |
|
313 |
||
314 |
def OnSaveProjectAsMenu(self, event): |
|
315 |
self.SaveProjectAs() |
|
316 |
||
317 |
def OnGenerateProgramMenu(self, event): |
|
2532
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
318 |
result = self.Controler.GetProgramFilePath() |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
319 |
if not result: |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
320 |
self.GenerateProgramAs() |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
321 |
else: |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
322 |
self.GenerateProgram(result) |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
323 |
|
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
324 |
def OnGenerateProgramAsMenu(self, event): |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
325 |
self.GenerateProgramAs() |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
326 |
|
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
327 |
def GenerateProgramAs(self): |
2497
e04824ad26e4
Fix an exception on wx-3.0-gtk3 in PLCOpenEditor when generating ST files.
Schlumpf <schlumpf@kr-ll.de>
parents:
2177
diff
changeset
|
328 |
dialog = wx.FileDialog(self, _("Choose a file"), os.getcwd(), os.path.basename(self.Controler.GetProgramFilePath()), _("ST files (*.st)|*.st|All files|*.*"), wx.SAVE | wx.CHANGE_DIR) |
814 | 329 |
if dialog.ShowModal() == wx.ID_OK: |
2532
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
330 |
self.GenerateProgram(dialog.GetPath()) |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
331 |
dialog.Destroy() |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
332 |
|
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
333 |
def GenerateProgram(self, filepath=None): |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
334 |
message_text = "" |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
335 |
header, icon = _("Done"), wx.ICON_INFORMATION |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
336 |
if os.path.isdir(os.path.dirname(filepath)): |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
337 |
_program, errors, warnings = self.Controler.GenerateProgram(filepath) |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
338 |
message_text += "".join([_("warning: %s\n") % warning for warning in warnings]) |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
339 |
if len(errors) > 0: |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
340 |
message_text += "".join([_("error: %s\n") % error for error in errors]) |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
341 |
message_text += _("Can't generate program to file %s!") % filepath |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
342 |
header, icon = _("Error"), wx.ICON_ERROR |
814 | 343 |
else: |
2532
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
344 |
message_text += _("Program was successfully generated!") |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
345 |
else: |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
346 |
message_text += _("\"%s\" is not a valid folder!") % os.path.dirname(filepath) |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
347 |
header, icon = _("Error"), wx.ICON_ERROR |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
348 |
message = wx.MessageDialog(self, message_text, header, wx.OK | icon) |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
349 |
message.ShowModal() |
b9d6f5d7e0f1
Create a "Generate Program As..." menu to make the "Generate Program" toolbutton even more useful.
Schlumpf <schlumpf@kr-ll.de>
parents:
2531
diff
changeset
|
350 |
message.Destroy() |
814 | 351 |
|
352 |
def OnPLCOpenEditorMenu(self, event): |
|
353 |
wx.MessageBox(_("No documentation available.\nComing soon.")) |
|
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
354 |
|
814 | 355 |
def OnPLCOpenMenu(self, event): |
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
356 |
open_pdf(os.path.join(beremiz_dir, "plcopen", "TC6_XML_V101.pdf")) |
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
357 |
|
814 | 358 |
def OnAboutMenu(self, event): |
3570
eb915a9fdcb0
IDE: fix About dialog not showing (wxPython4 sequel), update copyright section.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2737
diff
changeset
|
359 |
info = wx.adv.AboutDialogInfo() |
3906
f831ff63ca6e
IDE: display contents of revisions.txt (put there by installer builder script) in About Dialog.
Edouard Tisserant <edouard@beremiz.fr>
parents:
3793
diff
changeset
|
360 |
info = version.GetAboutDialogInfo(info) |
1565
894f31f8ca64
make about dialog boxes use standard wx about dialogs
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1560
diff
changeset
|
361 |
info.Name = "PLCOpenEditor" |
894f31f8ca64
make about dialog boxes use standard wx about dialogs
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1560
diff
changeset
|
362 |
info.Description = _("PLCOpenEditor is part of Beremiz project.\n\n" |
894f31f8ca64
make about dialog boxes use standard wx about dialogs
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1560
diff
changeset
|
363 |
"Beremiz is an ") + info.Description |
894f31f8ca64
make about dialog boxes use standard wx about dialogs
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1560
diff
changeset
|
364 |
info.Icon = wx.Icon(os.path.join(beremiz_dir, "images", "aboutlogo.png"), wx.BITMAP_TYPE_PNG) |
894f31f8ca64
make about dialog boxes use standard wx about dialogs
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1560
diff
changeset
|
365 |
ShowAboutDialog(self, info) |
814 | 366 |
|
367 |
def SaveProject(self): |
|
368 |
result = self.Controler.SaveXMLFile() |
|
369 |
if not result: |
|
370 |
self.SaveProjectAs() |
|
371 |
else: |
|
372 |
self._Refresh(TITLE, FILEMENU, PAGETITLES) |
|
1451
94e620cbd9de
Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents:
1388
diff
changeset
|
373 |
|
814 | 374 |
def SaveProjectAs(self): |
375 |
filepath = self.Controler.GetFilePath() |
|
376 |
if filepath != "": |
|
377 |
directory, filename = os.path.split(filepath) |
|
378 |
else: |
|
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1732
diff
changeset
|
379 |
directory, filename = os.getcwd(), "%(projectName)s.xml" % self.Controler.GetProjectProperties() |
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1744
diff
changeset
|
380 |
dialog = wx.FileDialog(self, _("Choose a file"), directory, filename, _("PLCOpen files (*.xml)|*.xml|All files|*.*"), wx.SAVE | wx.OVERWRITE_PROMPT) |
814 | 381 |
if dialog.ShowModal() == wx.ID_OK: |
382 |
filepath = dialog.GetPath() |
|
383 |
if os.path.isdir(os.path.dirname(filepath)): |
|
384 |
result = self.Controler.SaveXMLFile(filepath) |
|
385 |
if not result: |
|
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1732
diff
changeset
|
386 |
self.ShowErrorMessage(_("Can't save project to file %s!") % filepath) |
814 | 387 |
else: |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1732
diff
changeset
|
388 |
self.ShowErrorMessage(_("\"%s\" is not a valid folder!") % os.path.dirname(filepath)) |
814 | 389 |
self._Refresh(TITLE, FILEMENU, PAGETITLES) |
390 |
dialog.Destroy() |
|
391 |
||
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
|
392 |
|
1814
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
393 |
class PLCOpenEditorApp(wx.App): |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
394 |
# def SetOpenFile( |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
395 |
|
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
396 |
def PrintUsage(self): |
1826
91796f408540
fix usage of python2-only print statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1815
diff
changeset
|
397 |
print("\nUsage of PLCOpenEditor.py :") |
91796f408540
fix usage of python2-only print statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1815
diff
changeset
|
398 |
print("\n %s [Filepath]\n" % sys.argv[0]) |
1814
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
399 |
|
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
400 |
def ParseCommandLine(self): |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
401 |
# Parse options given to PLCOpenEditor in command line |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
402 |
try: |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
403 |
opts, args = getopt.getopt(sys.argv[1:], "h", ["help"]) |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
404 |
except getopt.GetoptError: |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
405 |
# print help information and exit: |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
406 |
self.PrintUsage() |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
407 |
sys.exit(2) |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
408 |
|
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
409 |
# Extract if help has been requested |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1834
diff
changeset
|
410 |
for o, _a in opts: |
1814
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
411 |
if o in ("-h", "--help"): |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
412 |
self.PrintUsage() |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
413 |
sys.exit() |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
414 |
|
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
415 |
# Extract the optional filename to open |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
416 |
self.fileOpen = None |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
417 |
if len(args) > 1: |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
418 |
self.PrintUsage() |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
419 |
sys.exit() |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
420 |
elif len(args) == 1: |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
421 |
self.fileOpen = args[0] |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
422 |
|
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
423 |
def OnInit(self): |
1815
f0600fe03a89
add application name for PLCOpenEditor
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1814
diff
changeset
|
424 |
self.SetAppName('plcopeneditor') |
1814
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
425 |
self.ParseCommandLine() |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
426 |
InstallLocalRessources(beremiz_dir) |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
427 |
util.ExceptionHandler.AddExceptHook(version.app_version) |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
428 |
self.frame = PLCOpenEditor(None, fileOpen=self.fileOpen) |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
429 |
return True |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
430 |
|
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
431 |
def Show(self): |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
432 |
self.frame.Show() |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
433 |
|
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
434 |
|
814 | 435 |
if __name__ == '__main__': |
1814
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
436 |
app = PLCOpenEditorApp() |
fc387c4fc1d4
rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1792
diff
changeset
|
437 |
app.Show() |
814 | 438 |
app.MainLoop() |