Beremiz.py
author laurent
Fri, 08 Jun 2012 12:39:37 +0200
changeset 762 aaacc83aa86b
parent 761 7788545f4137
child 765 ef221ba41dec
permissions -rwxr-xr-x
Modifying canfestival plugin to following the new Beremiz confnode paradigm
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
     1
#!/usr/bin/env python
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
     2
# -*- coding: utf-8 -*-
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
     3
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
     4
#This file is part of Beremiz, a Integrated Development Environment for
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
     5
#programming IEC 61131-3 automates supporting plcopen standard and CanFestival. 
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
     6
#
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
     7
#Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
     8
#
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
     9
#See COPYING file for copyrights details.
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    10
#
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    11
#This library is free software; you can redistribute it and/or
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    12
#modify it under the terms of the GNU General Public
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    13
#License as published by the Free Software Foundation; either
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    14
#version 2.1 of the License, or (at your option) any later version.
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    15
#
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    16
#This library is distributed in the hope that it will be useful,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    17
#but WITHOUT ANY WARRANTY; without even the implied warranty of
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    18
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    19
#General Public License for more details.
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    20
#
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    21
#You should have received a copy of the GNU General Public
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    22
#License along with this library; if not, write to the Free Software
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    23
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    24
588
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    25
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    26
updateinfo_url = None
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    27
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    28
import os, sys, getopt, wx
650
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
    29
import __builtin__
588
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    30
from wx.lib.agw.advancedsplash import AdvancedSplash
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    31
import tempfile
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    32
import shutil
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    33
import random
446
1edde533db19 Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents: 439
diff changeset
    34
import time
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
    35
from types import ListType
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    36
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    37
CWD = os.path.split(os.path.realpath(__file__))[0]
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    38
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    39
def Bpath(*args):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    40
    return os.path.join(CWD,*args)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    41
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    42
if __name__ == '__main__':
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    43
    def usage():
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    44
        print "\nUsage of Beremiz.py :"
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    45
        print "\n   %s [Projectpath] [Buildpath]\n"%sys.argv[0]
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    46
    
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    47
    try:
736
944e58c00ca5 Fixed argument parsing error
Edouard Tisserant
parents: 735
diff changeset
    48
        opts, args = getopt.getopt(sys.argv[1:], "hu:e:", ["help", "updatecheck=", "extend="])
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    49
    except getopt.GetoptError:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    50
        # print help information and exit:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    51
        usage()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    52
        sys.exit(2)
731
4fc681ed0c61 refecored library extension machanism
Edouard Tisserant
parents: 730
diff changeset
    53
4fc681ed0c61 refecored library extension machanism
Edouard Tisserant
parents: 730
diff changeset
    54
    extensions=[]
4fc681ed0c61 refecored library extension machanism
Edouard Tisserant
parents: 730
diff changeset
    55
        
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    56
    for o, a in opts:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    57
        if o in ("-h", "--help"):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    58
            usage()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    59
            sys.exit()
588
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    60
        if o in ("-u", "--updatecheck"):
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    61
            updateinfo_url = a
731
4fc681ed0c61 refecored library extension machanism
Edouard Tisserant
parents: 730
diff changeset
    62
        if o in ("-e", "--extend"):
4fc681ed0c61 refecored library extension machanism
Edouard Tisserant
parents: 730
diff changeset
    63
            extensions.append(a)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    64
    
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    65
    if len(args) > 2:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    66
        usage()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    67
        sys.exit()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    68
    elif len(args) == 1:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    69
        projectOpen = args[0]
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    70
        buildpath = None
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    71
    elif len(args) == 2:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    72
        projectOpen = args[0]
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    73
        buildpath = args[1]
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    74
    else:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    75
        projectOpen = None
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    76
        buildpath = None
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    77
    
571
427bf9130d12 Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents: 569
diff changeset
    78
    if os.path.exists("BEREMIZ_DEBUG"):
650
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
    79
        __builtin__.__dict__["BMZ_DBG"] = True
571
427bf9130d12 Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents: 569
diff changeset
    80
    else :
650
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
    81
        __builtin__.__dict__["BMZ_DBG"] = False
571
427bf9130d12 Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents: 569
diff changeset
    82
427bf9130d12 Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents: 569
diff changeset
    83
    app = wx.PySimpleApp(redirect=BMZ_DBG)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    84
    app.SetAppName('beremiz')
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    85
    wx.InitAllImageHandlers()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    86
    
588
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    87
    # popup splash
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    88
    bmp = wx.Image(Bpath("images","splash.png")).ConvertToBitmap()
588
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    89
    #splash=AdvancedSplash(None, bitmap=bmp, style=wx.SPLASH_CENTRE_ON_SCREEN, timeout=4000)
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    90
    splash=AdvancedSplash(None, bitmap=bmp)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    91
    wx.Yield()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
    92
588
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    93
    if updateinfo_url is not None:
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    94
        updateinfo = "Fetching %s" % updateinfo_url
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    95
        # warn for possible updates
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    96
        def updateinfoproc():
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    97
            global updateinfo
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    98
            try :
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
    99
                import urllib2
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
   100
                updateinfo = urllib2.urlopen(updateinfo_url,None).read()
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
   101
            except :
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
   102
                updateinfo = "update info unavailable." 
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
   103
                
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
   104
        from threading import Thread
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
   105
        splash.SetText(text=updateinfo)
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
   106
        wx.Yield()
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
   107
        updateinfoThread = Thread(target=updateinfoproc)
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
   108
        updateinfoThread.start()
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
   109
        updateinfoThread.join(2)
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
   110
        splash.SetText(text=updateinfo)
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
   111
        wx.Yield()
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
   112
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   113
# Import module for internationalization
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   114
import gettext
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   115
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   116
# Get folder containing translation files
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   117
localedir = os.path.join(CWD,"locale")
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   118
# Get the default language
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   119
langid = wx.LANGUAGE_DEFAULT
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   120
# Define translation domain (name of translation files)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   121
domain = "Beremiz"
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   122
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   123
# Define locale for wx
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   124
loc = __builtin__.__dict__.get('loc', None)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   125
if loc is None:
589
22e83880cdd9 Adding support for disable language translation when default language not available in locale
laurent
parents: 588
diff changeset
   126
    test_loc = wx.Locale(langid)
22e83880cdd9 Adding support for disable language translation when default language not available in locale
laurent
parents: 588
diff changeset
   127
    test_loc.AddCatalogLookupPathPrefix(localedir)
22e83880cdd9 Adding support for disable language translation when default language not available in locale
laurent
parents: 588
diff changeset
   128
    if test_loc.AddCatalog(domain):
22e83880cdd9 Adding support for disable language translation when default language not available in locale
laurent
parents: 588
diff changeset
   129
        loc = wx.Locale(langid)
22e83880cdd9 Adding support for disable language translation when default language not available in locale
laurent
parents: 588
diff changeset
   130
    else:
22e83880cdd9 Adding support for disable language translation when default language not available in locale
laurent
parents: 588
diff changeset
   131
        loc = wx.Locale(wx.LANGUAGE_ENGLISH)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   132
    __builtin__.__dict__['loc'] = loc
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   133
# Define location for searching translation files
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   134
loc.AddCatalogLookupPathPrefix(localedir)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   135
# Define locale domain
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   136
loc.AddCatalog(domain)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   137
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   138
def unicode_translation(message):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   139
    return wx.GetTranslation(message).encode("utf-8")
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   140
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   141
if __name__ == '__main__':
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   142
    __builtin__.__dict__['_'] = wx.GetTranslation#unicode_translation
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   143
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   144
base_folder = os.path.split(sys.path[0])[0]
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   145
sys.path.append(base_folder)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   146
sys.path.append(os.path.join(base_folder, "plcopeneditor"))
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   147
735
d9f4ecee761d Fixed extension loading too late causing features to be ignored
Edouard Tisserant
parents: 734
diff changeset
   148
if __name__ == '__main__':
d9f4ecee761d Fixed extension loading too late causing features to be ignored
Edouard Tisserant
parents: 734
diff changeset
   149
    # Load extensions
d9f4ecee761d Fixed extension loading too late causing features to be ignored
Edouard Tisserant
parents: 734
diff changeset
   150
    for extfilename in extensions:
d9f4ecee761d Fixed extension loading too late causing features to be ignored
Edouard Tisserant
parents: 734
diff changeset
   151
        sys.path.append(os.path.split(os.path.realpath(extfilename))[0])
737
7b421e080636 fixed typos
Edouard Tisserant
parents: 736
diff changeset
   152
        execfile(extfilename, locals())
735
d9f4ecee761d Fixed extension loading too late causing features to be ignored
Edouard Tisserant
parents: 734
diff changeset
   153
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   154
import wx.lib.buttons, wx.lib.statbmp
724
e0630d262ac3 refactoring
Edouard Tisserant
parents: 722
diff changeset
   155
from util.TextCtrlAutoComplete import TextCtrlAutoComplete
e0630d262ac3 refactoring
Edouard Tisserant
parents: 722
diff changeset
   156
import cPickle
e0630d262ac3 refactoring
Edouard Tisserant
parents: 722
diff changeset
   157
from util.BrowseValuesLibraryDialog import BrowseValuesLibraryDialog
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   158
import types, time, re, platform, time, traceback, commands
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   159
from ProjectController import ProjectController, MATIEC_ERROR_MODEL, ITEM_CONFNODE
730
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   160
from util.MiniTextControler import MiniTextControler
726
ae63ccc29444 refactoring
Edouard Tisserant
parents: 725
diff changeset
   161
from util.ProcessLogger import ProcessLogger
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   162
727
3edd2f19bce2 refactoring
Edouard Tisserant
parents: 726
diff changeset
   163
from docutil import OpenHtmlFrame
731
4fc681ed0c61 refecored library extension machanism
Edouard Tisserant
parents: 730
diff changeset
   164
from PLCOpenEditor import IDEFrame, AppendMenu, TITLE, EDITORTOOLBAR, FILEMENU, EDITMENU, DISPLAYMENU, PROJECTTREE, POUINSTANCEVARIABLESPANEL, LIBRARYTREE, SCALING, PAGETITLES 
715
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   165
from PLCOpenEditor import EditorPanel, Viewer, TextViewer, GraphicViewer, ResourceEditor, ConfigurationEditor, DataTypeEditor
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   166
from PLCControler import LOCATION_CONFNODE, LOCATION_MODULE, LOCATION_GROUP, LOCATION_VAR_INPUT, LOCATION_VAR_OUTPUT, LOCATION_VAR_MEMORY, ITEM_PROJECT, ITEM_RESOURCE
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   167
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   168
MAX_RECENT_PROJECTS = 10
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   169
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   170
class GenStaticBitmap(wx.lib.statbmp.GenStaticBitmap):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   171
    """ Customized GenStaticBitmap, fix transparency redraw bug on wx2.8/win32, 
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   172
    and accept image name as __init__ parameter, fail silently if file do not exist"""
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   173
    def __init__(self, parent, ID, bitmapname,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   174
                 pos = wx.DefaultPosition, size = wx.DefaultSize,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   175
                 style = 0,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   176
                 name = "genstatbmp"):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   177
        
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   178
        bitmappath = Bpath( "images", bitmapname)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   179
        if os.path.isfile(bitmappath):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   180
            bitmap = wx.Bitmap(bitmappath)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   181
        else:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   182
            bitmap = None
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   183
        wx.lib.statbmp.GenStaticBitmap.__init__(self, parent, ID, bitmap,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   184
                 pos, size,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   185
                 style,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   186
                 name)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   187
        
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   188
    def OnPaint(self, event):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   189
        dc = wx.PaintDC(self)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   190
        colour = self.GetParent().GetBackgroundColour()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   191
        dc.SetPen(wx.Pen(colour))
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   192
        dc.SetBrush(wx.Brush(colour ))
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   193
        dc.DrawRectangle(0, 0, *dc.GetSizeTuple())
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   194
        if self._bitmap:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   195
            dc.DrawBitmap(self._bitmap, 0, 0, True)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   196
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   197
                        
705
a5977f64d4d9 More gentle use of app.Yield in ProcessLogger
Edouard Tisserant
parents: 704
diff changeset
   198
from threading import Lock,Timer,currentThread
a5977f64d4d9 More gentle use of app.Yield in ProcessLogger
Edouard Tisserant
parents: 704
diff changeset
   199
MainThread = currentThread().ident
686
e4e1da75d411 More robust Logger, now resist to flooding.
Edouard Tisserant
parents: 683
diff changeset
   200
REFRESH_PERIOD = 0.1
e4e1da75d411 More robust Logger, now resist to flooding.
Edouard Tisserant
parents: 683
diff changeset
   201
from time import time as gettime
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   202
class LogPseudoFile:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   203
    """ Base class for file like objects to facilitate StdOut for the Shell."""
451
73b3913b6d9c Fixed automatic console rising on w32
edouard
parents: 446
diff changeset
   204
    def __init__(self, output, risecall):
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   205
        self.red_white = wx.TextAttr("RED", "WHITE")
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   206
        self.red_yellow = wx.TextAttr("RED", "YELLOW")
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   207
        self.black_white = wx.TextAttr("BLACK", "WHITE")
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   208
        self.default_style = None
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   209
        self.output = output
451
73b3913b6d9c Fixed automatic console rising on w32
edouard
parents: 446
diff changeset
   210
        self.risecall = risecall
446
1edde533db19 Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents: 439
diff changeset
   211
        # to prevent rapid fire on rising log panel
1edde533db19 Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents: 439
diff changeset
   212
        self.rising_timer = 0
686
e4e1da75d411 More robust Logger, now resist to flooding.
Edouard Tisserant
parents: 683
diff changeset
   213
        self.lock = Lock()
705
a5977f64d4d9 More gentle use of app.Yield in ProcessLogger
Edouard Tisserant
parents: 704
diff changeset
   214
        self.YieldLock = Lock()
686
e4e1da75d411 More robust Logger, now resist to flooding.
Edouard Tisserant
parents: 683
diff changeset
   215
        self.RefreshLock = Lock()
e4e1da75d411 More robust Logger, now resist to flooding.
Edouard Tisserant
parents: 683
diff changeset
   216
        self.stack = []
e4e1da75d411 More robust Logger, now resist to flooding.
Edouard Tisserant
parents: 683
diff changeset
   217
        self.LastRefreshTime = gettime()
688
6324b40d82a5 Even more robust logger, up to the really last line that comes after the rush
Edouard Tisserant
parents: 687
diff changeset
   218
        self.LastRefreshTimer = None
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   219
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   220
    def write(self, s, style = None):
686
e4e1da75d411 More robust Logger, now resist to flooding.
Edouard Tisserant
parents: 683
diff changeset
   221
        if self.lock.acquire():
e4e1da75d411 More robust Logger, now resist to flooding.
Edouard Tisserant
parents: 683
diff changeset
   222
            self.stack.append((s,style))
e4e1da75d411 More robust Logger, now resist to flooding.
Edouard Tisserant
parents: 683
diff changeset
   223
            self.lock.release()
e4e1da75d411 More robust Logger, now resist to flooding.
Edouard Tisserant
parents: 683
diff changeset
   224
            current_time = gettime()
688
6324b40d82a5 Even more robust logger, up to the really last line that comes after the rush
Edouard Tisserant
parents: 687
diff changeset
   225
            if self.LastRefreshTimer:
6324b40d82a5 Even more robust logger, up to the really last line that comes after the rush
Edouard Tisserant
parents: 687
diff changeset
   226
                self.LastRefreshTimer.cancel()
6324b40d82a5 Even more robust logger, up to the really last line that comes after the rush
Edouard Tisserant
parents: 687
diff changeset
   227
                self.LastRefreshTimer=None
686
e4e1da75d411 More robust Logger, now resist to flooding.
Edouard Tisserant
parents: 683
diff changeset
   228
            if current_time - self.LastRefreshTime > REFRESH_PERIOD and self.RefreshLock.acquire(False):
705
a5977f64d4d9 More gentle use of app.Yield in ProcessLogger
Edouard Tisserant
parents: 704
diff changeset
   229
                self._should_write()
688
6324b40d82a5 Even more robust logger, up to the really last line that comes after the rush
Edouard Tisserant
parents: 687
diff changeset
   230
            else:
705
a5977f64d4d9 More gentle use of app.Yield in ProcessLogger
Edouard Tisserant
parents: 704
diff changeset
   231
                self.LastRefreshTimer = Timer(REFRESH_PERIOD, self._should_write)
688
6324b40d82a5 Even more robust logger, up to the really last line that comes after the rush
Edouard Tisserant
parents: 687
diff changeset
   232
                self.LastRefreshTimer.start()
686
e4e1da75d411 More robust Logger, now resist to flooding.
Edouard Tisserant
parents: 683
diff changeset
   233
705
a5977f64d4d9 More gentle use of app.Yield in ProcessLogger
Edouard Tisserant
parents: 704
diff changeset
   234
    def _should_write(self):
a5977f64d4d9 More gentle use of app.Yield in ProcessLogger
Edouard Tisserant
parents: 704
diff changeset
   235
        wx.CallAfter(self._write)
a5977f64d4d9 More gentle use of app.Yield in ProcessLogger
Edouard Tisserant
parents: 704
diff changeset
   236
        if MainThread == currentThread().ident:
a5977f64d4d9 More gentle use of app.Yield in ProcessLogger
Edouard Tisserant
parents: 704
diff changeset
   237
            app = wx.GetApp()
a5977f64d4d9 More gentle use of app.Yield in ProcessLogger
Edouard Tisserant
parents: 704
diff changeset
   238
            if app is not None:
a5977f64d4d9 More gentle use of app.Yield in ProcessLogger
Edouard Tisserant
parents: 704
diff changeset
   239
                if self.YieldLock.acquire(0):
a5977f64d4d9 More gentle use of app.Yield in ProcessLogger
Edouard Tisserant
parents: 704
diff changeset
   240
                    app.Yield()
a5977f64d4d9 More gentle use of app.Yield in ProcessLogger
Edouard Tisserant
parents: 704
diff changeset
   241
                    self.YieldLock.release()
a5977f64d4d9 More gentle use of app.Yield in ProcessLogger
Edouard Tisserant
parents: 704
diff changeset
   242
686
e4e1da75d411 More robust Logger, now resist to flooding.
Edouard Tisserant
parents: 683
diff changeset
   243
    def _write(self):
701
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   244
        if self.output :
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   245
            self.output.Freeze(); 
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   246
            self.lock.acquire()
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   247
            for s, style in self.stack:
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   248
                if style is None : style=self.black_white
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   249
                if self.default_style != style: 
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   250
                    self.output.SetDefaultStyle(style)
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   251
                    self.default_style = style
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   252
                self.output.AppendText(s)
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   253
                self.output.ScrollLines(s.count('\n')+1)
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   254
            self.stack = []
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   255
            self.lock.release()
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   256
            self.output.ShowPosition(self.output.GetLastPosition())
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   257
            self.output.Thaw()
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   258
            self.LastRefreshTime = gettime()
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   259
            try:
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   260
                self.RefreshLock.release()
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   261
            except:
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   262
                pass
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   263
            newtime = time.time()
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   264
            if newtime - self.rising_timer > 1:
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   265
                self.risecall()
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
   266
            self.rising_timer = newtime
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   267
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   268
    def write_warning(self, s):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   269
        self.write(s,self.red_white)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   270
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   271
    def write_error(self, s):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   272
        self.write(s,self.red_yellow)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   273
569
37af7286dd65 LPC program transfer more verbose, test code added in __main__ of LPCBootProto
Edouqrd Tisserant <edouard.tisserant@gmail.com>
parents: 550
diff changeset
   274
    def writeyield(self, s):
37af7286dd65 LPC program transfer more verbose, test code added in __main__ of LPCBootProto
Edouqrd Tisserant <edouard.tisserant@gmail.com>
parents: 550
diff changeset
   275
        self.write(s)
37af7286dd65 LPC program transfer more verbose, test code added in __main__ of LPCBootProto
Edouqrd Tisserant <edouard.tisserant@gmail.com>
parents: 550
diff changeset
   276
        wx.GetApp().Yield()
37af7286dd65 LPC program transfer more verbose, test code added in __main__ of LPCBootProto
Edouqrd Tisserant <edouard.tisserant@gmail.com>
parents: 550
diff changeset
   277
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   278
    def flush(self):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   279
        self.output.SetValue("")
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   280
    
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   281
    def isatty(self):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   282
        return false
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   283
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   284
[ID_BEREMIZ, ID_BEREMIZMAINSPLITTER, 
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   285
 ID_BEREMIZPLCCONFIG, ID_BEREMIZLOGCONSOLE, 
623
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   286
 ID_BEREMIZINSPECTOR] = [wx.NewId() for _init_ctrls in range(5)]
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   287
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   288
[ID_FILEMENURECENTPROJECTS,
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   289
] = [wx.NewId() for _init_ctrls in range(1)]
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   290
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   291
CONFNODEMENU_POSITION = 3
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   292
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   293
class Beremiz(IDEFrame):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   294
	
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   295
    def _init_coll_MenuBar_Menus(self, parent):
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   296
        IDEFrame._init_coll_MenuBar_Menus(self, parent)
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   297
        
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   298
        parent.Insert(pos=CONFNODEMENU_POSITION, 
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   299
                      menu=self.ConfNodeMenu, title=_(u'&ConfNode'))
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   300
    
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   301
    def _init_utils(self):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   302
        self.ConfNodeMenu = wx.Menu(title='')
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   303
        self.RecentProjectsMenu = wx.Menu(title='')
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   304
        
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   305
        IDEFrame._init_utils(self)
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   306
        
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   307
    def _init_coll_FileMenu_Items(self, parent):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   308
        AppendMenu(parent, help='', id=wx.ID_NEW,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   309
              kind=wx.ITEM_NORMAL, text=_(u'New\tCTRL+N'))
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   310
        AppendMenu(parent, help='', id=wx.ID_OPEN,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   311
              kind=wx.ITEM_NORMAL, text=_(u'Open\tCTRL+O'))
702
01f5e6356859 Added a few shortcuts in menus
Edouard Tisserant
parents: 701
diff changeset
   312
        parent.AppendMenu(ID_FILEMENURECENTPROJECTS, _("&Recent Projects"), self.RecentProjectsMenu)
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   313
        parent.AppendSeparator()
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   314
        AppendMenu(parent, help='', id=wx.ID_SAVE,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   315
              kind=wx.ITEM_NORMAL, text=_(u'Save\tCTRL+S'))
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   316
        AppendMenu(parent, help='', id=wx.ID_SAVEAS,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   317
              kind=wx.ITEM_NORMAL, text=_(u'Save as\tCTRL+SHIFT+S'))
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   318
        AppendMenu(parent, help='', id=wx.ID_CLOSE,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   319
              kind=wx.ITEM_NORMAL, text=_(u'Close Tab\tCTRL+W'))
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   320
        AppendMenu(parent, help='', id=wx.ID_CLOSE_ALL,
702
01f5e6356859 Added a few shortcuts in menus
Edouard Tisserant
parents: 701
diff changeset
   321
              kind=wx.ITEM_NORMAL, text=_(u'Close Project\tCTRL+SHIFT+W'))
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   322
        parent.AppendSeparator()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   323
        AppendMenu(parent, help='', id=wx.ID_PAGE_SETUP,
702
01f5e6356859 Added a few shortcuts in menus
Edouard Tisserant
parents: 701
diff changeset
   324
              kind=wx.ITEM_NORMAL, text=_(u'Page Setup\tCTRL+ALT+P'))
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   325
        AppendMenu(parent, help='', id=wx.ID_PREVIEW,
702
01f5e6356859 Added a few shortcuts in menus
Edouard Tisserant
parents: 701
diff changeset
   326
              kind=wx.ITEM_NORMAL, text=_(u'Preview\tCTRL+SHIFT+P'))
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   327
        AppendMenu(parent, help='', id=wx.ID_PRINT,
702
01f5e6356859 Added a few shortcuts in menus
Edouard Tisserant
parents: 701
diff changeset
   328
              kind=wx.ITEM_NORMAL, text=_(u'Print\tCTRL+P'))
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   329
        parent.AppendSeparator()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   330
        AppendMenu(parent, help='', id=wx.ID_EXIT,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   331
              kind=wx.ITEM_NORMAL, text=_(u'Quit\tCTRL+Q'))
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   332
        
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   333
        self.Bind(wx.EVT_MENU, self.OnNewProjectMenu, id=wx.ID_NEW)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   334
        self.Bind(wx.EVT_MENU, self.OnOpenProjectMenu, id=wx.ID_OPEN)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   335
        self.Bind(wx.EVT_MENU, self.OnSaveProjectMenu, id=wx.ID_SAVE)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   336
        self.Bind(wx.EVT_MENU, self.OnSaveProjectAsMenu, id=wx.ID_SAVEAS)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   337
        self.Bind(wx.EVT_MENU, self.OnCloseTabMenu, id=wx.ID_CLOSE)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   338
        self.Bind(wx.EVT_MENU, self.OnCloseProjectMenu, id=wx.ID_CLOSE_ALL)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   339
        self.Bind(wx.EVT_MENU, self.OnPageSetupMenu, id=wx.ID_PAGE_SETUP)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   340
        self.Bind(wx.EVT_MENU, self.OnPreviewMenu, id=wx.ID_PREVIEW)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   341
        self.Bind(wx.EVT_MENU, self.OnPrintMenu, id=wx.ID_PRINT)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   342
        self.Bind(wx.EVT_MENU, self.OnQuitMenu, id=wx.ID_EXIT)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   343
    
708
6ec28dc375cf Fixing menu toolbar icons on Windows
laurent
parents: 706
diff changeset
   344
        self.AddToMenuToolBar([(wx.ID_NEW, "new.png", _(u'New'), None),
6ec28dc375cf Fixing menu toolbar icons on Windows
laurent
parents: 706
diff changeset
   345
                               (wx.ID_OPEN, "open.png", _(u'Open'), None),
6ec28dc375cf Fixing menu toolbar icons on Windows
laurent
parents: 706
diff changeset
   346
                               (wx.ID_SAVE, "save.png", _(u'Save'), None),
6ec28dc375cf Fixing menu toolbar icons on Windows
laurent
parents: 706
diff changeset
   347
                               (wx.ID_SAVEAS, "saveas.png", _(u'Save As...'), None),
6ec28dc375cf Fixing menu toolbar icons on Windows
laurent
parents: 706
diff changeset
   348
                               (wx.ID_PRINT, "print.png", _(u'Print'), None)])
706
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   349
    
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   350
    def _init_coll_AddMenu_Items(self, parent):
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   351
        IDEFrame._init_coll_AddMenu_Items(self, parent, False)
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   352
        new_id = wx.NewId()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   353
        AppendMenu(parent, help='', id=new_id,
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   354
                  kind=wx.ITEM_NORMAL, text=_(u'&Resource'))
760
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   355
        self.Bind(wx.EVT_MENU, self.AddResourceMenu, id=new_id)
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   356
        for name, XSDClass, help in ProjectController.CTNChildrenTypes:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   357
            new_id = wx.NewId()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   358
            AppendMenu(parent, help='', id=new_id, 
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   359
                       kind=wx.ITEM_NORMAL, text=help)
760
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   360
            self.Bind(wx.EVT_MENU, self.GetAddConfNodeFunction(name), id=new_id)
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   361
    
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   362
    def _init_coll_HelpMenu_Items(self, parent):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   363
        parent.Append(help='', id=wx.ID_ABOUT,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   364
              kind=wx.ITEM_NORMAL, text=_(u'About'))
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   365
        self.Bind(wx.EVT_MENU, self.OnAboutMenu, id=wx.ID_ABOUT)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   366
    
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   367
    def _init_ctrls(self, prnt):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   368
        IDEFrame._init_ctrls(self, prnt)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   369
        
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   370
        self.Bind(wx.EVT_MENU, self.OnOpenWidgetInspector, id=ID_BEREMIZINSPECTOR)
623
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   371
        accels = [wx.AcceleratorEntry(wx.ACCEL_CTRL|wx.ACCEL_ALT, ord('I'), ID_BEREMIZINSPECTOR)]
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   372
        for method,shortcut in [("Stop",     wx.WXK_F4),
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   373
                                ("Run",      wx.WXK_F5),
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   374
                                ("Transfer", wx.WXK_F6),
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   375
                                ("Connect",  wx.WXK_F7),
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   376
                                ("Build",    wx.WXK_F11)]:
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   377
            def OnMethodGen(obj,meth):
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   378
                def OnMethod(evt):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   379
                    if obj.CTR is not None:
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   380
                       obj.CTR.CallMethod('_'+meth)
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   381
                    wx.CallAfter(self.RefreshStatusToolBar)
623
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   382
                return OnMethod
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   383
            newid = wx.NewId()
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   384
            self.Bind(wx.EVT_MENU, OnMethodGen(self,method), id=newid)
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   385
            accels += [wx.AcceleratorEntry(wx.ACCEL_NORMAL, shortcut,newid)]
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   386
        
8cdb533c3c7a A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents: 619
diff changeset
   387
        self.SetAcceleratorTable(wx.AcceleratorTable(accels))
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   388
        
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   389
        self.LogConsole = wx.TextCtrl(id=ID_BEREMIZLOGCONSOLE, value='',
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   390
                  name='LogConsole', parent=self.BottomNoteBook, pos=wx.Point(0, 0),
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   391
                  size=wx.Size(0, 0), style=wx.TE_MULTILINE|wx.TE_RICH2)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   392
        self.LogConsole.Bind(wx.EVT_LEFT_DCLICK, self.OnLogConsoleDClick)
715
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   393
        self.MainTabs["LogConsole"] = (self.LogConsole, _("Log Console"))
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   394
        self.BottomNoteBook.AddPage(*self.MainTabs["LogConsole"])
731
4fc681ed0c61 refecored library extension machanism
Edouard Tisserant
parents: 730
diff changeset
   395
        self.BottomNoteBook.Split(self.BottomNoteBook.GetPageIndex(self.LogConsole), wx.RIGHT)
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   396
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   397
        StatusToolBar = wx.ToolBar(self, -1, wx.DefaultPosition, wx.DefaultSize,
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   398
                wx.TB_FLAT | wx.TB_NODIVIDER | wx.NO_BORDER)
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   399
        StatusToolBar.SetToolBitmapSize(wx.Size(25, 25))
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   400
        StatusToolBar.Realize()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   401
        self.Panes["StatusToolBar"] = StatusToolBar
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   402
        self.AUIManager.AddPane(StatusToolBar, wx.aui.AuiPaneInfo().
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   403
                  Name("StatusToolBar").Caption(_("Status ToolBar")).
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   404
                  ToolbarPane().Top().Position(2).
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   405
                  LeftDockable(False).RightDockable(False))
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   406
        
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   407
        self.AUIManager.Update()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   408
        
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   409
    def __init__(self, parent, projectOpen=None, buildpath=None, ctr=None, debug=True):
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   410
        IDEFrame.__init__(self, parent, debug)
451
73b3913b6d9c Fixed automatic console rising on w32
edouard
parents: 446
diff changeset
   411
        self.Log = LogPseudoFile(self.LogConsole,self.RiseLogConsole)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   412
        
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   413
        self.local_runtime = None
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   414
        self.runtime_port = None
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   415
        self.local_runtime_tmpdir = None
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   416
        
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   417
        self.LastPanelSelected = None
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   418
        
650
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   419
        # Define Tree item icon list
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   420
        self.LocationImageList = wx.ImageList(16, 16)
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   421
        self.LocationImageDict = {}
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   422
        
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   423
        # Icons for location items
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   424
        for imgname, itemtype in [
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   425
            ("CONFIGURATION", LOCATION_CONFNODE),
650
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   426
            ("RESOURCE",      LOCATION_MODULE),
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   427
            ("PROGRAM",       LOCATION_GROUP),
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   428
            ("VAR_INPUT",     LOCATION_VAR_INPUT),
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   429
            ("VAR_OUTPUT",    LOCATION_VAR_OUTPUT),
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   430
            ("VAR_LOCAL",     LOCATION_VAR_MEMORY)]:
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   431
            self.LocationImageDict[itemtype]=self.LocationImageList.Add(wx.Bitmap(os.path.join(base_folder, "plcopeneditor", 'Images', '%s.png'%imgname)))
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   432
        
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   433
        # Icons for other items
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   434
        for imgname, itemtype in [
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   435
            ("Extension", ITEM_CONFNODE)]:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   436
            self.TreeImageDict[itemtype]=self.TreeImageList.Add(wx.Bitmap(os.path.join(CWD, 'images', '%s.png'%imgname)))
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   437
        
650
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   438
        # Add beremiz's icon in top left corner of the frame
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   439
        self.SetIcon(wx.Icon(Bpath( "images", "brz.ico"), wx.BITMAP_TYPE_ICO))
26236e691330 Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents: 636
diff changeset
   440
        
762
aaacc83aa86b Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents: 761
diff changeset
   441
        if ctr is None and projectOpen is None and self.Config.HasEntry("currenteditedproject"):
715
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   442
            projectOpen = str(self.Config.Read("currenteditedproject"))
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   443
            if projectOpen == "":
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   444
                projectOpen = None
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   445
        
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   446
        if projectOpen is not None and os.path.isdir(projectOpen):
725
31dade089db5 refactoring
Edouard Tisserant
parents: 724
diff changeset
   447
            self.CTR = ProjectController(self, self.Log)
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   448
            self.Controler = self.CTR
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   449
            result = self.CTR.LoadProject(projectOpen, buildpath)
679
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   450
            if not result:
716
180e4a7d945c Adding search field for finding function or function block in library tree
laurent
parents: 715
diff changeset
   451
                self.LibraryPanel.SetControler(self.Controler)
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   452
                self.ProjectTree.Enable(True)
730
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   453
                self.PouInstanceVariablesPanel.SetController(self.Controler)
679
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   454
                self.RefreshConfigRecentProjects(os.path.abspath(projectOpen))
730
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   455
                self._Refresh(PROJECTTREE, POUINSTANCEVARIABLESPANEL, LIBRARYTREE)
679
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   456
            else:
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   457
                self.ResetView()
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   458
                self.ShowErrorMessage(result)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   459
        else:
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   460
            self.CTR = ctr
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   461
            self.Controler = ctr
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   462
            if ctr is not None:
716
180e4a7d945c Adding search field for finding function or function block in library tree
laurent
parents: 715
diff changeset
   463
                self.LibraryPanel.SetControler(self.Controler)
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   464
                self.ProjectTree.Enable(True)
730
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   465
                self.PouInstanceVariablesPanel.SetController(self.Controler)
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   466
                self._Refresh(PROJECTTREE, POUINSTANCEVARIABLESPANEL, LIBRARYTREE)
490
898648a09e13 One issue on SetDataProducer not handled fixed
laurent
parents: 466
diff changeset
   467
        if self.EnableDebug:
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   468
            self.DebugVariablePanel.SetDataProducer(self.CTR)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   469
        
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   470
        self.Bind(wx.EVT_CLOSE, self.OnCloseFrame)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   471
        
706
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   472
        self._Refresh(TITLE, EDITORTOOLBAR, FILEMENU, EDITMENU, DISPLAYMENU)
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   473
        self.RefreshConfNodeMenu()
755
9f5dbd90e1e0 Removing code related to Topology panel
laurent
parents: 749
diff changeset
   474
        self.RefreshAll()
590
d3fb687dd0b9 Added build shortcut
Edouard Tisserant
parents: 589
diff changeset
   475
        self.LogConsole.SetFocus()
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   476
446
1edde533db19 Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents: 439
diff changeset
   477
    def RiseLogConsole(self):
513
feb2acb04070 Split BottomNoteBook to make LogConsole always visible
laurent
parents: 509
diff changeset
   478
        self.BottomNoteBook.SetSelection(self.BottomNoteBook.GetPageIndex(self.LogConsole))
446
1edde533db19 Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents: 439
diff changeset
   479
        
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   480
    def RefreshTitle(self):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   481
        name = _("Beremiz")
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   482
        if self.CTR is not None:
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   483
            projectname = self.CTR.GetProjectName()
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   484
            if self.CTR.ProjectTestModified():
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   485
                projectname = "~%s~" % projectname
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   486
            self.SetTitle("%s - %s" % (name, projectname))
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   487
        else:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   488
            self.SetTitle(name)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   489
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   490
    def StartLocalRuntime(self, taskbaricon = True):
713
37dc330e96a2 Reflected recent changes in ProcessLogger changes in StartLocalRuntime
Edouard Tisserant
parents: 710
diff changeset
   491
        if (self.local_runtime is None) or (self.local_runtime.exitcode is not None):
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   492
            # create temporary directory for runtime working directory
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   493
            self.local_runtime_tmpdir = tempfile.mkdtemp()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   494
            # choose an arbitrary random port for runtime
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   495
            self.runtime_port = int(random.random() * 1000) + 61131
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   496
            # launch local runtime
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   497
            self.local_runtime = ProcessLogger(self.Log,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   498
                                               "\"%s\" \"%s\" -p %s -i localhost %s %s"%(sys.executable,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   499
                                                           Bpath("Beremiz_service.py"),
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   500
                                                           self.runtime_port,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   501
                                                           {False : "-x 0", True :"-x 1"}[taskbaricon],
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   502
                                                           self.local_runtime_tmpdir),
704
5993b16fe2d0 More stable ProcessLogger.spin()
Edouard Tisserant
parents: 703
diff changeset
   503
                                                           no_gui=False,
5993b16fe2d0 More stable ProcessLogger.spin()
Edouard Tisserant
parents: 703
diff changeset
   504
                                                           timeout=500, keyword = "working")
5993b16fe2d0 More stable ProcessLogger.spin()
Edouard Tisserant
parents: 703
diff changeset
   505
            self.local_runtime.spin()
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   506
        return self.runtime_port
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   507
    
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   508
    def KillLocalRuntime(self):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   509
        if self.local_runtime is not None:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   510
            # shutdown local runtime
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   511
            self.local_runtime.kill(gently=False)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   512
            # clear temp dir
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   513
            shutil.rmtree(self.local_runtime_tmpdir)
539
6ff2c1d34640 Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents: 513
diff changeset
   514
            
6ff2c1d34640 Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents: 513
diff changeset
   515
            self.local_runtime = None
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   516
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   517
    def OnOpenWidgetInspector(self, evt):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   518
        # Activate the widget inspection tool
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   519
        from wx.lib.inspection import InspectionTool
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   520
        if not InspectionTool().initialized:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   521
            InspectionTool().Init()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   522
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   523
        # Find a widget to be selected in the tree.  Use either the
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   524
        # one under the cursor, if any, or this frame.
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   525
        wnd = wx.FindWindowAtPointer()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   526
        if not wnd:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   527
            wnd = self
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   528
        InspectionTool().Show(wnd, True)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   529
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   530
    def OnLogConsoleDClick(self, event):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   531
        wx.CallAfter(self.SearchLineForError)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   532
        event.Skip()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   533
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   534
    def SearchLineForError(self):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   535
        if self.CTR is not None:
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   536
            text = self.LogConsole.GetRange(0, self.LogConsole.GetInsertionPoint())
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   537
            line = self.LogConsole.GetLineText(len(text.splitlines()) - 1)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   538
            result = MATIEC_ERROR_MODEL.match(line)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   539
            if result is not None:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   540
                first_line, first_column, last_line, last_column, error = result.groups()
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   541
                infos = self.CTR.ShowError(self.Log,
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   542
                                                  (int(first_line), int(first_column)), 
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   543
                                                  (int(last_line), int(last_column)))
429
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   544
	
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   545
    ## Function displaying an Error dialog in PLCOpenEditor.
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   546
    #  @return False if closing cancelled.
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   547
    def CheckSaveBeforeClosing(self, title=_("Close Project")):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   548
        if self.CTR.ProjectTestModified():
429
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   549
            dialog = wx.MessageDialog(self,
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   550
                                      _("There are changes, do you want to save?"),
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   551
                                      title,
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   552
                                      wx.YES_NO|wx.CANCEL|wx.ICON_QUESTION)
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   553
            answer = dialog.ShowModal()
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   554
            dialog.Destroy()
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   555
            if answer == wx.ID_YES:
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   556
                self.CTR.SaveProject()
429
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   557
            elif answer == wx.ID_CANCEL:
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   558
                return False
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   559
        return True
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   560
    
715
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   561
    def GetTabInfos(self, tab):
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   562
        if (isinstance(tab, EditorPanel) and 
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   563
            not isinstance(tab, (Viewer, 
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   564
                                 TextViewer, 
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   565
                                 GraphicViewer, 
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   566
                                 ResourceEditor, 
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   567
                                 ConfigurationEditor, 
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   568
                                 DataTypeEditor))):
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   569
            return ("confnode", tab.Controler.CTNFullName())
716
180e4a7d945c Adding search field for finding function or function block in library tree
laurent
parents: 715
diff changeset
   570
        elif (isinstance(tab, TextViewer) and 
180e4a7d945c Adding search field for finding function or function block in library tree
laurent
parents: 715
diff changeset
   571
              (tab.Controler is None or isinstance(tab.Controler, MiniTextControler))):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   572
            return ("confnode", None, tab.GetInstancePath())
715
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   573
        else:
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   574
            return IDEFrame.GetTabInfos(self, tab)
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   575
    
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   576
    def LoadTab(self, notebook, page_infos):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   577
        if page_infos[0] == "confnode":
716
180e4a7d945c Adding search field for finding function or function block in library tree
laurent
parents: 715
diff changeset
   578
            if page_infos[1] is None:
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   579
                confnode = self.CTR
716
180e4a7d945c Adding search field for finding function or function block in library tree
laurent
parents: 715
diff changeset
   580
            else:
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   581
                confnode = self.CTR.GetChildByName(page_infos[1])
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   582
            return notebook.GetPageIndex(confnode._OpenView(*page_infos[2:]))
715
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   583
        else:
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   584
            return IDEFrame.LoadTab(self, notebook, page_infos)
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   585
    
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   586
    def OnCloseFrame(self, event):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   587
        if self.CTR is None or self.CheckSaveBeforeClosing(_("Close Application")):
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   588
            if self.CTR is not None:
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   589
                self.CTR.KillDebugThread()
429
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   590
            self.KillLocalRuntime()
598
6c919bc1551d Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 590
diff changeset
   591
            
715
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   592
            self.SaveLastState()
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   593
            
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   594
            if self.CTR is not None:
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   595
                project_path = os.path.realpath(self.CTR.GetProjectPath())
715
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   596
            else:
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   597
                project_path = ""
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   598
            self.Config.Write("currenteditedproject", project_path)    
135566ab0807 Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents: 714
diff changeset
   599
            self.Config.Flush()
598
6c919bc1551d Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 590
diff changeset
   600
            
429
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   601
            event.Skip()
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   602
        else:
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   603
            event.Veto()
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   604
    
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   605
    def RefreshFileMenu(self):
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   606
        self.RefreshRecentProjectsMenu()
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   607
        
706
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   608
        MenuToolBar = self.Panes["MenuToolBar"]
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   609
        if self.CTR is not None:
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   610
            selected = self.TabsOpened.GetSelection()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   611
            if selected >= 0:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   612
                graphic_viewer = isinstance(self.TabsOpened.GetPage(selected), Viewer)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   613
            else:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   614
                graphic_viewer = False
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   615
            if self.TabsOpened.GetPageCount() > 0:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   616
                self.FileMenu.Enable(wx.ID_CLOSE, True)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   617
                if graphic_viewer:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   618
                    self.FileMenu.Enable(wx.ID_PREVIEW, True)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   619
                    self.FileMenu.Enable(wx.ID_PRINT, True)
706
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   620
                    MenuToolBar.EnableTool(wx.ID_PRINT, True)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   621
                else:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   622
                    self.FileMenu.Enable(wx.ID_PREVIEW, False)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   623
                    self.FileMenu.Enable(wx.ID_PRINT, False)
706
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   624
                    MenuToolBar.EnableTool(wx.ID_PRINT, False)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   625
            else:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   626
                self.FileMenu.Enable(wx.ID_CLOSE, False)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   627
                self.FileMenu.Enable(wx.ID_PREVIEW, False)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   628
                self.FileMenu.Enable(wx.ID_PRINT, False)
706
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   629
                MenuToolBar.EnableTool(wx.ID_PRINT, False)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   630
            self.FileMenu.Enable(wx.ID_PAGE_SETUP, True)
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   631
            project_modified = self.CTR.ProjectTestModified()
706
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   632
            self.FileMenu.Enable(wx.ID_SAVE, project_modified)
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   633
            MenuToolBar.EnableTool(wx.ID_SAVE, project_modified)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   634
            self.FileMenu.Enable(wx.ID_SAVEAS, True)
706
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   635
            MenuToolBar.EnableTool(wx.ID_SAVEAS, True)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   636
            self.FileMenu.Enable(wx.ID_CLOSE_ALL, True)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   637
        else:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   638
            self.FileMenu.Enable(wx.ID_CLOSE, False)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   639
            self.FileMenu.Enable(wx.ID_PAGE_SETUP, False)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   640
            self.FileMenu.Enable(wx.ID_PREVIEW, False)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   641
            self.FileMenu.Enable(wx.ID_PRINT, False)
706
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   642
            MenuToolBar.EnableTool(wx.ID_PRINT, False)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   643
            self.FileMenu.Enable(wx.ID_SAVE, False)
706
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   644
            MenuToolBar.EnableTool(wx.ID_SAVE, False)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   645
            self.FileMenu.Enable(wx.ID_SAVEAS, False)
706
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   646
            MenuToolBar.EnableTool(wx.ID_SAVEAS, False)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   647
            self.FileMenu.Enable(wx.ID_CLOSE_ALL, False)
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   648
    
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   649
    def RefreshRecentProjectsMenu(self):
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   650
        recent_projects = cPickle.loads(str(self.Config.Read("RecentProjects", cPickle.dumps([]))))
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   651
        self.FileMenu.Enable(ID_FILEMENURECENTPROJECTS, len(recent_projects) > 0)
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   652
        for idx, projectpath in enumerate(recent_projects):
730
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   653
            text = u'%d: %s' % (idx + 1, projectpath)
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   654
            
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   655
            if idx < self.RecentProjectsMenu.GetMenuItemCount():
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   656
                item = self.RecentProjectsMenu.FindItemByPosition(idx)
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   657
                id = item.GetId()
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   658
                item.SetItemLabel(text)
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   659
                self.Disconnect(id, id, wx.EVT_BUTTON._getEvtType())
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   660
            else:
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   661
                id = wx.NewId()
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   662
                AppendMenu(self.RecentProjectsMenu, help='', id=id, 
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   663
                           kind=wx.ITEM_NORMAL, text=text)
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   664
            self.Bind(wx.EVT_MENU, self.GenerateOpenRecentProjectFunction(projectpath), id=id)
730
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   665
        
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   666
    def GenerateOpenRecentProjectFunction(self, projectpath):
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   667
        def OpenRecentProject(event):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   668
            if self.CTR is not None and not self.CheckSaveBeforeClosing():
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   669
                return
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   670
            
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   671
            self.OpenProject(projectpath)
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   672
        return OpenRecentProject
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   673
    
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   674
    def GenerateMenuRecursive(self, items, menu):
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   675
        for kind, infos in items:
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   676
            if isinstance(kind, ListType):
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   677
                text, id = infos
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   678
                submenu = wx.Menu('')
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   679
                self.GenerateMenuRecursive(kind, submenu)
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   680
                menu.AppendMenu(id, text, submenu)
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   681
            elif kind == wx.ITEM_SEPARATOR:
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   682
                menu.AppendSeparator()
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   683
            else:
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   684
                text, id, help, callback = infos
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   685
                AppendMenu(menu, help='', id=id, kind=kind, text=text)
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   686
                if callback is not None:
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   687
                    self.Bind(wx.EVT_MENU, callback, id=id)
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   688
    
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   689
    def RefreshStatusToolBar(self):
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   690
        StatusToolBar = self.Panes["StatusToolBar"]
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   691
        StatusToolBar.ClearTools()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   692
        
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   693
        if self.CTR is not None:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   694
            
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   695
            for confnode_method in self.CTR.StatusMethods:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   696
                if "method" in confnode_method and confnode_method.get("shown",True):
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   697
                    id = wx.NewId()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   698
                    StatusToolBar.AddSimpleTool(id, 
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   699
                        wx.Bitmap(Bpath("images", "%s.png"%confnode_method.get("bitmap", "Unknown"))), 
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   700
                        confnode_method["tooltip"])
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   701
                    self.Bind(wx.EVT_MENU, self.GetMenuCallBackFunction(confnode_method["method"]), id=id)
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   702
            
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   703
            StatusToolBar.Realize()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   704
            self.AUIManager.GetPane("StatusToolBar").BestSize(StatusToolBar.GetBestSize()).Show()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   705
        else:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   706
            self.AUIManager.GetPane("StatusToolBar").Hide()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   707
        self.AUIManager.Update()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   708
    
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   709
    def RefreshConfNodeMenu(self):
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   710
        if self.CTR is not None:
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   711
            selected = self.TabsOpened.GetSelection()
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   712
            if selected >= 0:
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   713
                panel = self.TabsOpened.GetPage(selected)
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   714
            else:
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   715
                panel = None
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   716
            if panel != self.LastPanelSelected:
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   717
                for i in xrange(self.ConfNodeMenu.GetMenuItemCount()):
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   718
                    item = self.ConfNodeMenu.FindItemByPosition(0)
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   719
                    self.ConfNodeMenu.Delete(item.GetId())
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   720
                self.LastPanelSelected = panel
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   721
                if panel is not None:
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   722
                    items = panel.GetConfNodeMenuItems()
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   723
                else:
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   724
                    items = []
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   725
                self.MenuBar.EnableTop(CONFNODEMENU_POSITION, len(items) > 0)
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   726
                self.GenerateMenuRecursive(items, self.ConfNodeMenu)
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   727
            if panel is not None:
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   728
                panel.RefreshConfNodeMenu(self.ConfNodeMenu)
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   729
        else:
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   730
            self.MenuBar.EnableTop(CONFNODEMENU_POSITION, False)
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   731
        self.MenuBar.UpdateMenus()
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   732
    
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   733
    def RefreshAll(self):
755
9f5dbd90e1e0 Removing code related to Topology panel
laurent
parents: 749
diff changeset
   734
        self.RefreshStatusToolBar()
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   735
    
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   736
    def GetMenuCallBackFunction(self, method):
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   737
        """ Generate the callbackfunc for a given CTR method"""
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   738
        def OnMenu(event):
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   739
            # Disable button to prevent re-entrant call 
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   740
            event.GetEventObject().Disable()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   741
            # Call
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   742
            getattr(self.CTR, method)()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   743
            # Re-enable button 
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   744
            event.GetEventObject().Enable()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   745
            # Trigger refresh on Idle
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   746
            wx.CallAfter(self.RefreshStatusToolBar)
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   747
        return OnMenu
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   748
    
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   749
    def GetConfigEntry(self, entry_name, default):
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   750
        return cPickle.loads(str(self.Config.Read(entry_name, cPickle.dumps(default))))
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   751
    
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   752
    def ResetView(self):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   753
        IDEFrame.ResetView(self)
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   754
        self.ConfNodeInfos = {}
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   755
        if self.CTR is not None:
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   756
            self.CTR.CloseProject()
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   757
        self.CTR = None
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   758
        self.Log.flush()
490
898648a09e13 One issue on SetDataProducer not handled fixed
laurent
parents: 466
diff changeset
   759
        if self.EnableDebug:
898648a09e13 One issue on SetDataProducer not handled fixed
laurent
parents: 466
diff changeset
   760
            self.DebugVariablePanel.SetDataProducer(None)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   761
    
679
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   762
    def RefreshConfigRecentProjects(self, projectpath):
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   763
        recent_projects = cPickle.loads(str(self.Config.Read("RecentProjects", cPickle.dumps([]))))
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   764
        if projectpath in recent_projects:
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   765
            recent_projects.remove(projectpath)
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   766
        recent_projects.insert(0, projectpath)
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   767
        self.Config.Write("RecentProjects", cPickle.dumps(recent_projects[:MAX_RECENT_PROJECTS]))
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   768
        self.Config.Flush()
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   769
    
743
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 739
diff changeset
   770
    def ResetPerspective(self):
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 739
diff changeset
   771
        IDEFrame.ResetPerspective(self)
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 739
diff changeset
   772
        self.RefreshStatusToolBar()
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 739
diff changeset
   773
    
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 739
diff changeset
   774
    def RestoreLastLayout(self):
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 739
diff changeset
   775
        IDEFrame.RestoreLastLayout(self)
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 739
diff changeset
   776
        self.RefreshStatusToolBar()
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 739
diff changeset
   777
    
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   778
    def OnNewProjectMenu(self, event):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   779
        if self.CTR is not None and not self.CheckSaveBeforeClosing():
429
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   780
            return
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   781
        
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   782
        if not self.Config.HasEntry("lastopenedfolder"):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   783
            defaultpath = os.path.expanduser("~")
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   784
        else:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   785
            defaultpath = self.Config.Read("lastopenedfolder")
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   786
        
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   787
        dialog = wx.DirDialog(self , _("Choose a project"), defaultpath, wx.DD_NEW_DIR_BUTTON)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   788
        if dialog.ShowModal() == wx.ID_OK:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   789
            projectpath = dialog.GetPath()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   790
            self.Config.Write("lastopenedfolder", os.path.dirname(projectpath))
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   791
            self.Config.Flush()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   792
            self.ResetView()
725
31dade089db5 refactoring
Edouard Tisserant
parents: 724
diff changeset
   793
            ctr = ProjectController(self, self.Log)
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   794
            result = ctr.NewProject(projectpath)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   795
            if not result:
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   796
                self.CTR = ctr
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   797
                self.Controler = self.CTR
716
180e4a7d945c Adding search field for finding function or function block in library tree
laurent
parents: 715
diff changeset
   798
                self.LibraryPanel.SetControler(self.Controler)
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   799
                self.ProjectTree.Enable(True)
730
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   800
                self.PouInstanceVariablesPanel.SetController(self.Controler)
679
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   801
                self.RefreshConfigRecentProjects(projectpath)
490
898648a09e13 One issue on SetDataProducer not handled fixed
laurent
parents: 466
diff changeset
   802
                if self.EnableDebug:
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   803
                    self.DebugVariablePanel.SetDataProducer(self.CTR)
730
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   804
                self._Refresh(PROJECTTREE, POUINSTANCEVARIABLESPANEL, LIBRARYTREE)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   805
            else:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   806
                self.ResetView()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   807
                self.ShowErrorMessage(result)
755
9f5dbd90e1e0 Removing code related to Topology panel
laurent
parents: 749
diff changeset
   808
            self.RefreshAll()
706
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   809
            self._Refresh(TITLE, EDITORTOOLBAR, FILEMENU, EDITMENU)
679
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   810
        dialog.Destroy()
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   811
    
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   812
    def OnOpenProjectMenu(self, event):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   813
        if self.CTR is not None and not self.CheckSaveBeforeClosing():
429
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   814
            return
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   815
        
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   816
        if not self.Config.HasEntry("lastopenedfolder"):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   817
            defaultpath = os.path.expanduser("~")
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   818
        else:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   819
            defaultpath = self.Config.Read("lastopenedfolder")
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   820
        
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   821
        dialog = wx.DirDialog(self , _("Choose a project"), defaultpath, wx.DD_NEW_DIR_BUTTON)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   822
        if dialog.ShowModal() == wx.ID_OK:
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   823
            self.OpenProject(dialog.GetPath())
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   824
        dialog.Destroy()
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   825
    
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   826
    def OpenProject(self, projectpath):
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   827
        if os.path.isdir(projectpath):
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   828
            self.Config.Write("lastopenedfolder", os.path.dirname(projectpath))
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   829
            self.Config.Flush()
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   830
            self.ResetView()
725
31dade089db5 refactoring
Edouard Tisserant
parents: 724
diff changeset
   831
            self.CTR = ProjectController(self, self.Log)
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   832
            self.Controler = self.CTR
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   833
            result = self.CTR.LoadProject(projectpath)
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   834
            if not result:
716
180e4a7d945c Adding search field for finding function or function block in library tree
laurent
parents: 715
diff changeset
   835
                self.LibraryPanel.SetControler(self.Controler)
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   836
                self.ProjectTree.Enable(True)
730
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   837
                self.PouInstanceVariablesPanel.SetController(self.Controler)
679
d72f3a42f440 Fix recent projects list not updated when creating new project
laurent
parents: 678
diff changeset
   838
                self.RefreshConfigRecentProjects(projectpath)
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   839
                if self.EnableDebug:
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   840
                    self.DebugVariablePanel.SetDataProducer(self.CTR)
743
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 739
diff changeset
   841
                self.LoadProjectLayout()
730
4480b7da6bea refactoring
laurent
parents: 727
diff changeset
   842
                self._Refresh(PROJECTTREE, POUINSTANCEVARIABLESPANEL, LIBRARYTREE)
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   843
            else:
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   844
                self.ResetView()
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   845
                self.ShowErrorMessage(result)
755
9f5dbd90e1e0 Removing code related to Topology panel
laurent
parents: 749
diff changeset
   846
            self.RefreshAll()
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   847
        else:
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   848
            self.ShowErrorMessage(_("\"%s\" folder is not a valid Beremiz project\n") % projectpath)
706
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   849
        self._Refresh(TITLE, EDITORTOOLBAR, FILEMENU, EDITMENU)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   850
    
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   851
    def OnCloseProjectMenu(self, event):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   852
        if self.CTR is not None and not self.CheckSaveBeforeClosing():
429
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   853
            return
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   854
        
743
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 739
diff changeset
   855
        self.SaveProjectLayout()
429
1a5471e81a93 Adding support for asking for saving while trying to close a modified project in any case
laurent
parents: 428
diff changeset
   856
        self.ResetView()
706
64a9b509973b Adding ToolBar containing basic menu items
laurent
parents: 703
diff changeset
   857
        self._Refresh(TITLE, EDITORTOOLBAR, FILEMENU, EDITMENU)
755
9f5dbd90e1e0 Removing code related to Topology panel
laurent
parents: 749
diff changeset
   858
        self.RefreshAll()
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   859
    
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   860
    def OnSaveProjectMenu(self, event):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   861
        if self.CTR is not None:
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   862
            self.CTR.SaveProject()
636
35c59bfc54f2 Fixing refresh of notebook tab titles after project save
laurent
parents: 631
diff changeset
   863
            self._Refresh(TITLE, FILEMENU, EDITMENU, PAGETITLES)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   864
    
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   865
    def OnSaveProjectAsMenu(self, event):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   866
        if self.CTR is not None:
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   867
            self.CTR.SaveProjectAs()
636
35c59bfc54f2 Fixing refresh of notebook tab titles after project save
laurent
parents: 631
diff changeset
   868
            self._Refresh(TITLE, FILEMENU, EDITMENU, PAGETITLES)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   869
        event.Skip()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   870
    
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   871
    def OnQuitMenu(self, event):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   872
        self.Close()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   873
        
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   874
    def OnAboutMenu(self, event):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   875
        OpenHtmlFrame(self,_("About Beremiz"), Bpath("doc","about.html"), wx.Size(550, 500))
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   876
    
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   877
    def OnPouSelectedChanged(self, event):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   878
        wx.CallAfter(self.RefreshConfNodeMenu)
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   879
        IDEFrame.OnPouSelectedChanged(self, event)
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   880
    
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   881
    def OnPageClose(self, event):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   882
        wx.CallAfter(self.RefreshConfNodeMenu)
675
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   883
        IDEFrame.OnPageClose(self, event)
44b35c27e9ff Adding support for quickly open recent projects in file menu
laurent
parents: 666
diff changeset
   884
    
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   885
    def OnProjectTreeItemBeginEdit(self, event):
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   886
        selected = event.GetItem()
747
e7fca1f93de1 Fix bug when begin editing item in project tree
laurent
parents: 743
diff changeset
   887
        if self.ProjectTree.GetPyData(selected)["type"] == ITEM_CONFNODE:
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   888
            event.Veto()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   889
        else:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   890
            IDEFrame.OnProjectTreeItemBeginEdit(self, event)
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   891
    
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   892
    def OnProjectTreeRightUp(self, event):
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   893
        if wx.Platform == '__WXMSW__':
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   894
            item = event.GetItem()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   895
        else:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   896
            item, flags = self.ProjectTree.HitTest(wx.Point(event.GetX(), event.GetY()))
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   897
        item_infos = self.ProjectTree.GetPyData(item)
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   898
        
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   899
        if item_infos["type"] == ITEM_CONFNODE:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   900
            confnode_menu = wx.Menu(title='')
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   901
            
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   902
            confnode = item_infos["confnode"]
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   903
            if confnode is not None and len(confnode.CTNChildrenTypes) > 0:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   904
                for name, XSDClass, help in confnode.CTNChildrenTypes:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   905
                    new_id = wx.NewId()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   906
                    confnode_menu.Append(help=help, id=new_id, kind=wx.ITEM_NORMAL, text=name)
760
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   907
                    self.Bind(wx.EVT_MENU, self.GetAddConfNodeFunction(name, confnode), id=new_id)
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   908
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   909
            new_id = wx.NewId()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   910
            AppendMenu(confnode_menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Delete"))
755
9f5dbd90e1e0 Removing code related to Topology panel
laurent
parents: 749
diff changeset
   911
            self.Bind(wx.EVT_MENU, self.GetDeleteMenuFunction(confnode), id=new_id)
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   912
                
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   913
            self.PopupMenu(confnode_menu)
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   914
            confnode_menu.Destroy()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   915
            
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   916
            event.Skip()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   917
        else:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   918
            IDEFrame.OnProjectTreeRightUp(self, event)
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   919
    
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   920
    def OnProjectTreeItemActivated(self, event):
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   921
        selected = event.GetItem()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   922
        name = self.ProjectTree.GetItemText(selected)
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   923
        item_infos = self.ProjectTree.GetPyData(selected)
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   924
        if item_infos["type"] == ITEM_CONFNODE:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   925
            item_infos["confnode"]._OpenView()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   926
            event.Skip()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   927
        elif item_infos["type"] == ITEM_PROJECT:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   928
            self.CTR._OpenView()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   929
        else:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   930
            IDEFrame.OnProjectTreeItemActivated(self, event)
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   931
    
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   932
    def SelectProjectTreeItem(self, tagname):
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   933
        if self.ProjectTree is not None:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   934
            root = self.ProjectTree.GetRootItem()
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   935
            if root.IsOk():
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   936
                words = tagname.split("::")
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   937
                if len(words) == 1:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   938
                    if tagname == "Project":
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   939
                        self.SelectedItem = root
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   940
                        self.ProjectTree.SelectItem(root)
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   941
                        wx.CallAfter(self.ResetSelectedItem)
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   942
                    else:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   943
                        return self.RecursiveProjectTreeItemSelection(root, 
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   944
                              [(word, ITEM_CONFNODE) for word in tagname.split(".")])
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   945
                elif words[0] == "R":
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   946
                    return self.RecursiveProjectTreeItemSelection(root, [(words[2], ITEM_RESOURCE)])
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   947
                else:
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   948
                    IDEFrame.SelectProjectTreeItem(self, tagname)
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   949
            
760
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   950
    def GetAddConfNodeFunction(self, name, confnode=None):
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   951
        def AddConfNodeMenuFunction(event):
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   952
            wx.CallAfter(self.AddConfNode, name, confnode)
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   953
        return AddConfNodeMenuFunction
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   954
    
755
9f5dbd90e1e0 Removing code related to Topology panel
laurent
parents: 749
diff changeset
   955
    def GetDeleteMenuFunction(self, confnode):
9f5dbd90e1e0 Removing code related to Topology panel
laurent
parents: 749
diff changeset
   956
        def DeleteMenuFunction(event):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   957
            wx.CallAfter(self.DeleteConfNode, confnode)
755
9f5dbd90e1e0 Removing code related to Topology panel
laurent
parents: 749
diff changeset
   958
        return DeleteMenuFunction
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   959
    
760
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   960
    def AddResourceMenu(self, event):
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   961
        config_names = self.CTR.GetProjectConfigNames()
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   962
        if len(config_names) > 0:
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   963
            tagname = self.Controler.ProjectAddConfigurationResource(config_names[0])
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   964
            if tagname is not None:
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   965
                self._Refresh(TITLE, FILEMENU, EDITMENU, PROJECTTREE, POUINSTANCEVARIABLESPANEL)
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   966
                self.EditProjectElement(ITEM_RESOURCE, tagname)
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   967
        
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   968
    def AddConfNode(self, ConfNodeType, confnode=None):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   969
        if self.CTR.CheckProjectPathPerm():
760
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   970
            ConfNodeName = "%s-0" % ConfNodeType
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   971
            if confnode is not None:
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   972
                confnode.CTNAddChild(ConfNodeName, ConfNodeType)
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   973
            else:
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   974
                self.CTR.CTNAddChild(ConfNodeName, ConfNodeType)
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   975
            self._Refresh(TITLE, FILEMENU, PROJECTTREE)
d38560559afb Replacing dialog asking for a name when adding confnode to project by automatically generated name
laurent
parents: 755
diff changeset
   976
            
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   977
    def DeleteConfNode(self, confnode):
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   978
        if self.CTR.CheckProjectPathPerm():
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   979
            dialog = wx.MessageDialog(self, _("Really delete confnode ?"), _("Remove confnode"), wx.YES_NO|wx.NO_DEFAULT)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   980
            if dialog.ShowModal() == wx.ID_YES:
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   981
                confnode.CTNRemove()
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 716
diff changeset
   982
                del confnode
738
413946c04c87 refactoring
laurent
parents: 737
diff changeset
   983
                self._Refresh(TITLE, FILEMENU, PROJECTTREE)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   984
            dialog.Destroy()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   985
    
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   986
#-------------------------------------------------------------------------------
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   987
#                               Exception Handler
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   988
#-------------------------------------------------------------------------------
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   989
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   990
Max_Traceback_List_Size = 20
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   991
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   992
def Display_Exception_Dialog(e_type, e_value, e_tb, bug_report_path):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   993
    trcbck_lst = []
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   994
    for i,line in enumerate(traceback.extract_tb(e_tb)):
734
5c42cafaee15 Moved LPC sources to a separate project
Edouard Tisserant
parents: 731
diff changeset
   995
        trcbck = " " + str(i+1) + ". "
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
   996
        if line[0].find(os.getcwd()) == -1:
734
5c42cafaee15 Moved LPC sources to a separate project
Edouard Tisserant
parents: 731
diff changeset
   997
            trcbck += "file : " + str(line[0]) + ",   "
5c42cafaee15 Moved LPC sources to a separate project
Edouard Tisserant
parents: 731
diff changeset
   998
        else:
5c42cafaee15 Moved LPC sources to a separate project
Edouard Tisserant
parents: 731
diff changeset
   999
            trcbck += "file : " + str(line[0][len(os.getcwd()):]) + ",   "
5c42cafaee15 Moved LPC sources to a separate project
Edouard Tisserant
parents: 731
diff changeset
  1000
        trcbck += "line : " + str(line[1]) + ",   " + "function : " + str(line[2])
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1001
        trcbck_lst.append(trcbck)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1002
        
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1003
    # Allow clicking....
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1004
    cap = wx.Window_GetCapture()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1005
    if cap:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1006
        cap.ReleaseMouse()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1007
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1008
    dlg = wx.SingleChoiceDialog(None, 
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1009
        _("""
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1010
An unhandled exception (bug) occured. Bug report saved at :
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1011
(%s)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1012
434
092060fd8afb Replace \"lolitech\" contact by \"edouard\" contact
greg
parents: 429
diff changeset
  1013
Please be kind enough to send this file to:
734
5c42cafaee15 Moved LPC sources to a separate project
Edouard Tisserant
parents: 731
diff changeset
  1014
beremiz-devel@lists.sourceforge.net
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1015
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1016
You should now restart Beremiz.
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1017
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1018
Traceback:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1019
""") % bug_report_path +
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1020
        str(e_type) + " : " + str(e_value), 
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1021
        _("Error"),
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1022
        trcbck_lst)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1023
    try:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1024
        res = (dlg.ShowModal() == wx.ID_OK)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1025
    finally:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1026
        dlg.Destroy()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1027
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1028
    return res
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1029
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1030
def get_last_traceback(tb):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1031
    while tb.tb_next:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1032
        tb = tb.tb_next
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1033
    return tb
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1034
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1035
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1036
def format_namespace(d, indent='    '):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1037
    return '\n'.join(['%s%s: %s' % (indent, k, repr(v)[:10000]) for k, v in d.iteritems()])
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1038
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1039
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1040
ignored_exceptions = [] # a problem with a line in a module is only reported once per session
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1041
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1042
def AddExceptHook(path, app_version='[No version]'):#, ignored_exceptions=[]):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1043
    
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1044
    def handle_exception(e_type, e_value, e_traceback):
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1045
        traceback.print_exception(e_type, e_value, e_traceback) # this is very helpful when there's an exception in the rest of this func
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1046
        last_tb = get_last_traceback(e_traceback)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1047
        ex = (last_tb.tb_frame.f_code.co_filename, last_tb.tb_frame.f_lineno)
701
166db2cb630b Stripped dead code in bug report dialog.\nFixed error when log flooded while quitting
Edouard Tisserant
parents: 692
diff changeset
  1048
        if ex not in ignored_exceptions:
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1049
            date = time.ctime()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1050
            bug_report_path = path+os.sep+"bug_report_"+date.replace(':','-').replace(' ','_')+".txt"
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1051
            result = Display_Exception_Dialog(e_type,e_value,e_traceback,bug_report_path)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1052
            if result:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1053
                ignored_exceptions.append(ex)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1054
                info = {
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1055
                    'app-title' : wx.GetApp().GetAppName(), # app_title
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1056
                    'app-version' : app_version,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1057
                    'wx-version' : wx.VERSION_STRING,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1058
                    'wx-platform' : wx.Platform,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1059
                    'python-version' : platform.python_version(), #sys.version.split()[0],
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1060
                    'platform' : platform.platform(),
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1061
                    'e-type' : e_type,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1062
                    'e-value' : e_value,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1063
                    'date' : date,
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1064
                    'cwd' : os.getcwd(),
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1065
                    }
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1066
                if e_traceback:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1067
                    info['traceback'] = ''.join(traceback.format_tb(e_traceback)) + '%s: %s' % (e_type, e_value)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1068
                    last_tb = get_last_traceback(e_traceback)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1069
                    exception_locals = last_tb.tb_frame.f_locals # the locals at the level of the stack trace where the exception actually occurred
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1070
                    info['locals'] = format_namespace(exception_locals)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1071
                    if 'self' in exception_locals:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1072
                        info['self'] = format_namespace(exception_locals['self'].__dict__)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1073
                
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1074
                output = open(bug_report_path,'w')
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1075
                lst = info.keys()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1076
                lst.sort()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1077
                for a in lst:
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1078
                    output.write(a+":\n"+str(info[a])+"\n\n")
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1079
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1080
    #sys.excepthook = lambda *args: wx.CallAfter(handle_exception, *args)
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1081
    sys.excepthook = handle_exception
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1082
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1083
if __name__ == '__main__':
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1084
    # Install a exception handle for bug reports
588
aa5a08d20ba1 spring 2011 - 1.01 bugfix release
Edouard Tisserant
parents: 571
diff changeset
  1085
    AddExceptHook(os.getcwd(),updateinfo_url)
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1086
    
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1087
    frame = Beremiz(None, projectOpen, buildpath)
590
d3fb687dd0b9 Added build shortcut
Edouard Tisserant
parents: 589
diff changeset
  1088
    splash.Close()
428
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1089
    frame.Show()
ea09f33ce717 Update internationalization for new functionalities.
laurent
parents: 427
diff changeset
  1090
    app.MainLoop()