objdictgen/objdictedit.py
author Edouard Tisserant
Thu, 24 Jan 2019 13:53:01 +0100
changeset 808 de1fc3261f21
parent 778 9edaa9d21cf9
permissions -rwxr-xr-x
Adding -fPIC isn't necessary of xeno-config is set correctly. Backed out changeset b9f1fcda7d30
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     1
#!/usr/bin/env python
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     2
# -*- coding: utf-8 -*-
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     3
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     4
#This file is part of CanFestival, a library implementing CanOpen Stack. 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     5
#
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     6
#Copyright (C): Edouard TISSERANT, Francis DUPIN and Laurent BESSARD
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     7
#
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     8
#See COPYING file for copyrights details.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     9
#
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    10
#This library is free software; you can redistribute it and/or
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    11
#modify it under the terms of the GNU Lesser General Public
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    12
#License as published by the Free Software Foundation; either
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    13
#version 2.1 of the License, or (at your option) any later version.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    14
#
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    15
#This library is distributed in the hope that it will be useful,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    16
#but WITHOUT ANY WARRANTY; without even the implied warranty of
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    17
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    18
#Lesser General Public License for more details.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    19
#
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    20
#You should have received a copy of the GNU Lesser General Public
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    21
#License along with this library; if not, write to the Free Software
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    22
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    23
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    24
import wx
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    25
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    26
from types import *
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    27
import os, re, platform, sys, time, traceback, getopt
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    28
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    29
__version__ = "$Revision: 1.48 $"
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    30
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    31
if __name__ == '__main__':
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    32
    def usage():
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    33
        print _("\nUsage of objdictedit.py :")
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    34
        print "\n   %s [Filepath, ...]\n"%sys.argv[0]
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    35
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    36
    try:
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    37
        opts, args = getopt.getopt(sys.argv[1:], "h", ["help"])
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    38
    except getopt.GetoptError:
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    39
        # print help information and exit:
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    40
        usage()
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    41
        sys.exit(2)
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    42
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    43
    for o, a in opts:
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    44
        if o in ("-h", "--help"):
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    45
            usage()
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    46
            sys.exit()
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    47
    
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    48
    app = wx.PySimpleApp()
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    49
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    50
ScriptDirectory = os.path.split(os.path.realpath(__file__))[0]
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    51
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    52
# Import module for internationalization
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    53
import gettext
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    54
import __builtin__
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    55
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    56
# Get folder containing translation files
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    57
localedir = os.path.join(ScriptDirectory,"locale")
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    58
# Get the default language
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    59
langid = wx.LANGUAGE_DEFAULT
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    60
# Define translation domain (name of translation files)
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    61
domain = "objdictgen"
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    62
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    63
# Define locale for wx
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    64
loc = __builtin__.__dict__.get('loc', None)
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    65
if loc is None:
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    66
    loc = wx.Locale(langid)
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    67
    __builtin__.__dict__['loc'] = loc
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    68
# Define location for searching translation files
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    69
loc.AddCatalogLookupPathPrefix(localedir)
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    70
# Define locale domain
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    71
loc.AddCatalog(domain)
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    72
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    73
if __name__ == '__main__':
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
    74
    __builtin__.__dict__['_'] = wx.GetTranslation
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    75
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    76
from nodemanager import *
778
9edaa9d21cf9 Fixed conflict in internationalization with Beremiz CanFestival extension
Laurent Bessard
parents: 715
diff changeset
    77
from nodeeditortemplate import NodeEditorTemplate
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
    78
from subindextable import *
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
    79
from commondialogs import *
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    80
from doc_index.DS301_index import *
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    81
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    82
try:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    83
    import wx.html
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    84
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    85
    EVT_HTML_URL_CLICK = wx.NewId()
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    86
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    87
    class HtmlWindowUrlClick(wx.PyEvent):
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    88
        def __init__(self, linkinfo):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    89
            wx.PyEvent.__init__(self)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    90
            self.SetEventType(EVT_HTML_URL_CLICK)
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    91
            self.linkinfo = (linkinfo.GetHref(), linkinfo.GetTarget())
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    92
            
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    93
    class UrlClickHtmlWindow(wx.html.HtmlWindow):
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    94
        """ HTML window that generates and OnLinkClicked event.
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    95
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    96
        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
    97
        """
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    98
        def OnLinkClicked(self, linkinfo):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    99
            wx.PostEvent(self, HtmlWindowUrlClick(linkinfo))
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   100
        
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   101
        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
   102
            if event == HtmlWindowUrlClick:
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   103
                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
   104
            else:
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   105
                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
   106
    
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
#                                Html Frame
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   109
#-------------------------------------------------------------------------------
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   110
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   111
    [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
   112
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   113
    class HtmlFrame(wx.Frame):
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   114
        def _init_ctrls(self, prnt):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   115
            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
   116
                  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
   117
                  style=wx.DEFAULT_FRAME_STYLE, title='')
273
58b39f97e352 Some bugs fixed
lbessard
parents: 258
diff changeset
   118
            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
   119
            
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   120
            self.HtmlContent = UrlClickHtmlWindow(id=ID_HTMLFRAMEHTMLCONTENT,
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   121
                  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
   122
                  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
   123
            self.HtmlContent.Bind(HtmlWindowUrlClick, self.OnLinkClick)
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   124
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   125
        def __init__(self, parent, opened):
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   126
            self._init_ctrls(parent)
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   127
            self.HtmlFrameOpened = opened
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   128
        
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   129
        def SetHtmlCode(self, htmlcode):
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   130
            self.HtmlContent.SetPage(htmlcode)
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   131
            
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   132
        def SetHtmlPage(self, htmlpage):
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   133
            self.HtmlContent.LoadPage(htmlpage)
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   134
            
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   135
        def OnCloseFrame(self, event):
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   136
            self.HtmlFrameOpened.remove(self.GetTitle())
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   137
            event.Skip()
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   138
        
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   139
        def OnLinkClick(self, event):
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   140
            url = event.linkinfo[0]
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   141
            try:
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   142
                import webbrowser
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   143
            except ImportError:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   144
                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
   145
            else:
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   146
                webbrowser.open(url)
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   147
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   148
    Html_Window = True
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   149
except:
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   150
    Html_Window = False
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   151
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   152
[ID_OBJDICTEDIT, ID_OBJDICTEDITFILEOPENED, 
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   153
 ID_OBJDICTEDITHELPBAR,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   154
] = [wx.NewId() for _init_ctrls in range(3)]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   155
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   156
[ID_OBJDICTEDITFILEMENUIMPORTEDS, ID_OBJDICTEDITFILEMENUEXPORTEDS, 
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   157
 ID_OBJDICTEDITFILEMENUEXPORTC,
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   158
] = [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
   159
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   160
[ID_OBJDICTEDITEDITMENUNODEINFOS, ID_OBJDICTEDITEDITMENUDS301PROFILE, 
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   161
 ID_OBJDICTEDITEDITMENUDS302PROFILE, ID_OBJDICTEDITEDITMENUOTHERPROFILE, 
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   162
] = [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
   163
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   164
[ID_OBJDICTEDITADDMENUSDOSERVER, ID_OBJDICTEDITADDMENUSDOCLIENT, 
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   165
 ID_OBJDICTEDITADDMENUPDOTRANSMIT, ID_OBJDICTEDITADDMENUPDORECEIVE, 
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   166
 ID_OBJDICTEDITADDMENUMAPVARIABLE, ID_OBJDICTEDITADDMENUUSERTYPE, 
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   167
] = [wx.NewId() for _init_coll_AddMenu_Items in range(6)]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   168
715
5795fb789230 Adding support for integration of panels in Beremiz
smarteh-dev
parents: 614
diff changeset
   169
class objdictedit(wx.Frame, NodeEditorTemplate):
5795fb789230 Adding support for integration of panels in Beremiz
smarteh-dev
parents: 614
diff changeset
   170
    
5795fb789230 Adding support for integration of panels in Beremiz
smarteh-dev
parents: 614
diff changeset
   171
    EDITMENU_ID = ID_OBJDICTEDITEDITMENUOTHERPROFILE
5795fb789230 Adding support for integration of panels in Beremiz
smarteh-dev
parents: 614
diff changeset
   172
    
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   173
    def _init_coll_MenuBar_Menus(self, parent):
485
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   174
        if self.ModeSolo:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   175
            parent.Append(menu=self.FileMenu, title=_('File'))
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   176
        parent.Append(menu=self.EditMenu, title=_('Edit'))
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   177
        parent.Append(menu=self.AddMenu, title=_('Add'))
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   178
        parent.Append(menu=self.HelpMenu, title=_('Help'))
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   179
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   180
    def _init_coll_FileMenu_Items(self, parent):
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   181
        parent.Append(help='', id=wx.ID_NEW,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   182
              kind=wx.ITEM_NORMAL, text=_('New\tCTRL+N'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   183
        parent.Append(help='', id=wx.ID_OPEN,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   184
              kind=wx.ITEM_NORMAL, text=_('Open\tCTRL+O'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   185
        parent.Append(help='', id=wx.ID_CLOSE,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   186
              kind=wx.ITEM_NORMAL, text=_('Close\tCTRL+W'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   187
        parent.AppendSeparator()
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   188
        parent.Append(help='', id=wx.ID_SAVE,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   189
              kind=wx.ITEM_NORMAL, text=_('Save\tCTRL+S'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   190
        parent.Append(help='', id=wx.ID_SAVEAS,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   191
              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
   192
        parent.AppendSeparator()
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   193
        parent.Append(help='', id=ID_OBJDICTEDITFILEMENUIMPORTEDS,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   194
              kind=wx.ITEM_NORMAL, text=_('Import EDS file'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   195
        parent.Append(help='', id=ID_OBJDICTEDITFILEMENUEXPORTEDS,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   196
              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
   197
        parent.Append(help='', id=ID_OBJDICTEDITFILEMENUEXPORTC,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   198
              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
   199
        parent.AppendSeparator()
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   200
        parent.Append(help='', id=wx.ID_EXIT,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   201
              kind=wx.ITEM_NORMAL, text=_('Exit'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   202
        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
   203
        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
   204
        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
   205
        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
   206
        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
   207
        self.Bind(wx.EVT_MENU, self.OnImportEDSMenu,
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   208
              id=ID_OBJDICTEDITFILEMENUIMPORTEDS)
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   209
        self.Bind(wx.EVT_MENU, self.OnExportEDSMenu,
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   210
              id=ID_OBJDICTEDITFILEMENUEXPORTEDS)
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   211
        self.Bind(wx.EVT_MENU, self.OnExportCMenu,
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   212
              id=ID_OBJDICTEDITFILEMENUEXPORTC)
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   213
        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
   214
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   215
    def _init_coll_EditMenu_Items(self, parent):
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   216
        parent.Append(help='', id=wx.ID_REFRESH,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   217
              kind=wx.ITEM_NORMAL, text=_('Refresh\tCTRL+R'))
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   218
        parent.AppendSeparator()
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   219
        parent.Append(help='', id=wx.ID_UNDO,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   220
              kind=wx.ITEM_NORMAL, text=_('Undo\tCTRL+Z'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   221
        parent.Append(help='', id=wx.ID_REDO,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   222
              kind=wx.ITEM_NORMAL, text=_('Redo\tCTRL+Y'))
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   223
        parent.AppendSeparator()
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   224
        parent.Append(help='', id=ID_OBJDICTEDITEDITMENUNODEINFOS,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   225
              kind=wx.ITEM_NORMAL, text=_('Node infos'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   226
        parent.Append(help='', id=ID_OBJDICTEDITEDITMENUDS301PROFILE,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   227
              kind=wx.ITEM_NORMAL, text=_('DS-301 Profile'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   228
        parent.Append(help='', id=ID_OBJDICTEDITEDITMENUDS302PROFILE,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   229
              kind=wx.ITEM_NORMAL, text=_('DS-302 Profile'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   230
        parent.Append(help='', id=ID_OBJDICTEDITEDITMENUOTHERPROFILE,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   231
              kind=wx.ITEM_NORMAL, text=_('Other Profile'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   232
        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
   233
        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
   234
        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
   235
        self.Bind(wx.EVT_MENU, self.OnNodeInfosMenu,
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   236
              id=ID_OBJDICTEDITEDITMENUNODEINFOS)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   237
        self.Bind(wx.EVT_MENU, self.OnCommunicationMenu,
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   238
              id=ID_OBJDICTEDITEDITMENUDS301PROFILE)
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   239
        self.Bind(wx.EVT_MENU, self.OnOtherCommunicationMenu,
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   240
              id=ID_OBJDICTEDITEDITMENUDS302PROFILE)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   241
        self.Bind(wx.EVT_MENU, self.OnEditProfileMenu,
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   242
              id=ID_OBJDICTEDITEDITMENUOTHERPROFILE)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   243
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   244
    def _init_coll_AddMenu_Items(self, parent):
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   245
        parent.Append(help='', id=ID_OBJDICTEDITADDMENUSDOSERVER,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   246
              kind=wx.ITEM_NORMAL, text=_('SDO Server'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   247
        parent.Append(help='', id=ID_OBJDICTEDITADDMENUSDOCLIENT,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   248
              kind=wx.ITEM_NORMAL, text=_('SDO Client'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   249
        parent.Append(help='', id=ID_OBJDICTEDITADDMENUPDOTRANSMIT,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   250
              kind=wx.ITEM_NORMAL, text=_('PDO Transmit'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   251
        parent.Append(help='', id=ID_OBJDICTEDITADDMENUPDORECEIVE,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   252
              kind=wx.ITEM_NORMAL, text=_('PDO Receive'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   253
        parent.Append(help='', id=ID_OBJDICTEDITADDMENUMAPVARIABLE,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   254
              kind=wx.ITEM_NORMAL, text=_('Map Variable'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   255
        parent.Append(help='', id=ID_OBJDICTEDITADDMENUUSERTYPE,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   256
              kind=wx.ITEM_NORMAL, text=_('User Type'))
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   257
        self.Bind(wx.EVT_MENU, self.OnAddSDOServerMenu,
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   258
              id=ID_OBJDICTEDITADDMENUSDOSERVER)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   259
        self.Bind(wx.EVT_MENU, self.OnAddSDOClientMenu,
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   260
              id=ID_OBJDICTEDITADDMENUSDOCLIENT)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   261
        self.Bind(wx.EVT_MENU, self.OnAddPDOTransmitMenu,
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   262
              id=ID_OBJDICTEDITADDMENUPDOTRANSMIT)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   263
        self.Bind(wx.EVT_MENU, self.OnAddPDOReceiveMenu,
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   264
              id=ID_OBJDICTEDITADDMENUPDORECEIVE)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   265
        self.Bind(wx.EVT_MENU, self.OnAddMapVariableMenu,
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   266
              id=ID_OBJDICTEDITADDMENUMAPVARIABLE)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   267
        self.Bind(wx.EVT_MENU, self.OnAddUserTypeMenu,
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   268
              id=ID_OBJDICTEDITADDMENUUSERTYPE)
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   269
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   270
    def _init_coll_HelpMenu_Items(self, parent):
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   271
        parent.Append(help='', id=wx.ID_HELP,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   272
              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
   273
        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
   274
        parent.Append(help='', id=wx.ID_HELP_CONTEXT,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   275
              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
   276
        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
   277
        if Html_Window and self.ModeSolo:
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   278
            parent.Append(help='', id=wx.ID_ABOUT,
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   279
                  kind=wx.ITEM_NORMAL, text=_('About'))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   280
            self.Bind(wx.EVT_MENU, self.OnAboutMenu, id=wx.ID_ABOUT)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   281
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   282
    def _init_coll_HelpBar_Fields(self, parent):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   283
        parent.SetFieldsCount(3)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   284
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   285
        parent.SetStatusText(number=0, text='')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   286
        parent.SetStatusText(number=1, text='')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   287
        parent.SetStatusText(number=2, text='')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   288
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   289
        parent.SetStatusWidths([100, 110, -1])
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   290
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   291
    def _init_utils(self):
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   292
        self.MenuBar = wx.MenuBar()
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   293
        self.MenuBar.SetEvtHandlerEnabled(True)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   294
485
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   295
        if self.ModeSolo:
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   296
            self.FileMenu = wx.Menu(title='')
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   297
        self.EditMenu = wx.Menu(title='')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   298
        self.AddMenu = wx.Menu(title='')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   299
        self.HelpMenu = wx.Menu(title='')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   300
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   301
        self._init_coll_MenuBar_Menus(self.MenuBar)
485
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   302
        if self.ModeSolo:
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   303
            self._init_coll_FileMenu_Items(self.FileMenu)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   304
        self._init_coll_EditMenu_Items(self.EditMenu)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   305
        self._init_coll_AddMenu_Items(self.AddMenu)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   306
        self._init_coll_HelpMenu_Items(self.HelpMenu)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   307
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   308
    def _init_ctrls(self, prnt):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   309
        wx.Frame.__init__(self, id=ID_OBJDICTEDIT, name='objdictedit',
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   310
              parent=prnt, pos=wx.Point(149, 178), size=wx.Size(1000, 700),
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   311
              style=wx.DEFAULT_FRAME_STYLE, title=_('Objdictedit'))
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   312
        self._init_utils()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   313
        self.SetClientSize(wx.Size(1000, 700))
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   314
        self.SetMenuBar(self.MenuBar)
273
58b39f97e352 Some bugs fixed
lbessard
parents: 258
diff changeset
   315
        self.Bind(wx.EVT_CLOSE, self.OnCloseFrame)
485
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   316
        if not self.ModeSolo:
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   317
            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
   318
            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
   319
            self.SetAcceleratorTable(accel)
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   320
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   321
        self.FileOpened = wx.Notebook(id=ID_OBJDICTEDITFILEOPENED,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   322
              name='FileOpened', parent=self, pos=wx.Point(0, 0),
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   323
              size=wx.Size(0, 0), style=0)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   324
        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
   325
              self.OnFileSelectedChanged, id=ID_OBJDICTEDITFILEOPENED)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   326
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   327
        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
   328
              parent=self, style=wx.ST_SIZEGRIP)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   329
        self._init_coll_HelpBar_Fields(self.HelpBar)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   330
        self.SetStatusBar(self.HelpBar)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   331
485
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   332
    def __init__(self, parent, manager = None, filesOpen = []):
715
5795fb789230 Adding support for integration of panels in Beremiz
smarteh-dev
parents: 614
diff changeset
   333
        if manager is None:
5795fb789230 Adding support for integration of panels in Beremiz
smarteh-dev
parents: 614
diff changeset
   334
            NodeEditorTemplate.__init__(self, NodeManager(), self, True)
5795fb789230 Adding support for integration of panels in Beremiz
smarteh-dev
parents: 614
diff changeset
   335
        else:
5795fb789230 Adding support for integration of panels in Beremiz
smarteh-dev
parents: 614
diff changeset
   336
            NodeEditorTemplate.__init__(self, manager, self, False)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   337
        self._init_ctrls(parent)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   338
        self.HtmlFrameOpened = []
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   339
        
410
cbed250c4303 .ico icons work with either windows or linux
etisserant
parents: 409
diff changeset
   340
        icon = wx.Icon(os.path.join(ScriptDirectory,"networkedit.ico"),wx.BITMAP_TYPE_ICO)
409
f2920812471e add icon support in init
greg
parents: 408
diff changeset
   341
        self.SetIcon(icon)
f2920812471e add icon support in init
greg
parents: 408
diff changeset
   342
        
485
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   343
        if self.ModeSolo:
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   344
            for filepath in filesOpen:
527
7d5c74cc8f91 - Fix bug with relative path when node opened from command line
greg
parents: 512
diff changeset
   345
                result = self.Manager.OpenFileInCurrent(os.path.abspath(filepath))
512
e84806c0ada4 Some instance type test improved
lbessard
parents: 491
diff changeset
   346
                if isinstance(result, (IntType, LongType)):
485
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   347
                    new_editingpanel = EditingPanel(self.FileOpened, self, self.Manager)
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   348
                    new_editingpanel.SetIndex(result)
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   349
                    self.FileOpened.AddPage(new_editingpanel, "")
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   350
        else:
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   351
            for index in self.Manager.GetBufferIndexes():
299
506f9700b9fb Allowing user to type formulas
lbessard
parents: 280
diff changeset
   352
                new_editingpanel = EditingPanel(self.FileOpened, self, self.Manager)
485
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   353
                new_editingpanel.SetIndex(index)
232
e435bbec1759 Bug on file loading from shell command fixed
lbessard
parents: 227
diff changeset
   354
                self.FileOpened.AddPage(new_editingpanel, "")
485
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   355
        
491
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   356
        if self.Manager.GetBufferNumber() > 0:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   357
            window = self.FileOpened.GetPage(0)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   358
            if window:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   359
                self.Manager.ChangeCurrentNode(window.GetIndex())
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   360
                self.FileOpened.SetSelection(0)
485
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   361
        
258
8f7725451453 Some bugs fixed:
lbessard
parents: 254
diff changeset
   362
        if self.Manager.CurrentDS302Defined():
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   363
            self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUDS302PROFILE, True)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   364
        else:
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   365
            self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUDS302PROFILE, False)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   366
        self.RefreshEditMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   367
        self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   368
        self.RefreshProfileMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   369
        self.RefreshTitle()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   370
        self.RefreshMainMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   371
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   372
    def OnFileSelectedChanged(self, event):
491
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   373
        if not self.Closing:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   374
            selected = event.GetSelection()
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   375
            # At init selected = -1
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   376
            if selected >= 0:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   377
                window = self.FileOpened.GetPage(selected)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   378
                if window:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   379
                    self.Manager.ChangeCurrentNode(window.GetIndex())
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   380
                    wx.CallAfter(self.RefreshBufferState)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   381
                    self.RefreshStatusBar()
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   382
                    self.RefreshProfileMenu()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   383
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   384
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   385
    def OnHelpDS301Menu(self, event):
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   386
        find_index = False
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   387
        selected = self.FileOpened.GetSelection()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   388
        if selected >= 0:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   389
            window = self.FileOpened.GetPage(selected)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   390
            result = window.GetSelection()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   391
            if result:
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   392
                find_index = True
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   393
                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
   394
                result = OpenPDFDocIndex(index, ScriptDirectory)
512
e84806c0ada4 Some instance type test improved
lbessard
parents: 491
diff changeset
   395
                if isinstance(result, (StringType, UnicodeType)):
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   396
                    message = wx.MessageDialog(self, result, _("ERROR"), wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   397
                    message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   398
                    message.Destroy()
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   399
        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
   400
            result = OpenPDFDocIndex(None, ScriptDirectory)
512
e84806c0ada4 Some instance type test improved
lbessard
parents: 491
diff changeset
   401
            if isinstance(result, (StringType, UnicodeType)):
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   402
                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
   403
                message.ShowModal()
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   404
                message.Destroy()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   405
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   406
    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
   407
        #self.OpenHtmlFrame("CAN Festival Reference", os.path.join(ScriptDirectory, "doc/canfestival.html"), wx.Size(1000, 600))
341
7ff01f109bbc Windows related enhancements
etisserant
parents: 334
diff changeset
   408
        if wx.Platform == '__WXMSW__':
386
0f56a144ba5f Now, PDF doc of objdictgen can be opened with acrobat reader on windows
etisserant
parents: 348
diff changeset
   409
            readerpath = get_acroversion()
0f56a144ba5f Now, PDF doc of objdictgen can be opened with acrobat reader on windows
etisserant
parents: 348
diff changeset
   410
            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
   411
            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
   412
                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
   413
            else:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   414
                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
   415
                message.ShowModal()
ecaac955c16a fix message dialog when objdictedit can't find the pdf reader
greg
parents: 548
diff changeset
   416
                message.Destroy()
ecaac955c16a fix message dialog when objdictedit can't find the pdf reader
greg
parents: 548
diff changeset
   417
        else:
ecaac955c16a fix message dialog when objdictedit can't find the pdf reader
greg
parents: 548
diff changeset
   418
            try:
ecaac955c16a fix message dialog when objdictedit can't find the pdf reader
greg
parents: 548
diff changeset
   419
                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
   420
            except:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   421
                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
   422
                message.ShowModal()
ecaac955c16a fix message dialog when objdictedit can't find the pdf reader
greg
parents: 548
diff changeset
   423
                message.Destroy()
608
daa1e1c3fba4 Removing superfluous event.Skip()
laurent
parents: 580
diff changeset
   424
        
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   425
    def OnAboutMenu(self, event):
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   426
        self.OpenHtmlFrame(_("About CAN Festival"), os.path.join(ScriptDirectory, "doc/about.html"), wx.Size(500, 450))
608
daa1e1c3fba4 Removing superfluous event.Skip()
laurent
parents: 580
diff changeset
   427
        
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   428
    def OpenHtmlFrame(self, title, file, size):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   429
        if title not in self.HtmlFrameOpened:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   430
            self.HtmlFrameOpened.append(title)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   431
            window = HtmlFrame(self, self.HtmlFrameOpened)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   432
            window.SetTitle(title)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   433
            window.SetHtmlPage(file)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   434
            window.SetClientSize(size)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   435
            window.Show()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   436
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   437
    def OnQuitMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   438
        self.Close()
608
daa1e1c3fba4 Removing superfluous event.Skip()
laurent
parents: 580
diff changeset
   439
        
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   440
    def OnCloseFrame(self, event):
491
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   441
        self.Closing = True
485
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   442
        if not self.ModeSolo:
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   443
            if getattr(self, "_onclose", None) != None:
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   444
                self._onclose()
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   445
            event.Skip()
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   446
        elif self.Manager.OneFileHasChanged():
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   447
            dialog = wx.MessageDialog(self, _("There are changes, do you want to save?"),  _("Close Application"), wx.YES_NO|wx.CANCEL|wx.ICON_QUESTION)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   448
            answer = dialog.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   449
            dialog.Destroy()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   450
            if answer == wx.ID_YES:
491
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   451
                for i in xrange(self.Manager.GetBufferNumber()):
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   452
                    if self.Manager.CurrentIsSaved():
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   453
                        self.Manager.CloseCurrent()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   454
                    else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   455
                        self.Save()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   456
                        self.Manager.CloseCurrent(True)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   457
                event.Skip()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   458
            elif answer == wx.ID_NO:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   459
                event.Skip()
491
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   460
            else:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   461
                event.Veto()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   462
        else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   463
            event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   464
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   465
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   466
#                             Refresh Functions
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   467
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   468
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   469
    def RefreshTitle(self):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   470
        if self.FileOpened.GetPageCount() > 0:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   471
            self.SetTitle(_("Objdictedit - %s")%self.Manager.GetCurrentFilename())
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   472
        else:
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   473
            self.SetTitle(_("Objdictedit"))
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   474
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   475
    def RefreshCurrentIndexList(self):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   476
        selected = self.FileOpened.GetSelection()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   477
        window = self.FileOpened.GetPage(selected)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   478
        window.RefreshIndexList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   479
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   480
    def RefreshStatusBar(self):
491
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   481
        selected = self.FileOpened.GetSelection()
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   482
        if selected >= 0:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   483
            window = self.FileOpened.GetPage(selected)
715
5795fb789230 Adding support for integration of panels in Beremiz
smarteh-dev
parents: 614
diff changeset
   484
            self.SetStatusBarText(window.GetSelection(), self.Manager)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   485
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   486
    def RefreshMainMenu(self):
491
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   487
        if self.FileOpened.GetPageCount() > 0:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   488
            if self.ModeSolo:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   489
                self.MenuBar.EnableTop(1, True)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   490
                self.MenuBar.EnableTop(2, True)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   491
                self.FileMenu.Enable(wx.ID_CLOSE, True)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   492
                self.FileMenu.Enable(wx.ID_SAVE, True)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   493
                self.FileMenu.Enable(wx.ID_SAVEAS, True)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   494
                self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUEXPORTEDS, True)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   495
                self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUEXPORTC, True)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   496
            else:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   497
                self.MenuBar.EnableTop(0, True)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   498
                self.MenuBar.EnableTop(1, True)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   499
        else:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   500
            if self.ModeSolo:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   501
                self.MenuBar.EnableTop(1, False)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   502
                self.MenuBar.EnableTop(2, False)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   503
                self.FileMenu.Enable(wx.ID_CLOSE, False)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   504
                self.FileMenu.Enable(wx.ID_SAVE, False)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   505
                self.FileMenu.Enable(wx.ID_SAVEAS, False)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   506
                self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUEXPORTEDS, False)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   507
                self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUEXPORTC, False)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   508
            else:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   509
                self.MenuBar.EnableTop(0, False)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   510
                self.MenuBar.EnableTop(1, False)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   511
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   512
    def RefreshEditMenu(self):
491
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   513
        if self.FileOpened.GetPageCount() > 0:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   514
            undo, redo = self.Manager.GetCurrentBufferState()
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   515
            self.EditMenu.Enable(wx.ID_UNDO, undo)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   516
            self.EditMenu.Enable(wx.ID_REDO, redo)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   517
        else:
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   518
            self.EditMenu.Enable(wx.ID_UNDO, False)
2ad3dedf6c6a Segmentation Fault on closing fixed
lbessard
parents: 488
diff changeset
   519
            self.EditMenu.Enable(wx.ID_REDO, False)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   520
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   521
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   522
#                            Buffer Functions
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   523
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   524
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   525
    def RefreshBufferState(self):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   526
        fileopened = self.Manager.GetAllFilenames()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   527
        for idx, filename in enumerate(fileopened):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   528
            self.FileOpened.SetPageText(idx, filename)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   529
        self.RefreshEditMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   530
        self.RefreshTitle()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   531
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   532
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   533
#                         Load and Save Funtions
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   534
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   535
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   536
    def OnNewMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   537
        self.FilePath = ""
258
8f7725451453 Some bugs fixed:
lbessard
parents: 254
diff changeset
   538
        dialog = CreateNodeDialog(self)
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   539
        if dialog.ShowModal() == wx.ID_OK:
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   540
            name, id, nodetype, description = dialog.GetValues()
59
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   541
            profile, filepath = dialog.GetProfile()
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   542
            NMT = dialog.GetNMTManagement()
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   543
            options = dialog.GetOptions()
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   544
            result = self.Manager.CreateNewNode(name, id, nodetype, description, profile, filepath, NMT, options)
512
e84806c0ada4 Some instance type test improved
lbessard
parents: 491
diff changeset
   545
            if isinstance(result, (IntType, LongType)):
299
506f9700b9fb Allowing user to type formulas
lbessard
parents: 280
diff changeset
   546
                new_editingpanel = EditingPanel(self.FileOpened, self, self.Manager)
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   547
                new_editingpanel.SetIndex(result)
59
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   548
                self.FileOpened.AddPage(new_editingpanel, "")
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   549
                self.FileOpened.SetSelection(self.FileOpened.GetPageCount() - 1)
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   550
                self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUDS302PROFILE, False)
59
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   551
                if "DS302" in options:
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   552
                    self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUDS302PROFILE, True)
59
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   553
                self.RefreshBufferState()
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   554
                self.RefreshProfileMenu()
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   555
                self.RefreshMainMenu()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   556
            else:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   557
                message = wx.MessageDialog(self, result, _("ERROR"), wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   558
                message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   559
                message.Destroy()
299
506f9700b9fb Allowing user to type formulas
lbessard
parents: 280
diff changeset
   560
        dialog.Destroy()
608
daa1e1c3fba4 Removing superfluous event.Skip()
laurent
parents: 580
diff changeset
   561
        
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   562
    def OnOpenMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   563
        filepath = self.Manager.GetCurrentFilePath()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   564
        if filepath != "":
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   565
            directory = os.path.dirname(filepath)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   566
        else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   567
            directory = os.getcwd()
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   568
        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
   569
        if dialog.ShowModal() == wx.ID_OK:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   570
            filepath = dialog.GetPath()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   571
            if os.path.isfile(filepath):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   572
                result = self.Manager.OpenFileInCurrent(filepath)
512
e84806c0ada4 Some instance type test improved
lbessard
parents: 491
diff changeset
   573
                if isinstance(result, (IntType, LongType)):
299
506f9700b9fb Allowing user to type formulas
lbessard
parents: 280
diff changeset
   574
                    new_editingpanel = EditingPanel(self.FileOpened, self, self.Manager)
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   575
                    new_editingpanel.SetIndex(result)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   576
                    self.FileOpened.AddPage(new_editingpanel, "")
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   577
                    self.FileOpened.SetSelection(self.FileOpened.GetPageCount() - 1)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   578
                    if self.Manager.CurrentDS302Defined(): 
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   579
                        self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUDS302PROFILE, True)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   580
                    else:
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 410
diff changeset
   581
                        self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUDS302PROFILE, False)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   582
                    self.RefreshEditMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   583
                    self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   584
                    self.RefreshProfileMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   585
                    self.RefreshMainMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   586
                else:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   587
                    message = wx.MessageDialog(self, result, _("Error"), wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   588
                    message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   589
                    message.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   590
        dialog.Destroy()
608
daa1e1c3fba4 Removing superfluous event.Skip()
laurent
parents: 580
diff changeset
   591
        
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   592
    def OnSaveMenu(self, event):
485
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   593
        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
   594
            self._onsave()
488
01ab26d29117 Fixed missing refresh of title bar on Save.
etisserant
parents: 485
diff changeset
   595
            self.RefreshBufferState()
485
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   596
        else:
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   597
            self.Save()
608
daa1e1c3fba4 Removing superfluous event.Skip()
laurent
parents: 580
diff changeset
   598
        
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   599
    def OnSaveAsMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   600
        self.SaveAs()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   601
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   602
    def Save(self):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   603
        result = self.Manager.SaveCurrentInFile()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   604
        if not result:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   605
            self.SaveAs()
512
e84806c0ada4 Some instance type test improved
lbessard
parents: 491
diff changeset
   606
        elif not isinstance(result, (StringType, UnicodeType)):
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   607
            self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   608
        else:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   609
            message = wx.MessageDialog(self, result, _("Error"), wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   610
            message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   611
            message.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   612
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   613
    def SaveAs(self):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   614
        filepath = self.Manager.GetCurrentFilePath()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   615
        if filepath != "":
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   616
            directory, filename = os.path.split(filepath)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   617
        else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   618
            directory, filename = os.getcwd(), "%s.od"%self.Manager.GetCurrentNodeInfos()[0]
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   619
        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
   620
        if dialog.ShowModal() == wx.ID_OK:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   621
            filepath = dialog.GetPath()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   622
            if os.path.isdir(os.path.dirname(filepath)):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   623
                result = self.Manager.SaveCurrentInFile(filepath)
512
e84806c0ada4 Some instance type test improved
lbessard
parents: 491
diff changeset
   624
                if not isinstance(result, (StringType, UnicodeType)):
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   625
                    self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   626
                else:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   627
                    message = wx.MessageDialog(self, result, _("Error"), wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   628
                    message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   629
                    message.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   630
            else:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   631
                message = wx.MessageDialog(self, _("%s is not a valid folder!")%os.path.dirname(filepath), _("Error"), wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   632
                message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   633
                message.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   634
        dialog.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   635
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   636
    def OnCloseMenu(self, event):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   637
        answer = wx.ID_YES
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   638
        result = self.Manager.CloseCurrent()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   639
        if not result:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   640
            dialog = wx.MessageDialog(self, _("There are changes, do you want to save?"),  _("Close File"), wx.YES_NO|wx.CANCEL|wx.ICON_QUESTION)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   641
            answer = dialog.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   642
            dialog.Destroy()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   643
            if answer == wx.ID_YES:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   644
                self.OnSaveMenu(event)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   645
                if self.Manager.CurrentIsSaved():
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   646
                    self.Manager.CloseCurrent()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   647
            elif answer == wx.ID_NO:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   648
                self.Manager.CloseCurrent(True)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   649
        if self.FileOpened.GetPageCount() > self.Manager.GetBufferNumber():
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   650
            current = self.FileOpened.GetSelection()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   651
            self.FileOpened.DeletePage(current)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   652
            if self.FileOpened.GetPageCount() > 0:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   653
                self.FileOpened.SetSelection(min(current, self.FileOpened.GetPageCount() - 1))
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   654
            self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   655
            self.RefreshMainMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   656
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   657
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   658
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   659
#                         Import and Export Functions
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   660
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   661
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   662
    def OnImportEDSMenu(self, event):
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   663
        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
   664
        if dialog.ShowModal() == wx.ID_OK:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   665
            filepath = dialog.GetPath()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   666
            if os.path.isfile(filepath):
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   667
                result = self.Manager.ImportCurrentFromEDSFile(filepath)
512
e84806c0ada4 Some instance type test improved
lbessard
parents: 491
diff changeset
   668
                if isinstance(result, (IntType, LongType)):
299
506f9700b9fb Allowing user to type formulas
lbessard
parents: 280
diff changeset
   669
                    new_editingpanel = EditingPanel(self.FileOpened, self, self.Manager)
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   670
                    new_editingpanel.SetIndex(result)
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   671
                    self.FileOpened.AddPage(new_editingpanel, "")
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   672
                    self.FileOpened.SetSelection(self.FileOpened.GetPageCount() - 1)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   673
                    self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   674
                    self.RefreshCurrentIndexList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   675
                    self.RefreshProfileMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   676
                    self.RefreshMainMenu()
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   677
                    message = wx.MessageDialog(self, _("Import successful"), _("Information"), wx.OK|wx.ICON_INFORMATION)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   678
                    message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   679
                    message.Destroy()
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   680
                else:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   681
                    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
   682
                    message.ShowModal()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   683
                    message.Destroy()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   684
            else:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   685
                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
   686
                message.ShowModal()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   687
                message.Destroy()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   688
        dialog.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   689
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   690
    def OnExportEDSMenu(self, event):
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   691
        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
   692
        if dialog.ShowModal() == wx.ID_OK:
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   693
            filepath = dialog.GetPath()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   694
            if os.path.isdir(os.path.dirname(filepath)):
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   695
                path, extend = os.path.splitext(filepath)
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   696
                if extend in ("", "."):
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   697
                    filepath = path + ".eds"
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   698
                result = self.Manager.ExportCurrentToEDSFile(filepath)
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   699
                if not result:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   700
                    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
   701
                    message.ShowModal()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   702
                    message.Destroy()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   703
                else:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   704
                    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
   705
                    message.ShowModal()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   706
                    message.Destroy()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   707
            else:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   708
                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
   709
                message.ShowModal()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   710
                message.Destroy()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   711
        dialog.Destroy()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   712
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   713
    def OnExportCMenu(self, event):
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   714
        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
   715
        if dialog.ShowModal() == wx.ID_OK:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   716
            filepath = dialog.GetPath()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   717
            if os.path.isdir(os.path.dirname(filepath)):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   718
                path, extend = os.path.splitext(filepath)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   719
                if extend in ("", "."):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   720
                    filepath = path + ".c"
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   721
                result = self.Manager.ExportCurrentToCFile(filepath)
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   722
                if not result:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   723
                    message = wx.MessageDialog(self, _("Export successful"), _("Information"), wx.OK|wx.ICON_INFORMATION)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   724
                    message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   725
                    message.Destroy()
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   726
                else:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   727
                    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
   728
                    message.ShowModal()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   729
                    message.Destroy()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   730
            else:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   731
                message = wx.MessageDialog(self, _("\"%s\" is not a valid folder!")%os.path.dirname(filepath), _("Error"), wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   732
                message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   733
                message.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   734
        dialog.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   735
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   736
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   737
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   738
#                               Exception Handler
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   739
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   740
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   741
Max_Traceback_List_Size = 20
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   742
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   743
def Display_Exception_Dialog(e_type,e_value,e_tb):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   744
    trcbck_lst = []
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   745
    for i,line in enumerate(traceback.extract_tb(e_tb)):
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   746
        trcbck = " " + str(i+1) + _(". ")
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   747
        if line[0].find(os.getcwd()) == -1:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   748
            trcbck += _("file : ") + str(line[0]) + _(",   ")
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   749
        else:
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   750
            trcbck += _("file : ") + str(line[0][len(os.getcwd()):]) + _(",   ")
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   751
        trcbck += _("line : ") + str(line[1]) + _(",   ") + _("function : ") + str(line[2])
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   752
        trcbck_lst.append(trcbck)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   753
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   754
    # Allow clicking....
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   755
    cap = wx.Window_GetCapture()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   756
    if cap:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   757
        cap.ReleaseMouse()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   758
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   759
    dlg = wx.SingleChoiceDialog(None, 
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   760
        _("""
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   761
An error happens.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   762
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   763
Click on OK for saving an error report.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   764
614
9b1fe0532d0d Replace \"lolitech\" contact by \"edouard\" contact
greg
parents: 608
diff changeset
   765
Please be kind enough to send this file to:
9b1fe0532d0d Replace \"lolitech\" contact by \"edouard\" contact
greg
parents: 608
diff changeset
   766
edouard.tisserant@gmail.com
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   767
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   768
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   769
Error:
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   770
""") +
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   771
        str(e_type) + _(" : ") + str(e_value), 
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   772
        _("Error"),
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   773
        trcbck_lst)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   774
    try:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   775
        res = (dlg.ShowModal() == wx.ID_OK)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   776
    finally:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   777
        dlg.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   778
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   779
    return res
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   780
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   781
def Display_Error_Dialog(e_value):
580
2ae92a99ac10 Adding support for internationalization
laurent
parents: 569
diff changeset
   782
    message = wx.MessageDialog(None, str(e_value), _("Error"), wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   783
    message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   784
    message.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   785
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   786
def get_last_traceback(tb):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   787
    while tb.tb_next:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   788
        tb = tb.tb_next
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   789
    return tb
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   790
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   791
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   792
def format_namespace(d, indent='    '):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   793
    return '\n'.join(['%s%s: %s' % (indent, k, repr(v)[:10000]) for k, v in d.iteritems()])
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   794
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   795
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   796
ignored_exceptions = [] # a problem with a line in a module is only reported once per session
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   797
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   798
def AddExceptHook(path, app_version='[No version]'):#, ignored_exceptions=[]):
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   799
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   800
    def handle_exception(e_type, e_value, e_traceback):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   801
        traceback.print_exception(e_type, e_value, e_traceback) # this is very helpful when there's an exception in the rest of this func
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   802
        last_tb = get_last_traceback(e_traceback)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   803
        ex = (last_tb.tb_frame.f_code.co_filename, last_tb.tb_frame.f_lineno)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   804
        if str(e_value).startswith("!!!"):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   805
            Display_Error_Dialog(e_value)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   806
        elif ex not in ignored_exceptions:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   807
            ignored_exceptions.append(ex)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   808
            result = Display_Exception_Dialog(e_type,e_value,e_traceback)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   809
            if result:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   810
                info = {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   811
                    'app-title' : wx.GetApp().GetAppName(), # app_title
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   812
                    'app-version' : app_version,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   813
                    'wx-version' : wx.VERSION_STRING,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   814
                    'wx-platform' : wx.Platform,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   815
                    'python-version' : platform.python_version(), #sys.version.split()[0],
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   816
                    'platform' : platform.platform(),
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   817
                    'e-type' : e_type,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   818
                    'e-value' : e_value,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   819
                    'date' : time.ctime(),
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   820
                    'cwd' : os.getcwd(),
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   821
                    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   822
                if e_traceback:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   823
                    info['traceback'] = ''.join(traceback.format_tb(e_traceback)) + '%s: %s' % (e_type, e_value)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   824
                    last_tb = get_last_traceback(e_traceback)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   825
                    exception_locals = last_tb.tb_frame.f_locals # the locals at the level of the stack trace where the exception actually occurred
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   826
                    info['locals'] = format_namespace(exception_locals)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   827
                    if 'self' in exception_locals:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   828
                        info['self'] = format_namespace(exception_locals['self'].__dict__)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   829
                
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   830
                output = open(path+os.sep+"bug_report_"+info['date'].replace(':','-').replace(' ','_')+".txt",'w')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   831
                lst = info.keys()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   832
                lst.sort()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   833
                for a in lst:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   834
                    output.write(a+":\n"+str(info[a])+"\n\n")
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   835
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   836
    #sys.excepthook = lambda *args: wx.CallAfter(handle_exception, *args)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   837
    sys.excepthook = handle_exception
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   838
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   839
if __name__ == '__main__':
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   840
    wx.InitAllImageHandlers()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   841
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   842
    # Install a exception handle for bug reports
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   843
    AddExceptHook(os.getcwd(),__version__)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   844
    
485
24b506ea314b Added embedded mode in objdictedit, for integration in Beremiz.
etisserant
parents: 418
diff changeset
   845
    frame = objdictedit(None, filesOpen = args)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   846
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   847
    frame.Show()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   848
    app.MainLoop()