objdictgen/objdictedit.py
author lbessard
Thu, 23 Aug 2007 17:07:02 +0200
changeset 258 8f7725451453
parent 254 f2b0acb54e65
child 273 58b39f97e352
permissions -rwxr-xr-x
Some bugs fixed:
- Using __file__ instead of sys.path[0] for extracting CWD
- EDS generation errors (reported by Robert McCullough)
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
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    29
__version__ = "$Revision$"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    30
206
6787754b251b Bugs corrected on objdictedit and networkdict
greg
parents: 205
diff changeset
    31
from node import OD_Subindex, OD_MultipleSubindexes, OD_IdenticalSubindexes, OD_IdenticalIndexes
6787754b251b Bugs corrected on objdictedit and networkdict
greg
parents: 205
diff changeset
    32
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    33
from nodemanager import *
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
    34
from subindextable import *
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
    35
from commondialogs import *
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    36
from doc_index.DS301_index import *
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    37
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    38
try:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    39
    import wx.html
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    40
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    41
    EVT_HTML_URL_CLICK = wx.NewId()
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    42
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    43
    class HtmlWindowUrlClick(wx.PyEvent):
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    44
        def __init__(self, linkinfo):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    45
            wx.PyEvent.__init__(self)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    46
            self.SetEventType(EVT_HTML_URL_CLICK)
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    47
            self.linkinfo = (linkinfo.GetHref(), linkinfo.GetTarget())
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    48
            
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    49
    class UrlClickHtmlWindow(wx.html.HtmlWindow):
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    50
        """ HTML window that generates and OnLinkClicked event.
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    51
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    52
        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
    53
        """
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    54
        def OnLinkClicked(self, linkinfo):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    55
            wx.PostEvent(self, HtmlWindowUrlClick(linkinfo))
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    56
        
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    57
        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
    58
            if event == HtmlWindowUrlClick:
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    59
                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
    60
            else:
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    61
                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
    62
    
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    63
#-------------------------------------------------------------------------------
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    64
#                                Html Frame
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    65
#-------------------------------------------------------------------------------
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    66
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    67
    [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
    68
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    69
    class HtmlFrame(wx.Frame):
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    70
        def _init_ctrls(self, prnt):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    71
            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
    72
                  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
    73
                  style=wx.DEFAULT_FRAME_STYLE, title='')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    74
            self.Bind(wx.EVT_CLOSE, self.OnCloseFrame, id=ID_HTMLFRAME)
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    75
            
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
    76
            self.HtmlContent = UrlClickHtmlWindow(id=ID_HTMLFRAMEHTMLCONTENT,
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    77
                  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
    78
                  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
    79
            self.HtmlContent.Bind(HtmlWindowUrlClick, self.OnLinkClick)
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    80
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    81
        def __init__(self, parent, opened):
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    82
            self._init_ctrls(parent)
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    83
            self.HtmlFrameOpened = opened
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    84
        
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    85
        def SetHtmlCode(self, htmlcode):
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    86
            self.HtmlContent.SetPage(htmlcode)
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    87
            
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    88
        def SetHtmlPage(self, htmlpage):
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    89
            self.HtmlContent.LoadPage(htmlpage)
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    90
            
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    91
        def OnCloseFrame(self, event):
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    92
            self.HtmlFrameOpened.remove(self.GetTitle())
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    93
            event.Skip()
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    94
        
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    95
        def OnLinkClick(self, event):
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    96
            url = event.linkinfo[0]
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    97
            try:
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    98
                import webbrowser
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
    99
            except ImportError:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   100
                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
   101
            else:
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   102
                webbrowser.open(url)
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   103
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   104
    Html_Window = True
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   105
except:
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   106
    Html_Window = False
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   107
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   108
def create(parent):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   109
    return objdictedit(parent)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   110
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   111
def usage():
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   112
    print "\nUsage of objdictedit.py :"
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   113
    print "\n   %s [Filepath, ...]\n"%sys.argv[0]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   114
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   115
try:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   116
    opts, args = getopt.getopt(sys.argv[1:], "h", ["help"])
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   117
except getopt.GetoptError:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   118
    # print help information and exit:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   119
    usage()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   120
    sys.exit(2)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   121
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   122
for o, a in opts:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   123
    if o in ("-h", "--help"):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   124
        usage()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   125
        sys.exit()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   126
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   127
filesOpen = args
258
8f7725451453 Some bugs fixed:
lbessard
parents: 254
diff changeset
   128
ScriptDirectory = os.path.split(__file__)[0]
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   129
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   130
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   131
[ID_OBJDICTEDIT, ID_OBJDICTEDITFILEOPENED, 
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   132
 ID_OBJDICTEDITHELPBAR,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   133
] = [wx.NewId() for _init_ctrls in range(3)]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   134
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   135
[ID_OBJDICTEDITADDMENUITEMS0, ID_OBJDICTEDITADDMENUITEMS1, 
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   136
 ID_OBJDICTEDITADDMENUITEMS2, ID_OBJDICTEDITADDMENUITEMS3, 
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   137
 ID_OBJDICTEDITADDMENUITEMS4, ID_OBJDICTEDITADDMENUITEMS5, 
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   138
] = [wx.NewId() for _init_coll_AddMenu_Items in range(6)]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   139
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   140
[ID_OBJDICTEDITFILEMENUITEMS0, ID_OBJDICTEDITFILEMENUITEMS1, 
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   141
 ID_OBJDICTEDITFILEMENUITEMS2, ID_OBJDICTEDITFILEMENUITEMS4, 
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   142
 ID_OBJDICTEDITFILEMENUITEMS5, ID_OBJDICTEDITFILEMENUITEMS6, 
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   143
 ID_OBJDICTEDITFILEMENUITEMS7, ID_OBJDICTEDITFILEMENUITEMS8,
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   144
 ID_OBJDICTEDITFILEMENUITEMS9,
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   145
] = [wx.NewId() for _init_coll_FileMenu_Items in range(9)]
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   146
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   147
[ID_OBJDICTEDITEDITMENUITEMS0, ID_OBJDICTEDITEDITMENUITEMS1, 
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   148
 ID_OBJDICTEDITEDITMENUITEMS2, ID_OBJDICTEDITEDITMENUITEMS4, 
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   149
 ID_OBJDICTEDITEDITMENUITEMS6, ID_OBJDICTEDITEDITMENUITEMS7, 
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   150
 ID_OBJDICTEDITEDITMENUITEMS8, 
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   151
] = [wx.NewId() for _init_coll_EditMenu_Items in range(7)]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   152
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   153
[ID_OBJDICTEDITHELPMENUITEMS0, ID_OBJDICTEDITHELPMENUITEMS1,
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   154
 ID_OBJDICTEDITHELPMENUITEMS2,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   155
] = [wx.NewId() for _init_coll_HelpMenu_Items in range(3)]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   156
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   157
class objdictedit(wx.Frame):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   158
    def _init_coll_menuBar1_Menus(self, parent):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   159
        parent.Append(menu=self.FileMenu, title='File')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   160
        parent.Append(menu=self.EditMenu, title='Edit')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   161
        parent.Append(menu=self.AddMenu, title='Add')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   162
        parent.Append(menu=self.HelpMenu, title='Help')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   163
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   164
    def _init_coll_EditMenu_Items(self, parent):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   165
        parent.Append(help='', id=ID_OBJDICTEDITEDITMENUITEMS4,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   166
              kind=wx.ITEM_NORMAL, text='Refresh\tCTRL+R')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   167
        parent.AppendSeparator()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   168
        parent.Append(help='', id=ID_OBJDICTEDITEDITMENUITEMS1,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   169
              kind=wx.ITEM_NORMAL, text='Undo\tCTRL+Z')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   170
        parent.Append(help='', id=ID_OBJDICTEDITEDITMENUITEMS0,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   171
              kind=wx.ITEM_NORMAL, text='Redo\tCTRL+Y')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   172
        parent.AppendSeparator()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   173
        parent.Append(help='', id=ID_OBJDICTEDITEDITMENUITEMS6,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   174
              kind=wx.ITEM_NORMAL, text='Node infos')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   175
        parent.Append(help='', id=ID_OBJDICTEDITEDITMENUITEMS2,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   176
              kind=wx.ITEM_NORMAL, text='DS-301 Profile')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   177
        parent.Append(help='', id=ID_OBJDICTEDITEDITMENUITEMS8,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   178
              kind=wx.ITEM_NORMAL, text='DS-302 Profile')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   179
        parent.Append(help='', id=ID_OBJDICTEDITEDITMENUITEMS7,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   180
              kind=wx.ITEM_NORMAL, text='Other Profile')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   181
        self.Bind(wx.EVT_MENU, self.OnUndoMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   182
              id=ID_OBJDICTEDITEDITMENUITEMS1)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   183
        self.Bind(wx.EVT_MENU, self.OnRedoMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   184
              id=ID_OBJDICTEDITEDITMENUITEMS0)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   185
        self.Bind(wx.EVT_MENU, self.OnCommunicationMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   186
              id=ID_OBJDICTEDITEDITMENUITEMS2)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   187
        self.Bind(wx.EVT_MENU, self.OnRefreshMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   188
              id=ID_OBJDICTEDITEDITMENUITEMS4)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   189
        self.Bind(wx.EVT_MENU, self.OnNodeInfosMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   190
              id=ID_OBJDICTEDITEDITMENUITEMS6)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   191
        self.Bind(wx.EVT_MENU, self.OnEditProfileMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   192
              id=ID_OBJDICTEDITEDITMENUITEMS7)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   193
        self.Bind(wx.EVT_MENU, self.OnOtherCommunicationMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   194
              id=ID_OBJDICTEDITEDITMENUITEMS8)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   195
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   196
    def _init_coll_HelpMenu_Items(self, parent):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   197
        parent.Append(help='', id=ID_OBJDICTEDITHELPMENUITEMS0,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   198
              kind=wx.ITEM_NORMAL, text='DS-301 Standard\tF1')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   199
        self.Bind(wx.EVT_MENU, self.OnHelpDS301Menu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   200
              id=ID_OBJDICTEDITHELPMENUITEMS0)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   201
        parent.Append(help='', id=ID_OBJDICTEDITHELPMENUITEMS1,
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   202
              kind=wx.ITEM_NORMAL, text='CAN Festival Docs\tF2')
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   203
        self.Bind(wx.EVT_MENU, self.OnHelpCANFestivalMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   204
              id=ID_OBJDICTEDITHELPMENUITEMS1)
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   205
        if Html_Window:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   206
            parent.Append(help='', id=ID_OBJDICTEDITHELPMENUITEMS2,
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   207
                  kind=wx.ITEM_NORMAL, text='About')
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   208
            self.Bind(wx.EVT_MENU, self.OnAboutMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   209
                  id=ID_OBJDICTEDITHELPMENUITEMS2)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   210
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   211
    def _init_coll_FileMenu_Items(self, parent):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   212
        parent.Append(help='', id=ID_OBJDICTEDITFILEMENUITEMS5,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   213
              kind=wx.ITEM_NORMAL, text='New\tCTRL+N')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   214
        parent.Append(help='', id=ID_OBJDICTEDITFILEMENUITEMS0,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   215
              kind=wx.ITEM_NORMAL, text='Open\tCTRL+O')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   216
        parent.Append(help='', id=ID_OBJDICTEDITFILEMENUITEMS1,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   217
              kind=wx.ITEM_NORMAL, text='Save\tCTRL+S')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   218
        parent.Append(help='', id=ID_OBJDICTEDITFILEMENUITEMS6,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   219
              kind=wx.ITEM_NORMAL, text='Save As...\tALT+S')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   220
        parent.Append(help='', id=ID_OBJDICTEDITFILEMENUITEMS2,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   221
              kind=wx.ITEM_NORMAL, text='Close\tCTRL+W')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   222
        parent.AppendSeparator()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   223
        parent.Append(help='', id=ID_OBJDICTEDITFILEMENUITEMS7,
171
db7a030babb2 EDS import
etisserant
parents: 158
diff changeset
   224
              kind=wx.ITEM_NORMAL, text='Import EDS file')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   225
        parent.Append(help='', id=ID_OBJDICTEDITFILEMENUITEMS9,
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   226
              kind=wx.ITEM_NORMAL, text='Export to EDS file')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   227
        parent.Append(help='', id=ID_OBJDICTEDITFILEMENUITEMS8,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   228
              kind=wx.ITEM_NORMAL, text='Build Dictionary\tCTRL+B')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   229
        parent.AppendSeparator()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   230
        parent.Append(help='', id=ID_OBJDICTEDITFILEMENUITEMS4,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   231
              kind=wx.ITEM_NORMAL, text='Exit')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   232
        self.Bind(wx.EVT_MENU, self.OnOpenMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   233
              id=ID_OBJDICTEDITFILEMENUITEMS0)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   234
        self.Bind(wx.EVT_MENU, self.OnSaveMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   235
              id=ID_OBJDICTEDITFILEMENUITEMS1)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   236
        self.Bind(wx.EVT_MENU, self.OnCloseMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   237
              id=ID_OBJDICTEDITFILEMENUITEMS2)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   238
        self.Bind(wx.EVT_MENU, self.OnQuitMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   239
              id=ID_OBJDICTEDITFILEMENUITEMS4)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   240
        self.Bind(wx.EVT_MENU, self.OnNewMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   241
              id=ID_OBJDICTEDITFILEMENUITEMS5)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   242
        self.Bind(wx.EVT_MENU, self.OnSaveAsMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   243
              id=ID_OBJDICTEDITFILEMENUITEMS6)
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   244
        self.Bind(wx.EVT_MENU, self.OnImportEDSMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   245
              id=ID_OBJDICTEDITFILEMENUITEMS7)
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   246
        self.Bind(wx.EVT_MENU, self.OnExportCMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   247
              id=ID_OBJDICTEDITFILEMENUITEMS8)
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   248
        self.Bind(wx.EVT_MENU, self.OnExportEDSMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   249
              id=ID_OBJDICTEDITFILEMENUITEMS9)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   250
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   251
    def _init_coll_AddMenu_Items(self, parent):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   252
        parent.Append(help='', id=ID_OBJDICTEDITADDMENUITEMS0,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   253
              kind=wx.ITEM_NORMAL, text='SDO Server')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   254
        parent.Append(help='', id=ID_OBJDICTEDITADDMENUITEMS1,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   255
              kind=wx.ITEM_NORMAL, text='SDO Client')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   256
        parent.Append(help='', id=ID_OBJDICTEDITADDMENUITEMS2,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   257
              kind=wx.ITEM_NORMAL, text='PDO Transmit')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   258
        parent.Append(help='', id=ID_OBJDICTEDITADDMENUITEMS3,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   259
              kind=wx.ITEM_NORMAL, text='PDO Receive')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   260
        parent.Append(help='', id=ID_OBJDICTEDITADDMENUITEMS4,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   261
              kind=wx.ITEM_NORMAL, text='Map Variable')
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   262
        parent.Append(help='', id=ID_OBJDICTEDITADDMENUITEMS5,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   263
              kind=wx.ITEM_NORMAL, text='User Type')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   264
        self.Bind(wx.EVT_MENU, self.OnAddSDOServerMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   265
              id=ID_OBJDICTEDITADDMENUITEMS0)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   266
        self.Bind(wx.EVT_MENU, self.OnAddSDOClientMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   267
              id=ID_OBJDICTEDITADDMENUITEMS1)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   268
        self.Bind(wx.EVT_MENU, self.OnAddPDOTransmitMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   269
              id=ID_OBJDICTEDITADDMENUITEMS2)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   270
        self.Bind(wx.EVT_MENU, self.OnAddPDOReceiveMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   271
              id=ID_OBJDICTEDITADDMENUITEMS3)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   272
        self.Bind(wx.EVT_MENU, self.OnAddMapVariableMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   273
              id=ID_OBJDICTEDITADDMENUITEMS4)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   274
        self.Bind(wx.EVT_MENU, self.OnAddUserTypeMenu,
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   275
              id=ID_OBJDICTEDITADDMENUITEMS5)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   276
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   277
    def _init_coll_HelpBar_Fields(self, parent):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   278
        parent.SetFieldsCount(3)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   279
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   280
        parent.SetStatusText(number=0, text='')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   281
        parent.SetStatusText(number=1, text='')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   282
        parent.SetStatusText(number=2, text='')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   283
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   284
        parent.SetStatusWidths([100, 110, -1])
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   285
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   286
    def _init_utils(self):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   287
        self.menuBar1 = wx.MenuBar()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   288
        self.menuBar1.SetEvtHandlerEnabled(True)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   289
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   290
        self.FileMenu = wx.Menu(title='')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   291
        self.EditMenu = wx.Menu(title='')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   292
        self.AddMenu = wx.Menu(title='')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   293
        self.HelpMenu = wx.Menu(title='')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   294
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   295
        self._init_coll_menuBar1_Menus(self.menuBar1)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   296
        self._init_coll_FileMenu_Items(self.FileMenu)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   297
        self._init_coll_EditMenu_Items(self.EditMenu)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   298
        self._init_coll_AddMenu_Items(self.AddMenu)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   299
        self._init_coll_HelpMenu_Items(self.HelpMenu)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   300
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   301
    def _init_ctrls(self, prnt):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   302
        wx.Frame.__init__(self, id=ID_OBJDICTEDIT, name='objdictedit',
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   303
              parent=prnt, pos=wx.Point(149, 178), size=wx.Size(1000, 700),
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   304
              style=wx.DEFAULT_FRAME_STYLE, title='Objdictedit')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   305
        self._init_utils()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   306
        self.SetClientSize(wx.Size(1000, 700))
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   307
        self.SetMenuBar(self.menuBar1)
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   308
        self.Bind(wx.EVT_CLOSE, self.OnCloseFrame, id=ID_OBJDICTEDIT)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   309
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   310
        self.FileOpened = wx.Notebook(id=ID_OBJDICTEDITFILEOPENED,
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   311
              name='FileOpened', parent=self, pos=wx.Point(0, 0),
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   312
              size=wx.Size(0, 0), style=0)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   313
        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
   314
              self.OnFileSelectedChanged, id=ID_OBJDICTEDITFILEOPENED)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   315
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   316
        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
   317
              parent=self, style=wx.ST_SIZEGRIP)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   318
        self._init_coll_HelpBar_Fields(self.HelpBar)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   319
        self.SetStatusBar(self.HelpBar)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   320
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   321
    def __init__(self, parent):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   322
        self._init_ctrls(parent)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   323
        self.HtmlFrameOpened = []
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 232
diff changeset
   324
        self.ModeSolo = True
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   325
        
258
8f7725451453 Some bugs fixed:
lbessard
parents: 254
diff changeset
   326
        self.Manager = NodeManager()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   327
        for filepath in filesOpen:
232
e435bbec1759 Bug on file loading from shell command fixed
lbessard
parents: 227
diff changeset
   328
            result = self.Manager.OpenFileInCurrent(filepath)
e435bbec1759 Bug on file loading from shell command fixed
lbessard
parents: 227
diff changeset
   329
            if type(result) == IntType:
e435bbec1759 Bug on file loading from shell command fixed
lbessard
parents: 227
diff changeset
   330
                new_editingpanel = EditingPanel(self, self.Manager)
e435bbec1759 Bug on file loading from shell command fixed
lbessard
parents: 227
diff changeset
   331
                new_editingpanel.SetIndex(result)
e435bbec1759 Bug on file loading from shell command fixed
lbessard
parents: 227
diff changeset
   332
                self.FileOpened.AddPage(new_editingpanel, "")
e435bbec1759 Bug on file loading from shell command fixed
lbessard
parents: 227
diff changeset
   333
            window = self.FileOpened.GetPage(0)
e435bbec1759 Bug on file loading from shell command fixed
lbessard
parents: 227
diff changeset
   334
            if window:
e435bbec1759 Bug on file loading from shell command fixed
lbessard
parents: 227
diff changeset
   335
                self.Manager.ChangeCurrentNode(window.GetIndex())
e435bbec1759 Bug on file loading from shell command fixed
lbessard
parents: 227
diff changeset
   336
                self.FileOpened.SetSelection(0)
258
8f7725451453 Some bugs fixed:
lbessard
parents: 254
diff changeset
   337
        if self.Manager.CurrentDS302Defined():
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   338
            self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUITEMS8, True)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   339
        else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   340
            self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUITEMS8, False)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   341
        self.RefreshEditMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   342
        self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   343
        self.RefreshProfileMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   344
        self.RefreshTitle()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   345
        self.RefreshMainMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   346
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   347
    def GetNoteBook(self):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   348
        return self.FileOpened
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   349
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   350
    def OnAddSDOServerMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   351
        self.Manager.AddSDOServerToCurrent()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   352
        self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   353
        self.RefreshCurrentIndexList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   354
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   355
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   356
    def OnAddSDOClientMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   357
        self.Manager.AddSDOClientToCurrent()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   358
        self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   359
        self.RefreshCurrentIndexList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   360
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   361
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   362
    def OnAddPDOTransmitMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   363
        self.Manager.AddPDOTransmitToCurrent()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   364
        self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   365
        self.RefreshCurrentIndexList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   366
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   367
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   368
    def OnAddPDOReceiveMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   369
        self.Manager.AddPDOReceiveToCurrent()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   370
        self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   371
        self.RefreshCurrentIndexList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   372
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   373
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   374
    def OnAddMapVariableMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   375
        self.AddMapVariable()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   376
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   377
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   378
    def OnAddUserTypeMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   379
        self.AddUserType()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   380
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   381
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   382
    def OnFileSelectedChanged(self, event):
43
56ab4f38075e Bug on NoteBook in Windows corrected
lbessard
parents: 39
diff changeset
   383
        selected = event.GetSelection()
37
c6ff23a48232 Some fixes for GUI running Windows
etisserant
parents: 30
diff changeset
   384
        # At init selected = -1
c6ff23a48232 Some fixes for GUI running Windows
etisserant
parents: 30
diff changeset
   385
        if selected >= 0:
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   386
            window = self.FileOpened.GetPage(selected)
223
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 219
diff changeset
   387
            if window:
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 219
diff changeset
   388
                self.Manager.ChangeCurrentNode(window.GetIndex())
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 219
diff changeset
   389
                self.RefreshBufferState()
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 219
diff changeset
   390
                self.RefreshStatusBar()
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 219
diff changeset
   391
                self.RefreshProfileMenu()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   392
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   393
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   394
    def OnHelpDS301Menu(self, event):
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   395
        find_index = False
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   396
        selected = self.FileOpened.GetSelection()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   397
        if selected >= 0:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   398
            window = self.FileOpened.GetPage(selected)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   399
            result = window.GetSelection()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   400
            if result:
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   401
                find_index = True
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   402
                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
   403
                result = OpenPDFDocIndex(index, ScriptDirectory)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   404
                if type(result) == StringType:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   405
                    message = wx.MessageDialog(self, result, "ERROR", wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   406
                    message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   407
                    message.Destroy()
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   408
        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
   409
            result = OpenPDFDocIndex(None, ScriptDirectory)
72
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   410
            if type(result) == StringType:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   411
                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
   412
                message.ShowModal()
68524f7c58b5 Code for avoiding possible problem on Window while importing html module
lbessard
parents: 68
diff changeset
   413
                message.Destroy()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   414
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   415
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   416
    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
   417
        #self.OpenHtmlFrame("CAN Festival Reference", os.path.join(ScriptDirectory, "doc/canfestival.html"), wx.Size(1000, 600))
b505f7116a1c Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents: 149
diff changeset
   418
        os.system("xpdf -remote CANFESTIVAL %s %d &"%(os.path.join(ScriptDirectory, "doc/manual_en.pdf"),16))
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   419
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   420
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   421
    def OnAboutMenu(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
   422
        self.OpenHtmlFrame("About CAN Festival", os.path.join(ScriptDirectory, "doc/about.html"), wx.Size(500, 450))
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   423
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   424
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   425
    def OpenHtmlFrame(self, title, file, size):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   426
        if title not in self.HtmlFrameOpened:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   427
            self.HtmlFrameOpened.append(title)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   428
            window = HtmlFrame(self, self.HtmlFrameOpened)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   429
            window.SetTitle(title)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   430
            window.SetHtmlPage(file)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   431
            window.SetClientSize(size)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   432
            window.Show()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   433
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   434
    def OnQuitMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   435
        self.Close()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   436
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   437
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   438
    def OnCloseFrame(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   439
        if self.Manager.OneFileHasChanged():
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   440
            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
   441
            answer = dialog.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   442
            dialog.Destroy()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   443
            if answer == wx.ID_YES:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   444
                self.Manager.ChangeCurrentNode(0)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   445
                for i in xrange(self.FileOpened.GetPageCount()):
223
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 219
diff changeset
   446
                    window = self.FileOpened.GetPage(i)
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 219
diff changeset
   447
                    self.Manager.ChangeCurrentNode(window.GetIndex())
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   448
                    if self.Manager.CurrentIsSaved():
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   449
                        self.Manager.CloseCurrent()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   450
                    else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   451
                        self.Save()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   452
                        self.Manager.CloseCurrent(True)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   453
                event.Skip()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   454
            elif answer == wx.ID_NO:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   455
                for i in xrange(self.FileOpened.GetPageCount()):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   456
                    self.Manager.CloseCurrent(True)
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   457
                wx.CallAfter(self.Close)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   458
                event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   459
        else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   460
            event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   461
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   462
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   463
#                             Refresh Functions
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
    def RefreshTitle(self):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   467
        if self.FileOpened.GetPageCount() > 0:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   468
            self.SetTitle("Objdictedit - %s"%self.Manager.GetCurrentFilename())
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   469
        else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   470
            self.SetTitle("Objdictedit")
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   471
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   472
    def OnRefreshMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   473
        self.RefreshCurrentIndexList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   474
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   475
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   476
    def RefreshCurrentIndexList(self):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   477
        selected = self.FileOpened.GetSelection()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   478
        window = self.FileOpened.GetPage(selected)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   479
        window.RefreshIndexList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   480
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   481
    def RefreshStatusBar(self):
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   482
        if self.HelpBar:
209
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   483
            selected = self.FileOpened.GetSelection()
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   484
            if selected >= 0:
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   485
                window = self.FileOpened.GetPage(selected)
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   486
                selection = window.GetSelection()
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   487
                if selection:
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   488
                    index, subIndex = selection
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   489
                    if self.Manager.IsCurrentEntry(index):
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   490
                        self.HelpBar.SetStatusText("Index: 0x%04X"%index, 0)
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   491
                        self.HelpBar.SetStatusText("Subindex: 0x%02X"%subIndex, 1)
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   492
                        entryinfos = self.Manager.GetEntryInfos(index)
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   493
                        name = entryinfos["name"]
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   494
                        category = "Optional"
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   495
                        if entryinfos["need"]:
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   496
                            category = "Mandatory"
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   497
                        struct = "VAR"
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   498
                        number = ""
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   499
                        if entryinfos["struct"] & OD_IdenticalIndexes:
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   500
                            number = " possibly defined %d times"%entryinfos["nbmax"]
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   501
                        if entryinfos["struct"] & OD_IdenticalSubindexes:
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   502
                            struct = "REC"
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   503
                        elif entryinfos["struct"] & OD_MultipleSubindexes:
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   504
                            struct = "ARRAY"
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   505
                        text = "%s: %s entry of struct %s%s."%(name,category,struct,number)
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   506
                        self.HelpBar.SetStatusText(text, 2)
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   507
                    else:
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   508
                        for i in xrange(3):
2cb34a4ac65a Bug on RefreshStatusBar corrected
lbessard
parents: 206
diff changeset
   509
                            self.HelpBar.SetStatusText("", i)
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   510
                else:
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   511
                    for i in xrange(3):
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   512
                        self.HelpBar.SetStatusText("", i)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   513
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   514
    def RefreshMainMenu(self):
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   515
        if self.FileMenu:
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   516
            if self.FileOpened.GetPageCount() > 0:
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   517
                self.menuBar1.EnableTop(1, True)
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   518
                self.menuBar1.EnableTop(2, True)
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   519
                self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUITEMS1, True)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   520
                self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUITEMS2, True)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   521
                self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUITEMS6, True)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   522
                self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUITEMS8, True)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   523
                self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUITEMS9, True)
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   524
            else:
258
8f7725451453 Some bugs fixed:
lbessard
parents: 254
diff changeset
   525
                self.menuBar1.EnableTop(1, False)
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   526
                self.menuBar1.EnableTop(2, False)
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   527
                self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUITEMS1, False)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   528
                self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUITEMS2, False)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   529
                self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUITEMS6, False)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   530
                self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUITEMS8, False)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   531
                self.FileMenu.Enable(ID_OBJDICTEDITFILEMENUITEMS9, False)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   532
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   533
    def RefreshEditMenu(self):
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   534
        if self.FileMenu:
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   535
            if self.FileOpened.GetPageCount() > 0:
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   536
                undo, redo = self.Manager.GetCurrentBufferState()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   537
                self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUITEMS1, undo)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   538
                self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUITEMS0, redo)
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   539
            else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   540
                self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUITEMS1, False)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   541
                self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUITEMS0, False)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   542
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   543
    def RefreshProfileMenu(self):
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   544
        if self.EditMenu:
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   545
            profile = self.Manager.GetCurrentProfileName()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   546
            edititem = self.EditMenu.FindItemById(ID_OBJDICTEDITEDITMENUITEMS7)
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   547
            if edititem:
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   548
                length = self.AddMenu.GetMenuItemCount()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   549
                for i in xrange(length-6):
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   550
                    additem = self.AddMenu.FindItemByPosition(6)
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   551
                    self.AddMenu.Delete(additem.GetId())
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   552
                if profile not in ("None", "DS-301"):
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   553
                    edititem.SetText("%s Profile"%profile)
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   554
                    edititem.Enable(True)
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   555
                    self.AddMenu.AppendSeparator()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   556
                    for text, indexes in self.Manager.GetCurrentSpecificMenu():
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   557
                        new_id = wx.NewId()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   558
                        self.AddMenu.Append(help='', id=new_id, kind=wx.ITEM_NORMAL, text=text)
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   559
                        self.Bind(wx.EVT_MENU, self.GetProfileCallBack(text), id=new_id)
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   560
                else:
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   561
                    edititem.SetText("Other Profile")
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   562
                    edititem.Enable(False)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   563
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   564
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   565
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   566
#                            Buffer Functions
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   567
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   568
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   569
    def RefreshBufferState(self):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   570
        fileopened = self.Manager.GetAllFilenames()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   571
        for idx, filename in enumerate(fileopened):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   572
            self.FileOpened.SetPageText(idx, filename)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   573
        self.RefreshEditMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   574
        self.RefreshTitle()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   575
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   576
    def OnUndoMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   577
        self.Manager.LoadCurrentPrevious()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   578
        self.RefreshCurrentIndexList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   579
        self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   580
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   581
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   582
    def OnRedoMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   583
        self.Manager.LoadCurrentNext()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   584
        self.RefreshCurrentIndexList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   585
        self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   586
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   587
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   588
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   589
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   590
#                         Load and Save Funtions
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   591
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   592
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   593
    def OnNewMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   594
        self.FilePath = ""
258
8f7725451453 Some bugs fixed:
lbessard
parents: 254
diff changeset
   595
        dialog = CreateNodeDialog(self)
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   596
        if dialog.ShowModal() == wx.ID_OK:
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   597
            name, id, nodetype, description = dialog.GetValues()
59
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   598
            profile, filepath = dialog.GetProfile()
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   599
            NMT = dialog.GetNMTManagement()
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   600
            options = dialog.GetOptions()
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   601
            result = self.Manager.CreateNewNode(name, id, nodetype, description, profile, filepath, NMT, options)
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   602
            if type(result) == IntType:
59
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   603
                new_editingpanel = EditingPanel(self, self.Manager)
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   604
                new_editingpanel.SetIndex(result)
59
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   605
                self.FileOpened.AddPage(new_editingpanel, "")
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   606
                self.FileOpened.SetSelection(self.FileOpened.GetPageCount() - 1)
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   607
                self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUITEMS8, False)
59
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   608
                if "DS302" in options:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   609
                    self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUITEMS8, True)
59
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   610
                self.RefreshBufferState()
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   611
                self.RefreshProfileMenu()
3a553c789116 Some bugs reported by Francis Dupin corrected.
lbessard
parents: 44
diff changeset
   612
                self.RefreshMainMenu()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   613
            else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   614
                message = wx.MessageDialog(self, result, "ERROR", wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   615
                message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   616
                message.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   617
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   618
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   619
    def OnOpenMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   620
        filepath = self.Manager.GetCurrentFilePath()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   621
        if filepath != "":
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   622
            directory = os.path.dirname(filepath)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   623
        else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   624
            directory = os.getcwd()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   625
        dialog = wx.FileDialog(self, "Choose a file", directory, "",  "OD files (*.od)|*.od|All files|*.*", wx.OPEN|wx.CHANGE_DIR)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   626
        if dialog.ShowModal() == wx.ID_OK:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   627
            filepath = dialog.GetPath()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   628
            if os.path.isfile(filepath):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   629
                result = self.Manager.OpenFileInCurrent(filepath)
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   630
                if type(result) == IntType:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   631
                    new_editingpanel = EditingPanel(self, self.Manager)
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   632
                    new_editingpanel.SetIndex(result)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   633
                    self.FileOpened.AddPage(new_editingpanel, "")
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   634
                    self.FileOpened.SetSelection(self.FileOpened.GetPageCount() - 1)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   635
                    if self.Manager.CurrentDS302Defined(): 
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   636
                        self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUITEMS8, True)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   637
                    else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   638
                        self.EditMenu.Enable(ID_OBJDICTEDITEDITMENUITEMS8, False)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   639
                    self.RefreshEditMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   640
                    self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   641
                    self.RefreshProfileMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   642
                    self.RefreshMainMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   643
                else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   644
                    message = wx.MessageDialog(self, e.args[0], "Error", wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   645
                    message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   646
                    message.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   647
        dialog.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   648
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   649
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   650
    def OnSaveMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   651
        self.Save()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   652
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   653
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   654
    def OnSaveAsMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   655
        self.SaveAs()
30
a5dd050b28cb Some bugs found corrected
lbessard
parents: 0
diff changeset
   656
        event.Skip()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   657
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   658
    def Save(self):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   659
        result = self.Manager.SaveCurrentInFile()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   660
        if not result:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   661
            self.SaveAs()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   662
        elif type(result) != StringType:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   663
            self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   664
        else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   665
            message = wx.MessageDialog(self, result, "Error", wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   666
            message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   667
            message.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   668
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   669
    def SaveAs(self):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   670
        filepath = self.Manager.GetCurrentFilePath()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   671
        if filepath != "":
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   672
            directory, filename = os.path.split(filepath)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   673
        else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   674
            directory, filename = os.getcwd(), "%s.od"%self.Manager.GetCurrentNodeInfos()[0]
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   675
        dialog = wx.FileDialog(self, "Choose a file", directory, filename,  "OD files (*.od)|*.od|All files|*.*", wx.SAVE|wx.OVERWRITE_PROMPT|wx.CHANGE_DIR)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   676
        if dialog.ShowModal() == wx.ID_OK:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   677
            filepath = dialog.GetPath()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   678
            if os.path.isdir(os.path.dirname(filepath)):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   679
                result = self.Manager.SaveCurrentInFile(filepath)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   680
                if type(result) != StringType:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   681
                    self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   682
                else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   683
                    message = wx.MessageDialog(self, result, "Error", wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   684
                    message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   685
                    message.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   686
            else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   687
                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
   688
                message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   689
                message.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   690
        dialog.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   691
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   692
    def OnCloseMenu(self, event):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   693
        answer = wx.ID_YES
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   694
        result = self.Manager.CloseCurrent()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   695
        if not result:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   696
            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
   697
            answer = dialog.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   698
            dialog.Destroy()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   699
            if answer == wx.ID_YES:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   700
                self.OnSaveMenu(event)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   701
                if self.Manager.CurrentIsSaved():
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   702
                    self.Manager.CloseCurrent()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   703
            elif answer == wx.ID_NO:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   704
                self.Manager.CloseCurrent(True)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   705
        if self.FileOpened.GetPageCount() > self.Manager.GetBufferNumber():
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   706
            current = self.FileOpened.GetSelection()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   707
            self.FileOpened.DeletePage(current)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   708
            if self.FileOpened.GetPageCount() > 0:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   709
                self.FileOpened.SetSelection(min(current, self.FileOpened.GetPageCount() - 1))
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   710
            self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   711
            self.RefreshMainMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   712
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   713
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   714
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   715
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   716
#                         Import and Export Functions
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   717
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   718
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   719
    def OnImportEDSMenu(self, event):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   720
        dialog = wx.FileDialog(self, "Choose a file", os.getcwd(), "",  "EDS files (*.eds)|*.eds|All files|*.*", wx.OPEN|wx.CHANGE_DIR)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   721
        if dialog.ShowModal() == wx.ID_OK:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   722
            filepath = dialog.GetPath()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   723
            if os.path.isfile(filepath):
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   724
                result = self.Manager.ImportCurrentFromEDSFile(filepath)
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   725
                if type(result) == IntType:
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   726
                    new_editingpanel = EditingPanel(self, self.Manager)
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   727
                    new_editingpanel.SetIndex(result)
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   728
                    self.FileOpened.AddPage(new_editingpanel, "")
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   729
                    self.FileOpened.SetSelection(self.FileOpened.GetPageCount() - 1)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   730
                    self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   731
                    self.RefreshCurrentIndexList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   732
                    self.RefreshProfileMenu()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   733
                    self.RefreshMainMenu()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   734
                    message = wx.MessageDialog(self, "Import successful", "Information", wx.OK|wx.ICON_INFORMATION)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   735
                    message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   736
                    message.Destroy()
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   737
                else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   738
                    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
   739
                    message.ShowModal()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   740
                    message.Destroy()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   741
            else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   742
                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
   743
                message.ShowModal()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   744
                message.Destroy()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   745
        dialog.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   746
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   747
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   748
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   749
    def OnExportEDSMenu(self, event):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   750
        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)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   751
        if dialog.ShowModal() == wx.ID_OK:
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   752
            filepath = dialog.GetPath()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   753
            if os.path.isdir(os.path.dirname(filepath)):
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   754
                path, extend = os.path.splitext(filepath)
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   755
                if extend in ("", "."):
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   756
                    filepath = path + ".eds"
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   757
                result = self.Manager.ExportCurrentToEDSFile(filepath)
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   758
                if not result:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   759
                    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
   760
                    message.ShowModal()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   761
                    message.Destroy()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   762
                else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   763
                    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
   764
                    message.ShowModal()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   765
                    message.Destroy()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   766
            else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   767
                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
   768
                message.ShowModal()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   769
                message.Destroy()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   770
        dialog.Destroy()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   771
        event.Skip()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   772
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   773
    def OnExportCMenu(self, event):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   774
        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)
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   775
        if dialog.ShowModal() == wx.ID_OK:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   776
            filepath = dialog.GetPath()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   777
            if os.path.isdir(os.path.dirname(filepath)):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   778
                path, extend = os.path.splitext(filepath)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   779
                if extend in ("", "."):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   780
                    filepath = path + ".c"
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   781
                result = self.Manager.ExportCurrentToCFile(filepath)
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   782
                if not result:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   783
                    message = wx.MessageDialog(self, "Export successful", "Information", wx.OK|wx.ICON_INFORMATION)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   784
                    message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   785
                    message.Destroy()
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   786
                else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   787
                    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
   788
                    message.ShowModal()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   789
                    message.Destroy()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   790
            else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   791
                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
   792
                message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   793
                message.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   794
        dialog.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   795
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   796
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   797
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   798
#                          Editing Profiles functions
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   799
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   800
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   801
    def OnCommunicationMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   802
        dictionary,current = self.Manager.GetCurrentCommunicationLists()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   803
        self.EditProfile("Edit DS-301 Profile", dictionary, current)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   804
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   805
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   806
    def OnOtherCommunicationMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   807
        dictionary,current = self.Manager.GetCurrentDS302Lists()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   808
        self.EditProfile("Edit DS-301 Profile", dictionary, current)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   809
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   810
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   811
    def OnEditProfileMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   812
        title = "Edit %s Profile"%self.Manager.GetCurrentProfileName()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   813
        dictionary,current = self.Manager.GetCurrentProfileLists()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   814
        self.EditProfile(title, dictionary, current)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   815
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   816
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   817
    def EditProfile(self, title, dictionary, current):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   818
        dialog = CommunicationDialog(self)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   819
        dialog.SetTitle(title)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   820
        dialog.SetIndexDictionary(dictionary)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   821
        dialog.SetCurrentList(current)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   822
        dialog.RefreshLists()
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   823
        if dialog.ShowModal() == wx.ID_OK:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   824
            new_profile = dialog.GetCurrentList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   825
            addinglist = []
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   826
            removinglist = []
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   827
            for index in new_profile:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   828
                if index not in current:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   829
                    addinglist.append(index)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   830
            for index in current:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   831
                if index not in new_profile:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   832
                    removinglist.append(index)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   833
            self.Manager.ManageEntriesOfCurrent(addinglist, removinglist)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   834
            self.Manager.BufferCurrentNode()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   835
            self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   836
            self.RefreshCurrentIndexList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   837
        dialog.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   838
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   839
    def GetProfileCallBack(self, text):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   840
        def ProfileCallBack(event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   841
            self.Manager.AddSpecificEntryToCurrent(text)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   842
            self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   843
            self.RefreshCurrentIndexList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   844
            event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   845
        return ProfileCallBack
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   846
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   847
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   848
#                         Edit Node informations function
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   849
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   850
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   851
    def OnNodeInfosMenu(self, event):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   852
        dialog = NodeInfosDialog(self)
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   853
        name, id, type, description = self.Manager.GetCurrentNodeInfos()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   854
        dialog.SetValues(name, id, type, description)
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   855
        if dialog.ShowModal() == wx.ID_OK:
182
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   856
            name, id, type, description = dialog.GetValues()
988f2b302aa6 Adding support for importing and exporting EDS files
lbessard
parents: 176
diff changeset
   857
            self.Manager.SetCurrentNodeInfos(name, id, type, description)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   858
            self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   859
            self.RefreshProfileMenu()
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   860
            selected = self.FileOpened.GetSelection()
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   861
            if selected >= 0:
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   862
                window = self.FileOpened.GetPage(selected)
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   863
                window.RefreshTable()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   864
        event.Skip()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   865
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   866
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   867
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   868
#                           Add User Types and Variables
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   869
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   870
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   871
    def AddMapVariable(self):
39
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   872
        index = self.Manager.GetCurrentNextMapIndex()
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   873
        if index:
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   874
            dialog = MapVariableDialog(self)
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   875
            dialog.SetIndex(index)
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   876
            if dialog.ShowModal() == wx.ID_OK:
39
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   877
                index, name, struct, number = dialog.GetValues()
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   878
                result = self.Manager.AddMapVariableToCurrent(index, name, struct, number)
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   879
                if type(result) != StringType:
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   880
                    self.RefreshBufferState()
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   881
                    self.RefreshCurrentIndexList()
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   882
                else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   883
                    message = wx.MessageDialog(self, result, "Error", wx.OK|wx.ICON_ERROR)
39
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   884
                    message.ShowModal()
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   885
                    message.Destroy()
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   886
            dialog.Destroy()
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   887
        else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   888
            message = wx.MessageDialog(self, result, "No map variable index left!", wx.OK|wx.ICON_ERROR)
39
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   889
            message.ShowModal()
3e94ee906bc6 Add incremented index in Add Map Variable
lbessard
parents: 37
diff changeset
   890
            message.Destroy()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   891
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   892
    def AddUserType(self):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   893
        dialog = UserTypeDialog(self)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   894
        dialog.SetTypeList(self.Manager.GetCustomisableTypes())
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   895
        if dialog.ShowModal() == wx.ID_OK:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   896
            type, min, max, length = dialog.GetValues()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   897
            result = self.Manager.AddUserTypeToCurrent(type, min, max, length)
205
dac0f9b4e3f8 Adding program for network management
lbessard
parents: 182
diff changeset
   898
            if not result:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   899
                self.RefreshBufferState()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   900
                self.RefreshCurrentIndexList()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   901
            else:
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   902
                message = wx.MessageDialog(self, result, "Error", wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   903
                message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   904
                message.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   905
        dialog.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   906
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   907
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   908
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   909
#                               Exception Handler
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   910
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   911
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   912
Max_Traceback_List_Size = 20
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   913
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   914
def Display_Exception_Dialog(e_type,e_value,e_tb):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   915
    trcbck_lst = []
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   916
    for i,line in enumerate(traceback.extract_tb(e_tb)):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   917
        trcbck = " " + str(i+1) + ". "
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   918
        if line[0].find(os.getcwd()) == -1:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   919
            trcbck += "file : " + str(line[0]) + ",   "
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   920
        else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   921
            trcbck += "file : " + str(line[0][len(os.getcwd()):]) + ",   "
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   922
        trcbck += "line : " + str(line[1]) + ",   " + "function : " + str(line[2])
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   923
        trcbck_lst.append(trcbck)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   924
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   925
    # Allow clicking....
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   926
    cap = wx.Window_GetCapture()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   927
    if cap:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   928
        cap.ReleaseMouse()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   929
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   930
    dlg = wx.SingleChoiceDialog(None, 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   931
        """
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   932
An error happens.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   933
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   934
Click on OK for saving an error report.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   935
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   936
Please contact LOLITech at:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   937
+33 (0)3 29 52 95 67
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   938
bugs_objdictedit@lolitech.fr
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   939
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   940
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   941
Error:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   942
""" +
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   943
        str(e_type) + " : " + str(e_value), 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   944
        "Error",
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   945
        trcbck_lst)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   946
    try:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   947
        res = (dlg.ShowModal() == wx.ID_OK)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   948
    finally:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   949
        dlg.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   950
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   951
    return res
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   952
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   953
def Display_Error_Dialog(e_value):
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   954
    message = wx.MessageDialog(None, str(e_value), "Error", wx.OK|wx.ICON_ERROR)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   955
    message.ShowModal()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   956
    message.Destroy()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   957
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   958
def get_last_traceback(tb):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   959
    while tb.tb_next:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   960
        tb = tb.tb_next
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   961
    return tb
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   962
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   963
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   964
def format_namespace(d, indent='    '):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   965
    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
   966
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   967
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   968
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
   969
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
   970
def AddExceptHook(path, app_version='[No version]'):#, ignored_exceptions=[]):
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   971
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   972
    def handle_exception(e_type, e_value, e_traceback):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   973
        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
   974
        last_tb = get_last_traceback(e_traceback)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   975
        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
   976
        if str(e_value).startswith("!!!"):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   977
            Display_Error_Dialog(e_value)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   978
        elif ex not in ignored_exceptions:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   979
            ignored_exceptions.append(ex)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   980
            result = Display_Exception_Dialog(e_type,e_value,e_traceback)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   981
            if result:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   982
                info = {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   983
                    'app-title' : wx.GetApp().GetAppName(), # app_title
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   984
                    'app-version' : app_version,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   985
                    'wx-version' : wx.VERSION_STRING,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   986
                    'wx-platform' : wx.Platform,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   987
                    'python-version' : platform.python_version(), #sys.version.split()[0],
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   988
                    'platform' : platform.platform(),
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   989
                    'e-type' : e_type,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   990
                    'e-value' : e_value,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   991
                    'date' : time.ctime(),
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   992
                    'cwd' : os.getcwd(),
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   993
                    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   994
                if e_traceback:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   995
                    info['traceback'] = ''.join(traceback.format_tb(e_traceback)) + '%s: %s' % (e_type, e_value)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   996
                    last_tb = get_last_traceback(e_traceback)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   997
                    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
   998
                    info['locals'] = format_namespace(exception_locals)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   999
                    if 'self' in exception_locals:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1000
                        info['self'] = format_namespace(exception_locals['self'].__dict__)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1001
                
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1002
                output = open(path+os.sep+"bug_report_"+info['date'].replace(':','-').replace(' ','_')+".txt",'w')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1003
                lst = info.keys()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1004
                lst.sort()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1005
                for a in lst:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1006
                    output.write(a+":\n"+str(info[a])+"\n\n")
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1007
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1008
    #sys.excepthook = lambda *args: wx.CallAfter(handle_exception, *args)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1009
    sys.excepthook = handle_exception
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1010
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1011
if __name__ == '__main__':
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
  1012
    app = wx.PySimpleApp()
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
  1013
    wx.InitAllImageHandlers()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1014
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1015
    # Install a exception handle for bug reports
254
f2b0acb54e65 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 245
diff changeset
  1016
    AddExceptHook(os.getcwd(),__version__)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1017
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1018
    frame = objdictedit(None)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1019
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1020
    frame.Show()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1021
    app.MainLoop()