author | greg |
Wed, 16 Sep 2009 15:19:58 +0200 | |
changeset 592 | b98df76c6fd5 |
parent 580 | 2ae92a99ac10 |
child 608 | daa1e1c3fba4 |
permissions | -rwxr-xr-x |
0 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
3 |
||
4 |
#This file is part of CanFestival, a library implementing CanOpen Stack. |
|
5 |
# |
|
6 |
#Copyright (C): Edouard TISSERANT, Francis DUPIN and Laurent BESSARD |
|
7 |
# |
|
8 |
#See COPYING file for copyrights details. |
|
9 |
# |
|
10 |
#This library is free software; you can redistribute it and/or |
|
11 |
#modify it under the terms of the GNU Lesser General Public |
|
12 |
#License as published by the Free Software Foundation; either |
|
13 |
#version 2.1 of the License, or (at your option) any later version. |
|
14 |
# |
|
15 |
#This library is distributed in the hope that it will be useful, |
|
16 |
#but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17 |
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
18 |
#Lesser General Public License for more details. |
|
19 |
# |
|
20 |
#You should have received a copy of the GNU Lesser General Public |
|
21 |
#License along with this library; if not, write to the Free Software |
|
22 |
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
23 |
||
24 |
import wx |
|
25 |
||
26 |
from types import * |
|
27 |
import os, re, platform, sys, time, traceback, getopt |
|
28 |
||
580 | 29 |
__version__ = "$Revision: 1.48 $" |
30 |
||
31 |
if __name__ == '__main__': |
|
32 |
def usage(): |
|
33 |
print _("\nUsage of objdictedit.py :") |
|
34 |
print "\n %s [Filepath, ...]\n"%sys.argv[0] |
|
35 |
||
36 |
try: |
|
37 |
opts, args = getopt.getopt(sys.argv[1:], "h", ["help"]) |
|
38 |
except getopt.GetoptError: |
|
39 |
# print help information and exit: |
|
40 |
usage() |
|
41 |
sys.exit(2) |
|
42 |
||
43 |
for o, a in opts: |
|
44 |
if o in ("-h", "--help"): |
|
45 |
usage() |
|
46 |
sys.exit() |
|
47 |
||
48 |
app = wx.PySimpleApp() |
|
49 |
||
50 |
ScriptDirectory = os.path.split(os.path.realpath(__file__))[0] |
|
51 |
||
52 |
# Import module for internationalization |
|
53 |
import gettext |
|
54 |
import __builtin__ |
|
55 |
||
56 |
# Get folder containing translation files |
|
57 |
localedir = os.path.join(ScriptDirectory,"locale") |
|
58 |
# Get the default language |
|
59 |
langid = wx.LANGUAGE_DEFAULT |
|
60 |
# Define translation domain (name of translation files) |
|
61 |
domain = "objdictgen" |
|
62 |
||
63 |
# Define locale for wx |
|
64 |
loc = __builtin__.__dict__.get('loc', None) |
|
65 |
if loc is None: |
|
66 |
loc = wx.Locale(langid) |
|
67 |
__builtin__.__dict__['loc'] = loc |
|
68 |
# Define location for searching translation files |
|
69 |
loc.AddCatalogLookupPathPrefix(localedir) |
|
70 |
# Define locale domain |
|
71 |
loc.AddCatalog(domain) |
|
72 |
||
73 |
if __name__ == '__main__': |
|
74 |
__builtin__.__dict__['_'] = wx.GetTranslation |
|
0 | 75 |
|
206 | 76 |
from node import OD_Subindex, OD_MultipleSubindexes, OD_IdenticalSubindexes, OD_IdenticalIndexes |
77 |
||
0 | 78 |
from nodemanager import * |
205 | 79 |
from subindextable import * |
80 |
from commondialogs import * |
|
0 | 81 |
from doc_index.DS301_index import * |
82 |
||
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
83 |
try: |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
84 |
import wx.html |
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
85 |
|
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
86 |
EVT_HTML_URL_CLICK = wx.NewId() |
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
87 |
|
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
88 |
class HtmlWindowUrlClick(wx.PyEvent): |
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
89 |
def __init__(self, linkinfo): |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
90 |
wx.PyEvent.__init__(self) |
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
91 |
self.SetEventType(EVT_HTML_URL_CLICK) |
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
92 |
self.linkinfo = (linkinfo.GetHref(), linkinfo.GetTarget()) |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
93 |
|
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
94 |
class UrlClickHtmlWindow(wx.html.HtmlWindow): |
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
95 |
""" HTML window that generates and OnLinkClicked event. |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
96 |
|
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
97 |
Use this to avoid having to override HTMLWindow |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
98 |
""" |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
99 |
def OnLinkClicked(self, linkinfo): |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
100 |
wx.PostEvent(self, HtmlWindowUrlClick(linkinfo)) |
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
101 |
|
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
102 |
def Bind(self, event, handler, source=None, id=wx.ID_ANY, id2=wx.ID_ANY): |
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
103 |
if event == HtmlWindowUrlClick: |
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
104 |
self.Connect(-1, -1, EVT_HTML_URL_CLICK, handler) |
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
105 |
else: |
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
106 |
wx.html.HtmlWindow.Bind(event, handler, source=source, id=id, id2=id2) |
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
107 |
|
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
108 |
#------------------------------------------------------------------------------- |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
109 |
# Html Frame |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
110 |
#------------------------------------------------------------------------------- |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
111 |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
112 |
[ID_HTMLFRAME, ID_HTMLFRAMEHTMLCONTENT] = [wx.NewId() for _init_ctrls in range(2)] |
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
113 |
|
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
114 |
class HtmlFrame(wx.Frame): |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
115 |
def _init_ctrls(self, prnt): |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
116 |
wx.Frame.__init__(self, id=ID_HTMLFRAME, name='HtmlFrame', |
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
117 |
parent=prnt, pos=wx.Point(320, 231), size=wx.Size(853, 616), |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
118 |
style=wx.DEFAULT_FRAME_STYLE, title='') |
273 | 119 |
self.Bind(wx.EVT_CLOSE, self.OnCloseFrame) |
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
120 |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
121 |
self.HtmlContent = UrlClickHtmlWindow(id=ID_HTMLFRAMEHTMLCONTENT, |
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
122 |
name='HtmlContent', parent=self, pos=wx.Point(0, 0), |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
123 |
size=wx.Size(-1, -1), style=wx.html.HW_SCROLLBAR_AUTO|wx.html.HW_NO_SELECTION) |
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
124 |
self.HtmlContent.Bind(HtmlWindowUrlClick, self.OnLinkClick) |
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
125 |
|
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
126 |
def __init__(self, parent, opened): |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
127 |
self._init_ctrls(parent) |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
128 |
self.HtmlFrameOpened = opened |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
129 |
|
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
130 |
def SetHtmlCode(self, htmlcode): |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
131 |
self.HtmlContent.SetPage(htmlcode) |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
132 |
|
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
133 |
def SetHtmlPage(self, htmlpage): |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
134 |
self.HtmlContent.LoadPage(htmlpage) |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
135 |
|
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
136 |
def OnCloseFrame(self, event): |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
137 |
self.HtmlFrameOpened.remove(self.GetTitle()) |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
138 |
event.Skip() |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
139 |
|
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
140 |
def OnLinkClick(self, event): |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
141 |
url = event.linkinfo[0] |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
142 |
try: |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
143 |
import webbrowser |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
144 |
except ImportError: |
580 | 145 |
wx.MessageBox(_('Please point your browser at: %s') % url) |
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
146 |
else: |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
147 |
webbrowser.open(url) |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
148 |
|
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
149 |
Html_Window = True |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
150 |
except: |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
151 |
Html_Window = False |
0 | 152 |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
153 |
[ID_OBJDICTEDIT, ID_OBJDICTEDITFILEOPENED, |
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
154 |
ID_OBJDICTEDITHELPBAR, |
0 | 155 |
] = [wx.NewId() for _init_ctrls in range(3)] |
156 |
||
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
157 |
[ID_OBJDICTEDITFILEMENUIMPORTEDS, ID_OBJDICTEDITFILEMENUEXPORTEDS, |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
158 |
ID_OBJDICTEDITFILEMENUEXPORTC, |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
159 |
] = [wx.NewId() for _init_coll_FileMenu_Items in range(3)] |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
160 |
|
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
161 |
[ID_OBJDICTEDITEDITMENUNODEINFOS, ID_OBJDICTEDITEDITMENUDS301PROFILE, |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
162 |
ID_OBJDICTEDITEDITMENUDS302PROFILE, ID_OBJDICTEDITEDITMENUOTHERPROFILE, |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
163 |
] = [wx.NewId() for _init_coll_EditMenu_Items in range(4)] |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
164 |
|
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
165 |
[ID_OBJDICTEDITADDMENUSDOSERVER, ID_OBJDICTEDITADDMENUSDOCLIENT, |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
166 |
ID_OBJDICTEDITADDMENUPDOTRANSMIT, ID_OBJDICTEDITADDMENUPDORECEIVE, |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
167 |
ID_OBJDICTEDITADDMENUMAPVARIABLE, ID_OBJDICTEDITADDMENUUSERTYPE, |
0 | 168 |
] = [wx.NewId() for _init_coll_AddMenu_Items in range(6)] |
169 |
||
170 |
class objdictedit(wx.Frame): |
|
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
171 |
def _init_coll_MenuBar_Menus(self, parent): |
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
172 |
if self.ModeSolo: |
580 | 173 |
parent.Append(menu=self.FileMenu, title=_('File')) |
174 |
parent.Append(menu=self.EditMenu, title=_('Edit')) |
|
175 |
parent.Append(menu=self.AddMenu, title=_('Add')) |
|
176 |
parent.Append(menu=self.HelpMenu, title=_('Help')) |
|
0 | 177 |
|
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
178 |
def _init_coll_FileMenu_Items(self, parent): |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
179 |
parent.Append(help='', id=wx.ID_NEW, |
580 | 180 |
kind=wx.ITEM_NORMAL, text=_('New\tCTRL+N')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
181 |
parent.Append(help='', id=wx.ID_OPEN, |
580 | 182 |
kind=wx.ITEM_NORMAL, text=_('Open\tCTRL+O')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
183 |
parent.Append(help='', id=wx.ID_CLOSE, |
580 | 184 |
kind=wx.ITEM_NORMAL, text=_('Close\tCTRL+W')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
185 |
parent.AppendSeparator() |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
186 |
parent.Append(help='', id=wx.ID_SAVE, |
580 | 187 |
kind=wx.ITEM_NORMAL, text=_('Save\tCTRL+S')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
188 |
parent.Append(help='', id=wx.ID_SAVEAS, |
580 | 189 |
kind=wx.ITEM_NORMAL, text=_('Save As...\tALT+S')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
190 |
parent.AppendSeparator() |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
191 |
parent.Append(help='', id=ID_OBJDICTEDITFILEMENUIMPORTEDS, |
580 | 192 |
kind=wx.ITEM_NORMAL, text=_('Import EDS file')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
193 |
parent.Append(help='', id=ID_OBJDICTEDITFILEMENUEXPORTEDS, |
580 | 194 |
kind=wx.ITEM_NORMAL, text=_('Export to EDS file')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
195 |
parent.Append(help='', id=ID_OBJDICTEDITFILEMENUEXPORTC, |
580 | 196 |
kind=wx.ITEM_NORMAL, text=_('Build Dictionary\tCTRL+B')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
197 |
parent.AppendSeparator() |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
198 |
parent.Append(help='', id=wx.ID_EXIT, |
580 | 199 |
kind=wx.ITEM_NORMAL, text=_('Exit')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
200 |
self.Bind(wx.EVT_MENU, self.OnNewMenu, id=wx.ID_NEW) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
201 |
self.Bind(wx.EVT_MENU, self.OnOpenMenu, id=wx.ID_OPEN) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
202 |
self.Bind(wx.EVT_MENU, self.OnCloseMenu, id=wx.ID_CLOSE) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
203 |
self.Bind(wx.EVT_MENU, self.OnSaveMenu, id=wx.ID_SAVE) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
204 |
self.Bind(wx.EVT_MENU, self.OnSaveAsMenu, id=wx.ID_SAVEAS) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
205 |
self.Bind(wx.EVT_MENU, self.OnImportEDSMenu, |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
206 |
id=ID_OBJDICTEDITFILEMENUIMPORTEDS) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
207 |
self.Bind(wx.EVT_MENU, self.OnExportEDSMenu, |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
208 |
id=ID_OBJDICTEDITFILEMENUEXPORTEDS) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
209 |
self.Bind(wx.EVT_MENU, self.OnExportCMenu, |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
210 |
id=ID_OBJDICTEDITFILEMENUEXPORTC) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
211 |
self.Bind(wx.EVT_MENU, self.OnQuitMenu, id=wx.ID_EXIT) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
212 |
|
0 | 213 |
def _init_coll_EditMenu_Items(self, parent): |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
214 |
parent.Append(help='', id=wx.ID_REFRESH, |
580 | 215 |
kind=wx.ITEM_NORMAL, text=_('Refresh\tCTRL+R')) |
0 | 216 |
parent.AppendSeparator() |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
217 |
parent.Append(help='', id=wx.ID_UNDO, |
580 | 218 |
kind=wx.ITEM_NORMAL, text=_('Undo\tCTRL+Z')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
219 |
parent.Append(help='', id=wx.ID_REDO, |
580 | 220 |
kind=wx.ITEM_NORMAL, text=_('Redo\tCTRL+Y')) |
0 | 221 |
parent.AppendSeparator() |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
222 |
parent.Append(help='', id=ID_OBJDICTEDITEDITMENUNODEINFOS, |
580 | 223 |
kind=wx.ITEM_NORMAL, text=_('Node infos')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
224 |
parent.Append(help='', id=ID_OBJDICTEDITEDITMENUDS301PROFILE, |
580 | 225 |
kind=wx.ITEM_NORMAL, text=_('DS-301 Profile')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
226 |
parent.Append(help='', id=ID_OBJDICTEDITEDITMENUDS302PROFILE, |
580 | 227 |
kind=wx.ITEM_NORMAL, text=_('DS-302 Profile')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
228 |
parent.Append(help='', id=ID_OBJDICTEDITEDITMENUOTHERPROFILE, |
580 | 229 |
kind=wx.ITEM_NORMAL, text=_('Other Profile')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
230 |
self.Bind(wx.EVT_MENU, self.OnRefreshMenu, id=wx.ID_REFRESH) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
231 |
self.Bind(wx.EVT_MENU, self.OnUndoMenu, id=wx.ID_UNDO) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
232 |
self.Bind(wx.EVT_MENU, self.OnRedoMenu, id=wx.ID_REDO) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
233 |
self.Bind(wx.EVT_MENU, self.OnNodeInfosMenu, |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
234 |
id=ID_OBJDICTEDITEDITMENUNODEINFOS) |
0 | 235 |
self.Bind(wx.EVT_MENU, self.OnCommunicationMenu, |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
236 |
id=ID_OBJDICTEDITEDITMENUDS301PROFILE) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
237 |
self.Bind(wx.EVT_MENU, self.OnOtherCommunicationMenu, |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
238 |
id=ID_OBJDICTEDITEDITMENUDS302PROFILE) |
0 | 239 |
self.Bind(wx.EVT_MENU, self.OnEditProfileMenu, |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
240 |
id=ID_OBJDICTEDITEDITMENUOTHERPROFILE) |
0 | 241 |
|
242 |
def _init_coll_AddMenu_Items(self, parent): |
|
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
243 |
parent.Append(help='', id=ID_OBJDICTEDITADDMENUSDOSERVER, |
580 | 244 |
kind=wx.ITEM_NORMAL, text=_('SDO Server')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
245 |
parent.Append(help='', id=ID_OBJDICTEDITADDMENUSDOCLIENT, |
580 | 246 |
kind=wx.ITEM_NORMAL, text=_('SDO Client')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
247 |
parent.Append(help='', id=ID_OBJDICTEDITADDMENUPDOTRANSMIT, |
580 | 248 |
kind=wx.ITEM_NORMAL, text=_('PDO Transmit')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
249 |
parent.Append(help='', id=ID_OBJDICTEDITADDMENUPDORECEIVE, |
580 | 250 |
kind=wx.ITEM_NORMAL, text=_('PDO Receive')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
251 |
parent.Append(help='', id=ID_OBJDICTEDITADDMENUMAPVARIABLE, |
580 | 252 |
kind=wx.ITEM_NORMAL, text=_('Map Variable')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
253 |
parent.Append(help='', id=ID_OBJDICTEDITADDMENUUSERTYPE, |
580 | 254 |
kind=wx.ITEM_NORMAL, text=_('User Type')) |
0 | 255 |
self.Bind(wx.EVT_MENU, self.OnAddSDOServerMenu, |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
256 |
id=ID_OBJDICTEDITADDMENUSDOSERVER) |
0 | 257 |
self.Bind(wx.EVT_MENU, self.OnAddSDOClientMenu, |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
258 |
id=ID_OBJDICTEDITADDMENUSDOCLIENT) |
0 | 259 |
self.Bind(wx.EVT_MENU, self.OnAddPDOTransmitMenu, |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
260 |
id=ID_OBJDICTEDITADDMENUPDOTRANSMIT) |
0 | 261 |
self.Bind(wx.EVT_MENU, self.OnAddPDOReceiveMenu, |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
262 |
id=ID_OBJDICTEDITADDMENUPDORECEIVE) |
0 | 263 |
self.Bind(wx.EVT_MENU, self.OnAddMapVariableMenu, |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
264 |
id=ID_OBJDICTEDITADDMENUMAPVARIABLE) |
0 | 265 |
self.Bind(wx.EVT_MENU, self.OnAddUserTypeMenu, |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
266 |
id=ID_OBJDICTEDITADDMENUUSERTYPE) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
267 |
|
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
268 |
def _init_coll_HelpMenu_Items(self, parent): |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
269 |
parent.Append(help='', id=wx.ID_HELP, |
580 | 270 |
kind=wx.ITEM_NORMAL, text=_('DS-301 Standard\tF1')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
271 |
self.Bind(wx.EVT_MENU, self.OnHelpDS301Menu, id=wx.ID_HELP) |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
272 |
parent.Append(help='', id=wx.ID_HELP_CONTEXT, |
580 | 273 |
kind=wx.ITEM_NORMAL, text=_('CAN Festival Docs\tF2')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
274 |
self.Bind(wx.EVT_MENU, self.OnHelpCANFestivalMenu, id=wx.ID_HELP_CONTEXT) |
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
275 |
if Html_Window and self.ModeSolo: |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
276 |
parent.Append(help='', id=wx.ID_ABOUT, |
580 | 277 |
kind=wx.ITEM_NORMAL, text=_('About')) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
278 |
self.Bind(wx.EVT_MENU, self.OnAboutMenu, id=wx.ID_ABOUT) |
0 | 279 |
|
280 |
def _init_coll_HelpBar_Fields(self, parent): |
|
281 |
parent.SetFieldsCount(3) |
|
282 |
||
283 |
parent.SetStatusText(number=0, text='') |
|
284 |
parent.SetStatusText(number=1, text='') |
|
285 |
parent.SetStatusText(number=2, text='') |
|
286 |
||
287 |
parent.SetStatusWidths([100, 110, -1]) |
|
288 |
||
289 |
def _init_utils(self): |
|
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
290 |
self.MenuBar = wx.MenuBar() |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
291 |
self.MenuBar.SetEvtHandlerEnabled(True) |
0 | 292 |
|
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
293 |
if self.ModeSolo: |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
294 |
self.FileMenu = wx.Menu(title='') |
0 | 295 |
self.EditMenu = wx.Menu(title='') |
296 |
self.AddMenu = wx.Menu(title='') |
|
297 |
self.HelpMenu = wx.Menu(title='') |
|
298 |
||
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
299 |
self._init_coll_MenuBar_Menus(self.MenuBar) |
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
300 |
if self.ModeSolo: |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
301 |
self._init_coll_FileMenu_Items(self.FileMenu) |
0 | 302 |
self._init_coll_EditMenu_Items(self.EditMenu) |
303 |
self._init_coll_AddMenu_Items(self.AddMenu) |
|
304 |
self._init_coll_HelpMenu_Items(self.HelpMenu) |
|
305 |
||
306 |
def _init_ctrls(self, prnt): |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
307 |
wx.Frame.__init__(self, id=ID_OBJDICTEDIT, name='objdictedit', |
0 | 308 |
parent=prnt, pos=wx.Point(149, 178), size=wx.Size(1000, 700), |
580 | 309 |
style=wx.DEFAULT_FRAME_STYLE, title=_('Objdictedit')) |
0 | 310 |
self._init_utils() |
311 |
self.SetClientSize(wx.Size(1000, 700)) |
|
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
312 |
self.SetMenuBar(self.MenuBar) |
273 | 313 |
self.Bind(wx.EVT_CLOSE, self.OnCloseFrame) |
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
314 |
if not self.ModeSolo: |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
315 |
self.Bind(wx.EVT_MENU, self.OnSaveMenu, id=wx.ID_SAVE) |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
316 |
accel = wx.AcceleratorTable([wx.AcceleratorEntry(wx.ACCEL_CTRL, 83, wx.ID_SAVE)]) |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
317 |
self.SetAcceleratorTable(accel) |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
318 |
|
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
319 |
self.FileOpened = wx.Notebook(id=ID_OBJDICTEDITFILEOPENED, |
0 | 320 |
name='FileOpened', parent=self, pos=wx.Point(0, 0), |
321 |
size=wx.Size(0, 0), style=0) |
|
322 |
self.FileOpened.Bind(wx.EVT_NOTEBOOK_PAGE_CHANGED, |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
323 |
self.OnFileSelectedChanged, id=ID_OBJDICTEDITFILEOPENED) |
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
324 |
|
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
325 |
self.HelpBar = wx.StatusBar(id=ID_OBJDICTEDITHELPBAR, name='HelpBar', |
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
326 |
parent=self, style=wx.ST_SIZEGRIP) |
0 | 327 |
self._init_coll_HelpBar_Fields(self.HelpBar) |
328 |
self.SetStatusBar(self.HelpBar) |
|
329 |
||
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
330 |
def __init__(self, parent, manager = None, filesOpen = []): |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
331 |
self.ModeSolo = manager == None |
0 | 332 |
self._init_ctrls(parent) |
333 |
self.HtmlFrameOpened = [] |
|
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
334 |
self.BusId = None |
491 | 335 |
self.Closing = False |
0 | 336 |
|
410 | 337 |
icon = wx.Icon(os.path.join(ScriptDirectory,"networkedit.ico"),wx.BITMAP_TYPE_ICO) |
409 | 338 |
self.SetIcon(icon) |
339 |
||
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
340 |
if self.ModeSolo: |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
341 |
self.Manager = NodeManager() |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
342 |
for filepath in filesOpen: |
527
7d5c74cc8f91
- Fix bug with relative path when node opened from command line
greg
parents:
512
diff
changeset
|
343 |
result = self.Manager.OpenFileInCurrent(os.path.abspath(filepath)) |
512 | 344 |
if isinstance(result, (IntType, LongType)): |
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
345 |
new_editingpanel = EditingPanel(self.FileOpened, self, self.Manager) |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
346 |
new_editingpanel.SetIndex(result) |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
347 |
self.FileOpened.AddPage(new_editingpanel, "") |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
348 |
else: |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
349 |
self.Manager = manager |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
350 |
for index in self.Manager.GetBufferIndexes(): |
299 | 351 |
new_editingpanel = EditingPanel(self.FileOpened, self, self.Manager) |
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
352 |
new_editingpanel.SetIndex(index) |
232 | 353 |
self.FileOpened.AddPage(new_editingpanel, "") |
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
354 |
|
491 | 355 |
if self.Manager.GetBufferNumber() > 0: |
356 |
window = self.FileOpened.GetPage(0) |
|
357 |
if window: |
|
358 |
self.Manager.ChangeCurrentNode(window.GetIndex()) |
|
359 |
self.FileOpened.SetSelection(0) |
|
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
360 |
|
258 | 361 |
if self.Manager.CurrentDS302Defined(): |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
362 |
self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUDS302PROFILE, True) |
0 | 363 |
else: |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
364 |
self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUDS302PROFILE, False) |
0 | 365 |
self.RefreshEditMenu() |
366 |
self.RefreshBufferState() |
|
367 |
self.RefreshProfileMenu() |
|
368 |
self.RefreshTitle() |
|
369 |
self.RefreshMainMenu() |
|
370 |
||
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
371 |
def SetBusId(self, bus_id): |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
372 |
self.BusId = bus_id |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
373 |
|
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
374 |
def GetBusId(self): |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
375 |
return self.BusId |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
376 |
|
491 | 377 |
def IsClosing(self): |
378 |
return self.Closing |
|
379 |
||
0 | 380 |
def OnAddSDOServerMenu(self, event): |
381 |
self.Manager.AddSDOServerToCurrent() |
|
382 |
self.RefreshBufferState() |
|
383 |
self.RefreshCurrentIndexList() |
|
384 |
event.Skip() |
|
385 |
||
386 |
def OnAddSDOClientMenu(self, event): |
|
387 |
self.Manager.AddSDOClientToCurrent() |
|
388 |
self.RefreshBufferState() |
|
389 |
self.RefreshCurrentIndexList() |
|
390 |
event.Skip() |
|
391 |
||
392 |
def OnAddPDOTransmitMenu(self, event): |
|
393 |
self.Manager.AddPDOTransmitToCurrent() |
|
394 |
self.RefreshBufferState() |
|
395 |
self.RefreshCurrentIndexList() |
|
396 |
event.Skip() |
|
397 |
||
398 |
def OnAddPDOReceiveMenu(self, event): |
|
399 |
self.Manager.AddPDOReceiveToCurrent() |
|
400 |
self.RefreshBufferState() |
|
401 |
self.RefreshCurrentIndexList() |
|
402 |
event.Skip() |
|
403 |
||
404 |
def OnAddMapVariableMenu(self, event): |
|
405 |
self.AddMapVariable() |
|
406 |
event.Skip() |
|
407 |
||
408 |
def OnAddUserTypeMenu(self, event): |
|
409 |
self.AddUserType() |
|
410 |
event.Skip() |
|
411 |
||
412 |
def OnFileSelectedChanged(self, event): |
|
491 | 413 |
if not self.Closing: |
414 |
selected = event.GetSelection() |
|
415 |
# At init selected = -1 |
|
416 |
if selected >= 0: |
|
417 |
window = self.FileOpened.GetPage(selected) |
|
418 |
if window: |
|
419 |
self.Manager.ChangeCurrentNode(window.GetIndex()) |
|
420 |
wx.CallAfter(self.RefreshBufferState) |
|
421 |
self.RefreshStatusBar() |
|
422 |
self.RefreshProfileMenu() |
|
0 | 423 |
event.Skip() |
424 |
||
425 |
def OnHelpDS301Menu(self, event): |
|
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
426 |
find_index = False |
0 | 427 |
selected = self.FileOpened.GetSelection() |
428 |
if selected >= 0: |
|
429 |
window = self.FileOpened.GetPage(selected) |
|
430 |
result = window.GetSelection() |
|
431 |
if result: |
|
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
432 |
find_index = True |
0 | 433 |
index, subIndex = result |
158
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
149
diff
changeset
|
434 |
result = OpenPDFDocIndex(index, ScriptDirectory) |
512 | 435 |
if isinstance(result, (StringType, UnicodeType)): |
580 | 436 |
message = wx.MessageDialog(self, result, _("ERROR"), wx.OK|wx.ICON_ERROR) |
0 | 437 |
message.ShowModal() |
438 |
message.Destroy() |
|
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
439 |
if not find_index: |
158
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
149
diff
changeset
|
440 |
result = OpenPDFDocIndex(None, ScriptDirectory) |
512 | 441 |
if isinstance(result, (StringType, UnicodeType)): |
580 | 442 |
message = wx.MessageDialog(self, result, _("ERROR"), wx.OK|wx.ICON_ERROR) |
72
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
443 |
message.ShowModal() |
68524f7c58b5
Code for avoiding possible problem on Window while importing html module
lbessard
parents:
68
diff
changeset
|
444 |
message.Destroy() |
0 | 445 |
event.Skip() |
446 |
||
447 |
def OnHelpCANFestivalMenu(self, event): |
|
158
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
149
diff
changeset
|
448 |
#self.OpenHtmlFrame("CAN Festival Reference", os.path.join(ScriptDirectory, "doc/canfestival.html"), wx.Size(1000, 600)) |
341 | 449 |
if wx.Platform == '__WXMSW__': |
386
0f56a144ba5f
Now, PDF doc of objdictgen can be opened with acrobat reader on windows
etisserant
parents:
348
diff
changeset
|
450 |
readerpath = get_acroversion() |
0f56a144ba5f
Now, PDF doc of objdictgen can be opened with acrobat reader on windows
etisserant
parents:
348
diff
changeset
|
451 |
readerexepath = os.path.join(readerpath,"AcroRd32.exe") |
0f56a144ba5f
Now, PDF doc of objdictgen can be opened with acrobat reader on windows
etisserant
parents:
348
diff
changeset
|
452 |
if(os.path.isfile(readerexepath)): |
408
f85552acc2bf
fixed bug to open pdf with acrobat reader on Win32 in objdictedit and networkedit
greg
parents:
386
diff
changeset
|
453 |
os.spawnl(os.P_DETACH, readerexepath, "AcroRd32.exe", '"%s"'%os.path.join(ScriptDirectory, "doc","manual_en.pdf")) |
569
ecaac955c16a
fix message dialog when objdictedit can't find the pdf reader
greg
parents:
548
diff
changeset
|
454 |
else: |
580 | 455 |
message = wx.MessageDialog(self, _("Check if Acrobat Reader is correctly installed on your computer"), _("ERROR"), wx.OK|wx.ICON_ERROR) |
569
ecaac955c16a
fix message dialog when objdictedit can't find the pdf reader
greg
parents:
548
diff
changeset
|
456 |
message.ShowModal() |
ecaac955c16a
fix message dialog when objdictedit can't find the pdf reader
greg
parents:
548
diff
changeset
|
457 |
message.Destroy() |
ecaac955c16a
fix message dialog when objdictedit can't find the pdf reader
greg
parents:
548
diff
changeset
|
458 |
else: |
ecaac955c16a
fix message dialog when objdictedit can't find the pdf reader
greg
parents:
548
diff
changeset
|
459 |
try: |
ecaac955c16a
fix message dialog when objdictedit can't find the pdf reader
greg
parents:
548
diff
changeset
|
460 |
os.system("xpdf -remote CANFESTIVAL %s %d &"%(os.path.join(ScriptDirectory, "doc/manual_en.pdf"),16)) |
ecaac955c16a
fix message dialog when objdictedit can't find the pdf reader
greg
parents:
548
diff
changeset
|
461 |
except: |
580 | 462 |
message = wx.MessageDialog(self, _("Check if xpdf is correctly installed on your computer"), _("ERROR"), wx.OK|wx.ICON_ERROR) |
569
ecaac955c16a
fix message dialog when objdictedit can't find the pdf reader
greg
parents:
548
diff
changeset
|
463 |
message.ShowModal() |
ecaac955c16a
fix message dialog when objdictedit can't find the pdf reader
greg
parents:
548
diff
changeset
|
464 |
message.Destroy() |
0 | 465 |
event.Skip() |
466 |
||
467 |
def OnAboutMenu(self, event): |
|
580 | 468 |
self.OpenHtmlFrame(_("About CAN Festival"), os.path.join(ScriptDirectory, "doc/about.html"), wx.Size(500, 450)) |
0 | 469 |
event.Skip() |
470 |
||
471 |
def OpenHtmlFrame(self, title, file, size): |
|
472 |
if title not in self.HtmlFrameOpened: |
|
473 |
self.HtmlFrameOpened.append(title) |
|
474 |
window = HtmlFrame(self, self.HtmlFrameOpened) |
|
475 |
window.SetTitle(title) |
|
476 |
window.SetHtmlPage(file) |
|
477 |
window.SetClientSize(size) |
|
478 |
window.Show() |
|
479 |
||
480 |
def OnQuitMenu(self, event): |
|
481 |
self.Close() |
|
482 |
event.Skip() |
|
483 |
||
484 |
def OnCloseFrame(self, event): |
|
491 | 485 |
self.Closing = True |
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
486 |
if not self.ModeSolo: |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
487 |
if getattr(self, "_onclose", None) != None: |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
488 |
self._onclose() |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
489 |
event.Skip() |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
490 |
elif self.Manager.OneFileHasChanged(): |
580 | 491 |
dialog = wx.MessageDialog(self, _("There are changes, do you want to save?"), _("Close Application"), wx.YES_NO|wx.CANCEL|wx.ICON_QUESTION) |
0 | 492 |
answer = dialog.ShowModal() |
493 |
dialog.Destroy() |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
494 |
if answer == wx.ID_YES: |
491 | 495 |
for i in xrange(self.Manager.GetBufferNumber()): |
0 | 496 |
if self.Manager.CurrentIsSaved(): |
497 |
self.Manager.CloseCurrent() |
|
498 |
else: |
|
499 |
self.Save() |
|
500 |
self.Manager.CloseCurrent(True) |
|
501 |
event.Skip() |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
502 |
elif answer == wx.ID_NO: |
0 | 503 |
event.Skip() |
491 | 504 |
else: |
505 |
event.Veto() |
|
0 | 506 |
else: |
507 |
event.Skip() |
|
508 |
||
509 |
#------------------------------------------------------------------------------- |
|
510 |
# Refresh Functions |
|
511 |
#------------------------------------------------------------------------------- |
|
512 |
||
513 |
def RefreshTitle(self): |
|
514 |
if self.FileOpened.GetPageCount() > 0: |
|
580 | 515 |
self.SetTitle(_("Objdictedit - %s")%self.Manager.GetCurrentFilename()) |
516 |
else: |
|
517 |
self.SetTitle(_("Objdictedit")) |
|
0 | 518 |
|
519 |
def OnRefreshMenu(self, event): |
|
520 |
self.RefreshCurrentIndexList() |
|
521 |
event.Skip() |
|
522 |
||
523 |
def RefreshCurrentIndexList(self): |
|
524 |
selected = self.FileOpened.GetSelection() |
|
525 |
window = self.FileOpened.GetPage(selected) |
|
526 |
window.RefreshIndexList() |
|
527 |
||
528 |
def RefreshStatusBar(self): |
|
491 | 529 |
selected = self.FileOpened.GetSelection() |
530 |
if selected >= 0: |
|
531 |
window = self.FileOpened.GetPage(selected) |
|
532 |
selection = window.GetSelection() |
|
533 |
if selection: |
|
534 |
index, subIndex = selection |
|
535 |
if self.Manager.IsCurrentEntry(index): |
|
580 | 536 |
self.HelpBar.SetStatusText(_("Index: 0x%04X")%index, 0) |
537 |
self.HelpBar.SetStatusText(_("Subindex: 0x%02X")%subIndex, 1) |
|
491 | 538 |
entryinfos = self.Manager.GetEntryInfos(index) |
539 |
name = entryinfos["name"] |
|
580 | 540 |
category = _("Optional") |
491 | 541 |
if entryinfos["need"]: |
580 | 542 |
category = _("Mandatory") |
491 | 543 |
struct = "VAR" |
544 |
number = "" |
|
545 |
if entryinfos["struct"] & OD_IdenticalIndexes: |
|
580 | 546 |
number = _(" possibly defined %d times")%entryinfos["nbmax"] |
491 | 547 |
if entryinfos["struct"] & OD_IdenticalSubindexes: |
548 |
struct = "REC" |
|
549 |
elif entryinfos["struct"] & OD_MultipleSubindexes: |
|
550 |
struct = "ARRAY" |
|
580 | 551 |
text = _("%s: %s entry of struct %s%s.")%(name,category,struct,number) |
491 | 552 |
self.HelpBar.SetStatusText(text, 2) |
205 | 553 |
else: |
554 |
for i in xrange(3): |
|
555 |
self.HelpBar.SetStatusText("", i) |
|
491 | 556 |
else: |
557 |
for i in xrange(3): |
|
558 |
self.HelpBar.SetStatusText("", i) |
|
0 | 559 |
|
560 |
def RefreshMainMenu(self): |
|
491 | 561 |
if self.FileOpened.GetPageCount() > 0: |
562 |
if self.ModeSolo: |
|
563 |
self.MenuBar.EnableTop(1, True) |
|
564 |
self.MenuBar.EnableTop(2, True) |
|
565 |
self.FileMenu.Enable(wx.ID_CLOSE, True) |
|
566 |
self.FileMenu.Enable(wx.ID_SAVE, True) |
|
567 |
self.FileMenu.Enable(wx.ID_SAVEAS, True) |
|
568 |
self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUEXPORTEDS, True) |
|
569 |
self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUEXPORTC, True) |
|
570 |
else: |
|
571 |
self.MenuBar.EnableTop(0, True) |
|
572 |
self.MenuBar.EnableTop(1, True) |
|
573 |
else: |
|
574 |
if self.ModeSolo: |
|
575 |
self.MenuBar.EnableTop(1, False) |
|
576 |
self.MenuBar.EnableTop(2, False) |
|
577 |
self.FileMenu.Enable(wx.ID_CLOSE, False) |
|
578 |
self.FileMenu.Enable(wx.ID_SAVE, False) |
|
579 |
self.FileMenu.Enable(wx.ID_SAVEAS, False) |
|
580 |
self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUEXPORTEDS, False) |
|
581 |
self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUEXPORTC, False) |
|
582 |
else: |
|
583 |
self.MenuBar.EnableTop(0, False) |
|
584 |
self.MenuBar.EnableTop(1, False) |
|
0 | 585 |
|
586 |
def RefreshEditMenu(self): |
|
491 | 587 |
if self.FileOpened.GetPageCount() > 0: |
588 |
undo, redo = self.Manager.GetCurrentBufferState() |
|
589 |
self.EditMenu.Enable(wx.ID_UNDO, undo) |
|
590 |
self.EditMenu.Enable(wx.ID_REDO, redo) |
|
591 |
else: |
|
592 |
self.EditMenu.Enable(wx.ID_UNDO, False) |
|
593 |
self.EditMenu.Enable(wx.ID_REDO, False) |
|
0 | 594 |
|
595 |
def RefreshProfileMenu(self): |
|
491 | 596 |
profile = self.Manager.GetCurrentProfileName() |
597 |
edititem = self.EditMenu.FindItemById(ID_OBJDICTEDITEDITMENUOTHERPROFILE) |
|
598 |
if edititem: |
|
599 |
length = self.AddMenu.GetMenuItemCount() |
|
600 |
for i in xrange(length-6): |
|
601 |
additem = self.AddMenu.FindItemByPosition(6) |
|
602 |
self.AddMenu.Delete(additem.GetId()) |
|
603 |
if profile not in ("None", "DS-301"): |
|
580 | 604 |
edititem.SetText(_("%s Profile")%profile) |
491 | 605 |
edititem.Enable(True) |
606 |
self.AddMenu.AppendSeparator() |
|
607 |
for text, indexes in self.Manager.GetCurrentSpecificMenu(): |
|
608 |
new_id = wx.NewId() |
|
609 |
self.AddMenu.Append(help='', id=new_id, kind=wx.ITEM_NORMAL, text=text) |
|
610 |
self.Bind(wx.EVT_MENU, self.GetProfileCallBack(text), id=new_id) |
|
611 |
else: |
|
580 | 612 |
edititem.SetText(_("Other Profile")) |
491 | 613 |
edititem.Enable(False) |
0 | 614 |
|
615 |
||
616 |
#------------------------------------------------------------------------------- |
|
617 |
# Buffer Functions |
|
618 |
#------------------------------------------------------------------------------- |
|
619 |
||
620 |
def RefreshBufferState(self): |
|
621 |
fileopened = self.Manager.GetAllFilenames() |
|
622 |
for idx, filename in enumerate(fileopened): |
|
623 |
self.FileOpened.SetPageText(idx, filename) |
|
624 |
self.RefreshEditMenu() |
|
625 |
self.RefreshTitle() |
|
626 |
||
627 |
def OnUndoMenu(self, event): |
|
628 |
self.Manager.LoadCurrentPrevious() |
|
629 |
self.RefreshCurrentIndexList() |
|
630 |
self.RefreshBufferState() |
|
631 |
event.Skip() |
|
632 |
||
633 |
def OnRedoMenu(self, event): |
|
634 |
self.Manager.LoadCurrentNext() |
|
635 |
self.RefreshCurrentIndexList() |
|
636 |
self.RefreshBufferState() |
|
637 |
event.Skip() |
|
638 |
||
639 |
||
640 |
#------------------------------------------------------------------------------- |
|
641 |
# Load and Save Funtions |
|
642 |
#------------------------------------------------------------------------------- |
|
643 |
||
644 |
def OnNewMenu(self, event): |
|
645 |
self.FilePath = "" |
|
258 | 646 |
dialog = CreateNodeDialog(self) |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
647 |
if dialog.ShowModal() == wx.ID_OK: |
205 | 648 |
name, id, nodetype, description = dialog.GetValues() |
59 | 649 |
profile, filepath = dialog.GetProfile() |
650 |
NMT = dialog.GetNMTManagement() |
|
651 |
options = dialog.GetOptions() |
|
205 | 652 |
result = self.Manager.CreateNewNode(name, id, nodetype, description, profile, filepath, NMT, options) |
512 | 653 |
if isinstance(result, (IntType, LongType)): |
299 | 654 |
new_editingpanel = EditingPanel(self.FileOpened, self, self.Manager) |
205 | 655 |
new_editingpanel.SetIndex(result) |
59 | 656 |
self.FileOpened.AddPage(new_editingpanel, "") |
205 | 657 |
self.FileOpened.SetSelection(self.FileOpened.GetPageCount() - 1) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
658 |
self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUDS302PROFILE, False) |
59 | 659 |
if "DS302" in options: |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
660 |
self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUDS302PROFILE, True) |
59 | 661 |
self.RefreshBufferState() |
662 |
self.RefreshProfileMenu() |
|
663 |
self.RefreshMainMenu() |
|
0 | 664 |
else: |
580 | 665 |
message = wx.MessageDialog(self, result, _("ERROR"), wx.OK|wx.ICON_ERROR) |
0 | 666 |
message.ShowModal() |
667 |
message.Destroy() |
|
299 | 668 |
dialog.Destroy() |
0 | 669 |
event.Skip() |
670 |
||
671 |
def OnOpenMenu(self, event): |
|
672 |
filepath = self.Manager.GetCurrentFilePath() |
|
673 |
if filepath != "": |
|
674 |
directory = os.path.dirname(filepath) |
|
675 |
else: |
|
676 |
directory = os.getcwd() |
|
580 | 677 |
dialog = wx.FileDialog(self, _("Choose a file"), directory, "", _("OD files (*.od)|*.od|All files|*.*"), wx.OPEN|wx.CHANGE_DIR) |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
678 |
if dialog.ShowModal() == wx.ID_OK: |
0 | 679 |
filepath = dialog.GetPath() |
680 |
if os.path.isfile(filepath): |
|
681 |
result = self.Manager.OpenFileInCurrent(filepath) |
|
512 | 682 |
if isinstance(result, (IntType, LongType)): |
299 | 683 |
new_editingpanel = EditingPanel(self.FileOpened, self, self.Manager) |
205 | 684 |
new_editingpanel.SetIndex(result) |
0 | 685 |
self.FileOpened.AddPage(new_editingpanel, "") |
205 | 686 |
self.FileOpened.SetSelection(self.FileOpened.GetPageCount() - 1) |
0 | 687 |
if self.Manager.CurrentDS302Defined(): |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
688 |
self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUDS302PROFILE, True) |
0 | 689 |
else: |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
690 |
self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUDS302PROFILE, False) |
0 | 691 |
self.RefreshEditMenu() |
692 |
self.RefreshBufferState() |
|
693 |
self.RefreshProfileMenu() |
|
694 |
self.RefreshMainMenu() |
|
695 |
else: |
|
580 | 696 |
message = wx.MessageDialog(self, result, _("Error"), wx.OK|wx.ICON_ERROR) |
0 | 697 |
message.ShowModal() |
698 |
message.Destroy() |
|
699 |
dialog.Destroy() |
|
700 |
event.Skip() |
|
701 |
||
702 |
def OnSaveMenu(self, event): |
|
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
703 |
if not self.ModeSolo and getattr(self, "_onsave", None) != None: |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
704 |
self._onsave() |
488 | 705 |
self.RefreshBufferState() |
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
706 |
else: |
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
707 |
self.Save() |
0 | 708 |
event.Skip() |
709 |
||
710 |
def OnSaveAsMenu(self, event): |
|
711 |
self.SaveAs() |
|
30 | 712 |
event.Skip() |
0 | 713 |
|
714 |
def Save(self): |
|
715 |
result = self.Manager.SaveCurrentInFile() |
|
716 |
if not result: |
|
717 |
self.SaveAs() |
|
512 | 718 |
elif not isinstance(result, (StringType, UnicodeType)): |
0 | 719 |
self.RefreshBufferState() |
720 |
else: |
|
580 | 721 |
message = wx.MessageDialog(self, result, _("Error"), wx.OK|wx.ICON_ERROR) |
0 | 722 |
message.ShowModal() |
723 |
message.Destroy() |
|
724 |
||
725 |
def SaveAs(self): |
|
726 |
filepath = self.Manager.GetCurrentFilePath() |
|
727 |
if filepath != "": |
|
728 |
directory, filename = os.path.split(filepath) |
|
729 |
else: |
|
730 |
directory, filename = os.getcwd(), "%s.od"%self.Manager.GetCurrentNodeInfos()[0] |
|
580 | 731 |
dialog = wx.FileDialog(self, _("Choose a file"), directory, filename, _("OD files (*.od)|*.od|All files|*.*"), wx.SAVE|wx.OVERWRITE_PROMPT|wx.CHANGE_DIR) |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
732 |
if dialog.ShowModal() == wx.ID_OK: |
0 | 733 |
filepath = dialog.GetPath() |
734 |
if os.path.isdir(os.path.dirname(filepath)): |
|
735 |
result = self.Manager.SaveCurrentInFile(filepath) |
|
512 | 736 |
if not isinstance(result, (StringType, UnicodeType)): |
0 | 737 |
self.RefreshBufferState() |
738 |
else: |
|
580 | 739 |
message = wx.MessageDialog(self, result, _("Error"), wx.OK|wx.ICON_ERROR) |
0 | 740 |
message.ShowModal() |
741 |
message.Destroy() |
|
742 |
else: |
|
580 | 743 |
message = wx.MessageDialog(self, _("%s is not a valid folder!")%os.path.dirname(filepath), _("Error"), wx.OK|wx.ICON_ERROR) |
0 | 744 |
message.ShowModal() |
745 |
message.Destroy() |
|
746 |
dialog.Destroy() |
|
747 |
||
748 |
def OnCloseMenu(self, event): |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
749 |
answer = wx.ID_YES |
0 | 750 |
result = self.Manager.CloseCurrent() |
751 |
if not result: |
|
580 | 752 |
dialog = wx.MessageDialog(self, _("There are changes, do you want to save?"), _("Close File"), wx.YES_NO|wx.CANCEL|wx.ICON_QUESTION) |
0 | 753 |
answer = dialog.ShowModal() |
754 |
dialog.Destroy() |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
755 |
if answer == wx.ID_YES: |
0 | 756 |
self.OnSaveMenu(event) |
757 |
if self.Manager.CurrentIsSaved(): |
|
758 |
self.Manager.CloseCurrent() |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
759 |
elif answer == wx.ID_NO: |
0 | 760 |
self.Manager.CloseCurrent(True) |
761 |
if self.FileOpened.GetPageCount() > self.Manager.GetBufferNumber(): |
|
762 |
current = self.FileOpened.GetSelection() |
|
763 |
self.FileOpened.DeletePage(current) |
|
764 |
if self.FileOpened.GetPageCount() > 0: |
|
765 |
self.FileOpened.SetSelection(min(current, self.FileOpened.GetPageCount() - 1)) |
|
766 |
self.RefreshBufferState() |
|
767 |
self.RefreshMainMenu() |
|
768 |
event.Skip() |
|
769 |
||
770 |
||
771 |
#------------------------------------------------------------------------------- |
|
772 |
# Import and Export Functions |
|
773 |
#------------------------------------------------------------------------------- |
|
774 |
||
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
775 |
def OnImportEDSMenu(self, event): |
580 | 776 |
dialog = wx.FileDialog(self, _("Choose a file"), os.getcwd(), "", _("EDS files (*.eds)|*.eds|All files|*.*"), wx.OPEN|wx.CHANGE_DIR) |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
777 |
if dialog.ShowModal() == wx.ID_OK: |
0 | 778 |
filepath = dialog.GetPath() |
779 |
if os.path.isfile(filepath): |
|
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
780 |
result = self.Manager.ImportCurrentFromEDSFile(filepath) |
512 | 781 |
if isinstance(result, (IntType, LongType)): |
299 | 782 |
new_editingpanel = EditingPanel(self.FileOpened, self, self.Manager) |
205 | 783 |
new_editingpanel.SetIndex(result) |
784 |
self.FileOpened.AddPage(new_editingpanel, "") |
|
785 |
self.FileOpened.SetSelection(self.FileOpened.GetPageCount() - 1) |
|
0 | 786 |
self.RefreshBufferState() |
787 |
self.RefreshCurrentIndexList() |
|
788 |
self.RefreshProfileMenu() |
|
789 |
self.RefreshMainMenu() |
|
580 | 790 |
message = wx.MessageDialog(self, _("Import successful"), _("Information"), wx.OK|wx.ICON_INFORMATION) |
0 | 791 |
message.ShowModal() |
792 |
message.Destroy() |
|
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
793 |
else: |
580 | 794 |
message = wx.MessageDialog(self, result, _("Error"), wx.OK|wx.ICON_ERROR) |
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
795 |
message.ShowModal() |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
796 |
message.Destroy() |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
797 |
else: |
580 | 798 |
message = wx.MessageDialog(self, _("\"%s\" is not a valid file!")%filepath, _("Error"), wx.OK|wx.ICON_ERROR) |
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
799 |
message.ShowModal() |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
800 |
message.Destroy() |
0 | 801 |
dialog.Destroy() |
802 |
event.Skip() |
|
803 |
||
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
804 |
def OnExportEDSMenu(self, event): |
580 | 805 |
dialog = wx.FileDialog(self, _("Choose a file"), os.getcwd(), self.Manager.GetCurrentNodeInfos()[0], _("EDS files (*.eds)|*.eds|All files|*.*"), wx.SAVE|wx.OVERWRITE_PROMPT|wx.CHANGE_DIR) |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
806 |
if dialog.ShowModal() == wx.ID_OK: |
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
807 |
filepath = dialog.GetPath() |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
808 |
if os.path.isdir(os.path.dirname(filepath)): |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
809 |
path, extend = os.path.splitext(filepath) |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
810 |
if extend in ("", "."): |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
811 |
filepath = path + ".eds" |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
812 |
result = self.Manager.ExportCurrentToEDSFile(filepath) |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
813 |
if not result: |
580 | 814 |
message = wx.MessageDialog(self, _("Export successful"), _("Information"), wx.OK|wx.ICON_INFORMATION) |
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
815 |
message.ShowModal() |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
816 |
message.Destroy() |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
817 |
else: |
580 | 818 |
message = wx.MessageDialog(self, result, _("Error"), wx.OK|wx.ICON_ERROR) |
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
819 |
message.ShowModal() |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
820 |
message.Destroy() |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
821 |
else: |
580 | 822 |
message = wx.MessageDialog(self, _("\"%s\" is not a valid folder!")%os.path.dirname(filepath), _("Error"), wx.OK|wx.ICON_ERROR) |
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
823 |
message.ShowModal() |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
824 |
message.Destroy() |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
825 |
dialog.Destroy() |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
826 |
event.Skip() |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
827 |
|
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
828 |
def OnExportCMenu(self, event): |
580 | 829 |
dialog = wx.FileDialog(self, _("Choose a file"), os.getcwd(), self.Manager.GetCurrentNodeInfos()[0], _("CANFestival C files (*.c)|*.c|All files|*.*"), wx.SAVE|wx.OVERWRITE_PROMPT|wx.CHANGE_DIR) |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
830 |
if dialog.ShowModal() == wx.ID_OK: |
0 | 831 |
filepath = dialog.GetPath() |
832 |
if os.path.isdir(os.path.dirname(filepath)): |
|
833 |
path, extend = os.path.splitext(filepath) |
|
834 |
if extend in ("", "."): |
|
835 |
filepath = path + ".c" |
|
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
836 |
result = self.Manager.ExportCurrentToCFile(filepath) |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
837 |
if not result: |
580 | 838 |
message = wx.MessageDialog(self, _("Export successful"), _("Information"), wx.OK|wx.ICON_INFORMATION) |
0 | 839 |
message.ShowModal() |
840 |
message.Destroy() |
|
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
841 |
else: |
580 | 842 |
message = wx.MessageDialog(self, result, _("Error"), wx.OK|wx.ICON_ERROR) |
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
843 |
message.ShowModal() |
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
844 |
message.Destroy() |
0 | 845 |
else: |
580 | 846 |
message = wx.MessageDialog(self, _("\"%s\" is not a valid folder!")%os.path.dirname(filepath), _("Error"), wx.OK|wx.ICON_ERROR) |
0 | 847 |
message.ShowModal() |
848 |
message.Destroy() |
|
849 |
dialog.Destroy() |
|
850 |
event.Skip() |
|
851 |
||
852 |
#------------------------------------------------------------------------------- |
|
853 |
# Editing Profiles functions |
|
854 |
#------------------------------------------------------------------------------- |
|
855 |
||
856 |
def OnCommunicationMenu(self, event): |
|
857 |
dictionary,current = self.Manager.GetCurrentCommunicationLists() |
|
580 | 858 |
self.EditProfile(_("Edit DS-301 Profile"), dictionary, current) |
0 | 859 |
event.Skip() |
860 |
||
861 |
def OnOtherCommunicationMenu(self, event): |
|
862 |
dictionary,current = self.Manager.GetCurrentDS302Lists() |
|
580 | 863 |
self.EditProfile(_("Edit DS-302 Profile"), dictionary, current) |
0 | 864 |
event.Skip() |
865 |
||
866 |
def OnEditProfileMenu(self, event): |
|
580 | 867 |
title = _("Edit %s Profile")%self.Manager.GetCurrentProfileName() |
0 | 868 |
dictionary,current = self.Manager.GetCurrentProfileLists() |
869 |
self.EditProfile(title, dictionary, current) |
|
870 |
event.Skip() |
|
871 |
||
872 |
def EditProfile(self, title, dictionary, current): |
|
873 |
dialog = CommunicationDialog(self) |
|
874 |
dialog.SetTitle(title) |
|
875 |
dialog.SetIndexDictionary(dictionary) |
|
876 |
dialog.SetCurrentList(current) |
|
877 |
dialog.RefreshLists() |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
878 |
if dialog.ShowModal() == wx.ID_OK: |
0 | 879 |
new_profile = dialog.GetCurrentList() |
880 |
addinglist = [] |
|
881 |
removinglist = [] |
|
882 |
for index in new_profile: |
|
883 |
if index not in current: |
|
884 |
addinglist.append(index) |
|
885 |
for index in current: |
|
886 |
if index not in new_profile: |
|
887 |
removinglist.append(index) |
|
888 |
self.Manager.ManageEntriesOfCurrent(addinglist, removinglist) |
|
889 |
self.Manager.BufferCurrentNode() |
|
890 |
self.RefreshBufferState() |
|
891 |
self.RefreshCurrentIndexList() |
|
892 |
dialog.Destroy() |
|
893 |
||
894 |
def GetProfileCallBack(self, text): |
|
895 |
def ProfileCallBack(event): |
|
896 |
self.Manager.AddSpecificEntryToCurrent(text) |
|
897 |
self.RefreshBufferState() |
|
898 |
self.RefreshCurrentIndexList() |
|
899 |
event.Skip() |
|
900 |
return ProfileCallBack |
|
901 |
||
902 |
#------------------------------------------------------------------------------- |
|
903 |
# Edit Node informations function |
|
904 |
#------------------------------------------------------------------------------- |
|
905 |
||
906 |
def OnNodeInfosMenu(self, event): |
|
907 |
dialog = NodeInfosDialog(self) |
|
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
908 |
name, id, type, description = self.Manager.GetCurrentNodeInfos() |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
909 |
defaultstringsize = self.Manager.GetCurrentNodeDefaultStringSize() |
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
910 |
dialog.SetValues(name, id, type, description, defaultstringsize) |
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
911 |
if dialog.ShowModal() == wx.ID_OK: |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
912 |
name, id, type, description, defaultstringsize = dialog.GetValues() |
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
913 |
self.Manager.SetCurrentNodeInfos(name, id, type, description) |
418
64a8c24b61a5
Problem with String size in C file generated fixed
lbessard
parents:
410
diff
changeset
|
914 |
self.Manager.SetCurrentNodeDefaultStringSize(defaultstringsize) |
0 | 915 |
self.RefreshBufferState() |
916 |
self.RefreshProfileMenu() |
|
205 | 917 |
selected = self.FileOpened.GetSelection() |
918 |
if selected >= 0: |
|
919 |
window = self.FileOpened.GetPage(selected) |
|
920 |
window.RefreshTable() |
|
0 | 921 |
event.Skip() |
922 |
||
923 |
||
924 |
#------------------------------------------------------------------------------- |
|
925 |
# Add User Types and Variables |
|
926 |
#------------------------------------------------------------------------------- |
|
927 |
||
928 |
def AddMapVariable(self): |
|
39 | 929 |
index = self.Manager.GetCurrentNextMapIndex() |
930 |
if index: |
|
931 |
dialog = MapVariableDialog(self) |
|
932 |
dialog.SetIndex(index) |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
933 |
if dialog.ShowModal() == wx.ID_OK: |
39 | 934 |
index, name, struct, number = dialog.GetValues() |
935 |
result = self.Manager.AddMapVariableToCurrent(index, name, struct, number) |
|
512 | 936 |
if not isinstance(result, (StringType, UnicodeType)): |
39 | 937 |
self.RefreshBufferState() |
938 |
self.RefreshCurrentIndexList() |
|
939 |
else: |
|
580 | 940 |
message = wx.MessageDialog(self, result, _("Error"), wx.OK|wx.ICON_ERROR) |
39 | 941 |
message.ShowModal() |
942 |
message.Destroy() |
|
943 |
dialog.Destroy() |
|
944 |
else: |
|
580 | 945 |
message = wx.MessageDialog(self, result, _("No map variable index left!"), wx.OK|wx.ICON_ERROR) |
39 | 946 |
message.ShowModal() |
947 |
message.Destroy() |
|
0 | 948 |
|
949 |
def AddUserType(self): |
|
950 |
dialog = UserTypeDialog(self) |
|
951 |
dialog.SetTypeList(self.Manager.GetCustomisableTypes()) |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
952 |
if dialog.ShowModal() == wx.ID_OK: |
0 | 953 |
type, min, max, length = dialog.GetValues() |
954 |
result = self.Manager.AddUserTypeToCurrent(type, min, max, length) |
|
205 | 955 |
if not result: |
0 | 956 |
self.RefreshBufferState() |
957 |
self.RefreshCurrentIndexList() |
|
958 |
else: |
|
580 | 959 |
message = wx.MessageDialog(self, result, _("Error"), wx.OK|wx.ICON_ERROR) |
0 | 960 |
message.ShowModal() |
961 |
message.Destroy() |
|
962 |
dialog.Destroy() |
|
963 |
||
964 |
||
965 |
#------------------------------------------------------------------------------- |
|
966 |
# Exception Handler |
|
967 |
#------------------------------------------------------------------------------- |
|
968 |
||
969 |
Max_Traceback_List_Size = 20 |
|
970 |
||
971 |
def Display_Exception_Dialog(e_type,e_value,e_tb): |
|
972 |
trcbck_lst = [] |
|
973 |
for i,line in enumerate(traceback.extract_tb(e_tb)): |
|
580 | 974 |
trcbck = " " + str(i+1) + _(". ") |
0 | 975 |
if line[0].find(os.getcwd()) == -1: |
580 | 976 |
trcbck += _("file : ") + str(line[0]) + _(", ") |
977 |
else: |
|
978 |
trcbck += _("file : ") + str(line[0][len(os.getcwd()):]) + _(", ") |
|
979 |
trcbck += _("line : ") + str(line[1]) + _(", ") + _("function : ") + str(line[2]) |
|
0 | 980 |
trcbck_lst.append(trcbck) |
981 |
||
982 |
# Allow clicking.... |
|
983 |
cap = wx.Window_GetCapture() |
|
984 |
if cap: |
|
985 |
cap.ReleaseMouse() |
|
986 |
||
987 |
dlg = wx.SingleChoiceDialog(None, |
|
580 | 988 |
_(""" |
0 | 989 |
An error happens. |
990 |
||
991 |
Click on OK for saving an error report. |
|
992 |
||
993 |
Please contact LOLITech at: |
|
548 | 994 |
+33 (0)3 29 57 60 42 |
0 | 995 |
bugs_objdictedit@lolitech.fr |
996 |
||
997 |
||
998 |
Error: |
|
580 | 999 |
""") + |
1000 |
str(e_type) + _(" : ") + str(e_value), |
|
1001 |
_("Error"), |
|
0 | 1002 |
trcbck_lst) |
1003 |
try: |
|
1004 |
res = (dlg.ShowModal() == wx.ID_OK) |
|
1005 |
finally: |
|
1006 |
dlg.Destroy() |
|
1007 |
||
1008 |
return res |
|
1009 |
||
1010 |
def Display_Error_Dialog(e_value): |
|
580 | 1011 |
message = wx.MessageDialog(None, str(e_value), _("Error"), wx.OK|wx.ICON_ERROR) |
0 | 1012 |
message.ShowModal() |
1013 |
message.Destroy() |
|
1014 |
||
1015 |
def get_last_traceback(tb): |
|
1016 |
while tb.tb_next: |
|
1017 |
tb = tb.tb_next |
|
1018 |
return tb |
|
1019 |
||
1020 |
||
1021 |
def format_namespace(d, indent=' '): |
|
1022 |
return '\n'.join(['%s%s: %s' % (indent, k, repr(v)[:10000]) for k, v in d.iteritems()]) |
|
1023 |
||
1024 |
||
1025 |
ignored_exceptions = [] # a problem with a line in a module is only reported once per session |
|
1026 |
||
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
1027 |
def AddExceptHook(path, app_version='[No version]'):#, ignored_exceptions=[]): |
0 | 1028 |
|
1029 |
def handle_exception(e_type, e_value, e_traceback): |
|
1030 |
traceback.print_exception(e_type, e_value, e_traceback) # this is very helpful when there's an exception in the rest of this func |
|
1031 |
last_tb = get_last_traceback(e_traceback) |
|
1032 |
ex = (last_tb.tb_frame.f_code.co_filename, last_tb.tb_frame.f_lineno) |
|
1033 |
if str(e_value).startswith("!!!"): |
|
1034 |
Display_Error_Dialog(e_value) |
|
1035 |
elif ex not in ignored_exceptions: |
|
1036 |
ignored_exceptions.append(ex) |
|
1037 |
result = Display_Exception_Dialog(e_type,e_value,e_traceback) |
|
1038 |
if result: |
|
1039 |
info = { |
|
1040 |
'app-title' : wx.GetApp().GetAppName(), # app_title |
|
1041 |
'app-version' : app_version, |
|
1042 |
'wx-version' : wx.VERSION_STRING, |
|
1043 |
'wx-platform' : wx.Platform, |
|
1044 |
'python-version' : platform.python_version(), #sys.version.split()[0], |
|
1045 |
'platform' : platform.platform(), |
|
1046 |
'e-type' : e_type, |
|
1047 |
'e-value' : e_value, |
|
1048 |
'date' : time.ctime(), |
|
1049 |
'cwd' : os.getcwd(), |
|
1050 |
} |
|
1051 |
if e_traceback: |
|
1052 |
info['traceback'] = ''.join(traceback.format_tb(e_traceback)) + '%s: %s' % (e_type, e_value) |
|
1053 |
last_tb = get_last_traceback(e_traceback) |
|
1054 |
exception_locals = last_tb.tb_frame.f_locals # the locals at the level of the stack trace where the exception actually occurred |
|
1055 |
info['locals'] = format_namespace(exception_locals) |
|
1056 |
if 'self' in exception_locals: |
|
1057 |
info['self'] = format_namespace(exception_locals['self'].__dict__) |
|
1058 |
||
1059 |
output = open(path+os.sep+"bug_report_"+info['date'].replace(':','-').replace(' ','_')+".txt",'w') |
|
1060 |
lst = info.keys() |
|
1061 |
lst.sort() |
|
1062 |
for a in lst: |
|
1063 |
output.write(a+":\n"+str(info[a])+"\n\n") |
|
1064 |
||
1065 |
#sys.excepthook = lambda *args: wx.CallAfter(handle_exception, *args) |
|
1066 |
sys.excepthook = handle_exception |
|
1067 |
||
1068 |
if __name__ == '__main__': |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
1069 |
wx.InitAllImageHandlers() |
0 | 1070 |
|
1071 |
# Install a exception handle for bug reports |
|
254
f2b0acb54e65
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
245
diff
changeset
|
1072 |
AddExceptHook(os.getcwd(),__version__) |
0 | 1073 |
|
485
24b506ea314b
Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents:
418
diff
changeset
|
1074 |
frame = objdictedit(None, filesOpen = args) |
0 | 1075 |
|
1076 |
frame.Show() |
|
1077 |
app.MainLoop() |