PLCOpenEditor.py
author laurent
Thu, 12 Jan 2012 17:04:22 +0100
changeset 624 efedc9d06a59
parent 618 6e48943e821e
child 625 b7062a7018ec
permissions -rw-r--r--
Fix bug in refreshing menu after tab selection changed
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     1
#!/usr/bin/env python
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     2
# -*- coding: utf-8 -*-
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     3
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     4
#This file is part of PLCOpenEditor, a library implementing an IEC 61131-3 editor
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     5
#based on the plcopen standard. 
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     6
#
58
39cd981ff242 Changing file headers
lbessard
parents: 56
diff changeset
     7
#Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     8
#
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     9
#See COPYING file for copyrights details.
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    10
#
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    11
#This library is free software; you can redistribute it and/or
5
f8652b073e84 GPL->LGPL
etisserant
parents: 4
diff changeset
    12
#modify it under the terms of the GNU General Public
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    13
#License as published by the Free Software Foundation; either
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    14
#version 2.1 of the License, or (at your option) any later version.
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    15
#
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    16
#This library is distributed in the hope that it will be useful,
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    17
#but WITHOUT ANY WARRANTY; without even the implied warranty of
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    18
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
58
39cd981ff242 Changing file headers
lbessard
parents: 56
diff changeset
    19
#General Public License for more details.
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    20
#
5
f8652b073e84 GPL->LGPL
etisserant
parents: 4
diff changeset
    21
#You should have received a copy of the GNU General Public
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    22
#License along with this library; if not, write to the Free Software
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    23
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    24
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    25
from datetime import datetime
120
add8e391e00c Adding support for wxAUI in wx 2.8
lbessard
parents: 118
diff changeset
    26
import wx, wx.grid
add8e391e00c Adding support for wxAUI in wx 2.8
lbessard
parents: 118
diff changeset
    27
add8e391e00c Adding support for wxAUI in wx 2.8
lbessard
parents: 118
diff changeset
    28
if wx.VERSION >= (2, 8, 0):
add8e391e00c Adding support for wxAUI in wx 2.8
lbessard
parents: 118
diff changeset
    29
    import wx.aui
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
    30
    USE_AUI = True
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
    31
else:
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
    32
    USE_AUI = False
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    33
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    34
import os, re, platform, sys, time, traceback, getopt
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    35
import cPickle
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    36
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    37
CWD = os.path.split(os.path.realpath(__file__))[0]
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    38
base_folder = os.path.split(CWD)[0]
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    39
sys.path.append(base_folder)
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    40
from docutils import *
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    41
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    42
from types import TupleType
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    43
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    44
__version__ = "$Revision: 1.130 $"
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    45
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    46
if __name__ == '__main__':
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    47
    # Usage message displayed when help request or when error detected in 
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    48
    # command line
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    49
    def usage():
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    50
        print "\nUsage of PLCOpenEditor.py :"
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    51
        print "\n   %s [Filepath]\n"%sys.argv[0]
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    52
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    53
    # Parse options given to PLCOpenEditor in command line
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    54
    try:
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    55
        opts, args = getopt.getopt(sys.argv[1:], "h", ["help"])
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    56
    except getopt.GetoptError:
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    57
        # print help information and exit:
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    58
        usage()
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    59
        sys.exit(2)
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    60
    
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    61
    # Extract if help has been requested
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    62
    for o, a in opts:
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    63
        if o in ("-h", "--help"):
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    64
            usage()
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    65
            sys.exit()
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    66
    
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    67
    # Extract the optional filename to open
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    68
    fileOpen = None
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    69
    if len(args) > 1:
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    70
        usage()
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    71
        sys.exit()
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    72
    elif len(args) == 1:
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    73
        fileOpen = args[0]
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    74
    
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    75
    # Create wxApp (Need to create App before internationalization because of
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    76
    # Windows) 
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    77
    app = wx.PySimpleApp()
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    78
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    79
# Import module for internationalization
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    80
import gettext
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    81
import __builtin__
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    82
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    83
# Get folder containing translation files
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    84
localedir = os.path.join(CWD,"locale")
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    85
# Get the default language
537
a31bf722aa82 Fix wire disappearing when wire tip and connector are not exactly at the same position fixed.
laurent
parents: 535
diff changeset
    86
langid = wx.LANGUAGE_DEFAULT
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    87
# Define translation domain (name of translation files)
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    88
domain = "PLCOpenEditor"
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    89
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    90
# Define locale for wx
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    91
loc = __builtin__.__dict__.get('loc', None)
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    92
if loc is None:
513
fb787f6cbe33 Adding support for disable language translation when default language not available in locale
laurent
parents: 512
diff changeset
    93
    test_loc = wx.Locale(langid)
fb787f6cbe33 Adding support for disable language translation when default language not available in locale
laurent
parents: 512
diff changeset
    94
    test_loc.AddCatalogLookupPathPrefix(localedir)
fb787f6cbe33 Adding support for disable language translation when default language not available in locale
laurent
parents: 512
diff changeset
    95
    if test_loc.AddCatalog(domain):
fb787f6cbe33 Adding support for disable language translation when default language not available in locale
laurent
parents: 512
diff changeset
    96
        loc = wx.Locale(langid)
fb787f6cbe33 Adding support for disable language translation when default language not available in locale
laurent
parents: 512
diff changeset
    97
    else:
fb787f6cbe33 Adding support for disable language translation when default language not available in locale
laurent
parents: 512
diff changeset
    98
        loc = wx.Locale(wx.LANGUAGE_ENGLISH)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
    99
    __builtin__.__dict__['loc'] = loc
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   100
# Define location for searching translation files
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   101
loc.AddCatalogLookupPathPrefix(localedir)
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   102
# Define locale domain
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   103
loc.AddCatalog(domain)
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   104
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   105
if __name__ == '__main__':
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   106
    __builtin__.__dict__['_'] = wx.GetTranslation
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   107
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   108
from SFCViewer import *
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   109
from LDViewer import *
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   110
from Viewer import *
27
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   111
from TextViewer import *
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
   112
from GraphicViewer import *
27
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   113
from RessourceEditor import *
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
   114
from DataTypeEditor import *
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   115
from PLCControler import *
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   116
from SearchResultPanel import SearchResultPanel
604
5b42b4401e6b Adding support for unifying grid table control elements
laurent
parents: 599
diff changeset
   117
from controls import CustomGrid, CustomTable
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   118
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   119
# Define PLCOpenEditor controls id
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   120
[ID_PLCOPENEDITOR, ID_PLCOPENEDITORLEFTNOTEBOOK, 
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   121
 ID_PLCOPENEDITORBOTTOMNOTEBOOK, ID_PLCOPENEDITORRIGHTNOTEBOOK, 
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   122
 ID_PLCOPENEDITORTYPESTREE, ID_PLCOPENEDITORINSTANCESTREE, 
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
   123
 ID_PLCOPENEDITORMAINSPLITTER, ID_PLCOPENEDITORSECONDSPLITTER, 
239
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   124
 ID_PLCOPENEDITORTHIRDSPLITTER, ID_PLCOPENEDITORLIBRARYPANEL, 
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   125
 ID_PLCOPENEDITORLIBRARYTREE, ID_PLCOPENEDITORLIBRARYCOMMENT, 
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   126
 ID_PLCOPENEDITORTABSOPENED, ID_PLCOPENEDITORTABSOPENED,
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
   127
 ID_PLCOPENEDITORTOOLBAR, ID_PLCOPENEDITORDEFAULTTOOLBAR, 
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
   128
 ID_PLCOPENEDITORSFCTOOLBAR, ID_PLCOPENEDITORFBDTOOLBAR, 
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
   129
 ID_PLCOPENEDITORLDTOOLBAR,
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   130
] = [wx.NewId() for _init_ctrls in range(19)]
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
   131
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   132
# Define PLCOpenEditor FileMenu extra items id
185
fdc8a59b02bd Adding icon to menus
lbessard
parents: 184
diff changeset
   133
[ID_PLCOPENEDITORFILEMENUGENERATE, 
fdc8a59b02bd Adding icon to menus
lbessard
parents: 184
diff changeset
   134
] = [wx.NewId() for _init_coll_FileMenu_Items in range(1)]
fdc8a59b02bd Adding icon to menus
lbessard
parents: 184
diff changeset
   135
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   136
# Define PLCOpenEditor EditMenu extra items id
350
f7958989e055 Adding support for Enable/Disable Undo/Redo
greg
parents: 347
diff changeset
   137
[ID_PLCOPENEDITOREDITMENUENABLEUNDOREDO, ID_PLCOPENEDITOREDITMENUADDDATATYPE, 
f7958989e055 Adding support for Enable/Disable Undo/Redo
greg
parents: 347
diff changeset
   138
 ID_PLCOPENEDITOREDITMENUADDFUNCTION, ID_PLCOPENEDITOREDITMENUADDFUNCTIONBLOCK, 
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   139
 ID_PLCOPENEDITOREDITMENUADDPROGRAM, ID_PLCOPENEDITOREDITMENUADDCONFIGURATION,
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   140
 ID_PLCOPENEDITOREDITMENUSEARCHINPROJECT, 
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   141
] = [wx.NewId() for _init_coll_EditMenu_Items in range(7)]
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   142
27
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   143
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   144
#-------------------------------------------------------------------------------
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   145
#                            ToolBars definitions
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   146
#-------------------------------------------------------------------------------
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   147
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   148
# Define PLCOpenEditor Toolbar items id
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
   149
[ID_PLCOPENEDITORTOOLBARSELECTION, ID_PLCOPENEDITORTOOLBARCOMMENT,
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
   150
 ID_PLCOPENEDITORTOOLBARVARIABLE, ID_PLCOPENEDITORTOOLBARBLOCK,
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
   151
 ID_PLCOPENEDITORTOOLBARCONNECTION, ID_PLCOPENEDITORTOOLBARWIRE,
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
   152
 ID_PLCOPENEDITORTOOLBARPOWERRAIL, ID_PLCOPENEDITORTOOLBARRUNG,
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
   153
 ID_PLCOPENEDITORTOOLBARCOIL, ID_PLCOPENEDITORTOOLBARCONTACT,
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
   154
 ID_PLCOPENEDITORTOOLBARBRANCH, ID_PLCOPENEDITORTOOLBARINITIALSTEP,
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
   155
 ID_PLCOPENEDITORTOOLBARSTEP, ID_PLCOPENEDITORTOOLBARTRANSITION,
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
   156
 ID_PLCOPENEDITORTOOLBARACTIONBLOCK, ID_PLCOPENEDITORTOOLBARDIVERGENCE,
575
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
   157
 ID_PLCOPENEDITORTOOLBARJUMP, ID_PLCOPENEDITORTOOLBARMOTION, 
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
   158
] = [wx.NewId() for _init_coll_DefaultToolBar_Items in range(18)]
27
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   159
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   160
# Define behaviour of each Toolbar item according to current POU body type 
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   161
# Informations meaning are in this order:
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   162
#  - Item is toggled
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   163
#  - PLCOpenEditor mode where item is displayed (could be more then one)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   164
#  - Item id
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   165
#  - Item callback function name
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   166
#  - Item icon filename
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   167
#  - Item tooltip text
27
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   168
ToolBarItems = {
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   169
    "FBD" : [(True, FREEDRAWING_MODE|DRIVENDRAWING_MODE,
575
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
   170
              ID_PLCOPENEDITORTOOLBARMOTION, "OnMotionTool",
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
   171
              "move.png", _("Move the view")),
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
   172
             (True, FREEDRAWING_MODE|DRIVENDRAWING_MODE,
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   173
              ID_PLCOPENEDITORTOOLBARCOMMENT, "OnCommentTool",
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   174
              "add_comment.png", _("Create a new comment")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   175
             (True, FREEDRAWING_MODE|DRIVENDRAWING_MODE,
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   176
              ID_PLCOPENEDITORTOOLBARVARIABLE, "OnVariableTool",
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   177
              "add_variable.png", _("Create a new variable")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   178
             (True, FREEDRAWING_MODE|DRIVENDRAWING_MODE,
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   179
              ID_PLCOPENEDITORTOOLBARBLOCK, "OnBlockTool",
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   180
              "add_block.png", _("Create a new block")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   181
             (True, FREEDRAWING_MODE|DRIVENDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   182
              ID_PLCOPENEDITORTOOLBARCONNECTION, "OnConnectionTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   183
              "add_connection.png", _("Create a new connection"))],
577
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
   184
    "LD"  : [(True, FREEDRAWING_MODE|DRIVENDRAWING_MODE,
575
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
   185
              ID_PLCOPENEDITORTOOLBARMOTION, "OnMotionTool",
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
   186
              "move.png", _("Move the view")),
577
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
   187
             (True, FREEDRAWING_MODE, 
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   188
              ID_PLCOPENEDITORTOOLBARCOMMENT, "OnCommentTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   189
              "add_comment.png", _("Create a new comment")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   190
             (True, FREEDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   191
              ID_PLCOPENEDITORTOOLBARPOWERRAIL, "OnPowerRailTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   192
              "add_powerrail.png", _("Create a new power rail")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   193
             (False, DRIVENDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   194
              ID_PLCOPENEDITORTOOLBARRUNG, "OnRungTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   195
              "add_rung.png", _("Create a new rung")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   196
             (True, FREEDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   197
              ID_PLCOPENEDITORTOOLBARCOIL, "OnCoilTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   198
              "add_coil.png", _("Create a new coil")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   199
             (False, FREEDRAWING_MODE|DRIVENDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   200
              ID_PLCOPENEDITORTOOLBARCONTACT, "OnContactTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   201
              "add_contact.png", _("Create a new contact")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   202
             (False, DRIVENDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   203
              ID_PLCOPENEDITORTOOLBARBRANCH, "OnBranchTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   204
              "add_branch.png", _("Create a new branch")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   205
             (True, FREEDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   206
              ID_PLCOPENEDITORTOOLBARVARIABLE, "OnVariableTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   207
              "add_variable.png", _("Create a new variable")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   208
             (False, FREEDRAWING_MODE|DRIVENDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   209
              ID_PLCOPENEDITORTOOLBARBLOCK, "OnBlockTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   210
              "add_block.png", _("Create a new block")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   211
             (True, FREEDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   212
              ID_PLCOPENEDITORTOOLBARCONNECTION, "OnConnectionTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   213
              "add_connection.png", _("Create a new connection"))],
575
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
   214
    "SFC" : [(True, FREEDRAWING_MODE|DRIVENDRAWING_MODE,
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
   215
              ID_PLCOPENEDITORTOOLBARMOTION, "OnMotionTool",
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
   216
              "move.png", _("Move the view")),
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
   217
             (True, FREEDRAWING_MODE|DRIVENDRAWING_MODE, 
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   218
              ID_PLCOPENEDITORTOOLBARCOMMENT, "OnCommentTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   219
              "add_comment.png", _("Create a new comment")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   220
             (True, FREEDRAWING_MODE|DRIVENDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   221
              ID_PLCOPENEDITORTOOLBARINITIALSTEP, "OnInitialStepTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   222
              "add_initial_step.png", _("Create a new initial step")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   223
             (False, FREEDRAWING_MODE|DRIVENDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   224
              ID_PLCOPENEDITORTOOLBARSTEP, "OnStepTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   225
              "add_step.png", _("Create a new step")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   226
             (True, FREEDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   227
              ID_PLCOPENEDITORTOOLBARTRANSITION, "OnTransitionTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   228
              "add_transition.png", _("Create a new transition")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   229
             (False, FREEDRAWING_MODE|DRIVENDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   230
              ID_PLCOPENEDITORTOOLBARACTIONBLOCK, "OnActionBlockTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   231
              "add_action.png", _("Create a new action block")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   232
             (False, FREEDRAWING_MODE|DRIVENDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   233
              ID_PLCOPENEDITORTOOLBARDIVERGENCE, "OnDivergenceTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   234
              "add_divergence.png", _("Create a new divergence")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   235
             (False, FREEDRAWING_MODE|DRIVENDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   236
              ID_PLCOPENEDITORTOOLBARJUMP, "OnJumpTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   237
              "add_jump.png", _("Create a new jump")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   238
             (True, FREEDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   239
              ID_PLCOPENEDITORTOOLBARVARIABLE, "OnVariableTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   240
              "add_variable.png", _("Create a new variable")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   241
             (True, FREEDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   242
              ID_PLCOPENEDITORTOOLBARBLOCK, "OnBlockTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   243
              "add_block.png", _("Create a new block")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   244
             (True, FREEDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   245
              ID_PLCOPENEDITORTOOLBARCONNECTION, "OnConnectionTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   246
              "add_connection.png", _("Create a new connection")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   247
             (True, FREEDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   248
              ID_PLCOPENEDITORTOOLBARPOWERRAIL, "OnPowerRailTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   249
              "add_powerrail.png", _("Create a new power rail")),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   250
             (True, FREEDRAWING_MODE, 
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   251
              ID_PLCOPENEDITORTOOLBARCONTACT, "OnContactTool", 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   252
              "add_contact.png", _("Create a new contact"))],
82
119b62c73085 PLCOpenEditor SplitterWindow names changed
lbessard
parents: 80
diff changeset
   253
    "ST"  : [],
119b62c73085 PLCOpenEditor SplitterWindow names changed
lbessard
parents: 80
diff changeset
   254
    "IL"  : []
27
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   255
}
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   256
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   257
#-------------------------------------------------------------------------------
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   258
#                               Helper Functions
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   259
#-------------------------------------------------------------------------------
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   260
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   261
# Compatibility function for wx versions < 2.6
114
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   262
def AppendMenu(parent, help, id, kind, text):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   263
    if wx.VERSION >= (2, 6, 0):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   264
        parent.Append(help=help, id=id, kind=kind, text=text)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   265
    else:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   266
        parent.Append(helpString=help, id=id, kind=kind, item=text)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   267
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   268
[TITLE, TOOLBAR, FILEMENU, EDITMENU, DISPLAYMENU, TYPESTREE, 
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
   269
 INSTANCESTREE, LIBRARYTREE, SCALING, PAGETITLES
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
   270
] = range(10)
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   271
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   272
def GetShortcutKeyCallbackFunction(viewer_function):
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   273
    def ShortcutKeyFunction(self, event):
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   274
        control = self.FindFocus()
599
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
   275
        if control is not None and control.GetName() in ["Viewer", "TextViewer"]:
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
   276
            getattr(control.Parent, viewer_function)()
587
98445f90f45d Fixing bug preventing copy/cut/paste using shortcuts on CFileEditor text editors
laurent
parents: 586
diff changeset
   277
        elif isinstance(control, wx.stc.StyledTextCtrl):
98445f90f45d Fixing bug preventing copy/cut/paste using shortcuts on CFileEditor text editors
laurent
parents: 586
diff changeset
   278
            getattr(control, viewer_function)()
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   279
        elif isinstance(control, wx.TextCtrl):
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   280
            control.ProcessEvent(event)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   281
    return ShortcutKeyFunction
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   282
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   283
def GetParentName(tree, item, parent_type):
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   284
    parent_item = tree.GetItemParent(item)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   285
    parent_item_type = tree.GetPyData(parent_item)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   286
    while parent_item_type != parent_type:
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   287
        parent_item = tree.GetItemParent(parent_item)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   288
        parent_item_type = tree.GetPyData(parent_item)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   289
    return tree.GetItemText(parent_item)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   290
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   291
def GetDeleteElementFunction(remove_function, parent_type=None, check_function=None):
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   292
    def DeleteElementFunction(self, selected):
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   293
        name = self.TypesTree.GetItemText(selected)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   294
        if check_function is None or not check_function(self.Controler, name):
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   295
            if parent_type is not None:
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   296
                parent_name = GetParentName(self.TypesTree, selected, parent_type)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   297
                remove_function(self.Controler, parent_name, name)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   298
            else:
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   299
                remove_function(self.Controler, name)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   300
        else:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   301
            self.ShowErrorMessage(_("\"%s\" is used by one or more POUs. It can't be removed!")%name)
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   302
    return DeleteElementFunction
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   303
401
d3f086b0da30 Bug with TabsImageList wrong image size definition fixed
laurent
parents: 397
diff changeset
   304
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   305
#-------------------------------------------------------------------------------
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   306
#                              IDEFrame Base Class
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   307
#-------------------------------------------------------------------------------
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   308
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   309
UNEDITABLE_NAMES_DICT = dict([(_(name), name) for name in UNEDITABLE_NAMES])
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   310
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   311
class IDEFrame(wx.Frame):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   312
    
384
ed27a676d5c9 Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents: 372
diff changeset
   313
    # Compatibility function for wx versions < 2.6
114
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   314
    if wx.VERSION < (2, 6, 0):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   315
        def Bind(self, event, function, id = None):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   316
            if id is not None:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   317
                event(self, id, function)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   318
            else:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   319
                event(self, function)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   320
    
185
fdc8a59b02bd Adding icon to menus
lbessard
parents: 184
diff changeset
   321
    def _init_coll_MenuBar_Menus(self, parent):
587
98445f90f45d Fixing bug preventing copy/cut/paste using shortcuts on CFileEditor text editors
laurent
parents: 586
diff changeset
   322
        parent.Append(menu=self.FileMenu, title=_(u'&File'))
98445f90f45d Fixing bug preventing copy/cut/paste using shortcuts on CFileEditor text editors
laurent
parents: 586
diff changeset
   323
        parent.Append(menu=self.EditMenu, title=_(u'&Edit'))
98445f90f45d Fixing bug preventing copy/cut/paste using shortcuts on CFileEditor text editors
laurent
parents: 586
diff changeset
   324
        parent.Append(menu=self.DisplayMenu, title=_(u'&Display'))
98445f90f45d Fixing bug preventing copy/cut/paste using shortcuts on CFileEditor text editors
laurent
parents: 586
diff changeset
   325
        parent.Append(menu=self.HelpMenu, title=_(u'&Help'))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   326
185
fdc8a59b02bd Adding icon to menus
lbessard
parents: 184
diff changeset
   327
    def _init_coll_FileMenu_Items(self, parent):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   328
        pass
185
fdc8a59b02bd Adding icon to menus
lbessard
parents: 184
diff changeset
   329
    
fdc8a59b02bd Adding icon to menus
lbessard
parents: 184
diff changeset
   330
    def _init_coll_EditMenu_Items(self, parent):
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   331
        AppendMenu(parent, help='', id=wx.ID_UNDO,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   332
              kind=wx.ITEM_NORMAL, text=_(u'Undo\tCTRL+Z'))
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   333
        AppendMenu(parent, help='', id=wx.ID_REDO,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   334
              kind=wx.ITEM_NORMAL, text=_(u'Redo\tCTRL+Y'))
559
984c51d1bf6b Fix PrintPreview behavior
laurent
parents: 555
diff changeset
   335
        #AppendMenu(parent, help='', id=ID_PLCOPENEDITOREDITMENUENABLEUNDOREDO,
984c51d1bf6b Fix PrintPreview behavior
laurent
parents: 555
diff changeset
   336
        #      kind=wx.ITEM_CHECK, text=_(u'Enable Undo/Redo'))
560
3757f0de0d07 Adding column for selecting task triggering in Resource Editor
laurent
parents: 559
diff changeset
   337
        enable_undo_redo = _(u'Enable Undo/Redo') # Keeping text in translations for possible menu reactivation
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   338
        parent.AppendSeparator()
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   339
        AppendMenu(parent, help='', id=wx.ID_CUT,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   340
              kind=wx.ITEM_NORMAL, text=_(u'Cut\tCTRL+X'))
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   341
        AppendMenu(parent, help='', id=wx.ID_COPY,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   342
              kind=wx.ITEM_NORMAL, text=_(u'Copy\tCTRL+C'))
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   343
        AppendMenu(parent, help='', id=wx.ID_PASTE,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   344
              kind=wx.ITEM_NORMAL, text=_(u'Paste\tCTRL+V'))
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   345
        parent.AppendSeparator()
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   346
        AppendMenu(parent, help='', id=ID_PLCOPENEDITOREDITMENUSEARCHINPROJECT,
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   347
              kind=wx.ITEM_NORMAL, text=_(u'Search in Project'))
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   348
        parent.AppendSeparator()
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   349
        addmenu = wx.Menu(title='')
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   350
        parent.AppendMenu(wx.ID_ADD, _("Add Element"), addmenu)
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   351
        AppendMenu(addmenu, help='', id=ID_PLCOPENEDITOREDITMENUADDDATATYPE,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   352
              kind=wx.ITEM_NORMAL, text=_(u'Data Type'))
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   353
        AppendMenu(addmenu, help='', id=ID_PLCOPENEDITOREDITMENUADDFUNCTION,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   354
              kind=wx.ITEM_NORMAL, text=_(u'Function'))
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   355
        AppendMenu(addmenu, help='', id=ID_PLCOPENEDITOREDITMENUADDFUNCTIONBLOCK,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   356
              kind=wx.ITEM_NORMAL, text=_(u'Function Block'))
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   357
        AppendMenu(addmenu, help='', id=ID_PLCOPENEDITOREDITMENUADDPROGRAM,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   358
              kind=wx.ITEM_NORMAL, text=_(u'Program'))
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   359
        AppendMenu(addmenu, help='', id=ID_PLCOPENEDITOREDITMENUADDCONFIGURATION,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   360
              kind=wx.ITEM_NORMAL, text=_(u'Configuration'))
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   361
        AppendMenu(parent, help='', id=wx.ID_SELECTALL,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   362
              kind=wx.ITEM_NORMAL, text=_(u'Select All\tCTRL+A'))
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   363
        AppendMenu(parent, help='', id=wx.ID_DELETE,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   364
              kind=wx.ITEM_NORMAL, text=_(u'Delete'))
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   365
        self.Bind(wx.EVT_MENU, self.OnUndoMenu, id=wx.ID_UNDO)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   366
        self.Bind(wx.EVT_MENU, self.OnRedoMenu, id=wx.ID_REDO)
562
0ce12552cf36 Fix bug on Windows after removing "Enable Undo/Redo" menu item
laurent
parents: 560
diff changeset
   367
        #self.Bind(wx.EVT_MENU, self.OnEnableUndoRedoMenu, id=ID_PLCOPENEDITOREDITMENUENABLEUNDOREDO)
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   368
        self.Bind(wx.EVT_MENU, self.OnCutMenu, id=wx.ID_CUT)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   369
        self.Bind(wx.EVT_MENU, self.OnCopyMenu, id=wx.ID_COPY)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   370
        self.Bind(wx.EVT_MENU, self.OnPasteMenu, id=wx.ID_PASTE)
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   371
        self.Bind(wx.EVT_MENU, self.OnSearchInProjectMenu, 
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   372
              id=ID_PLCOPENEDITOREDITMENUSEARCHINPROJECT)
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   373
        self.Bind(wx.EVT_MENU, self.OnAddDataTypeMenu,
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   374
              id=ID_PLCOPENEDITOREDITMENUADDDATATYPE)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   375
        self.Bind(wx.EVT_MENU, self.GenerateAddPouFunction("function"),
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   376
              id=ID_PLCOPENEDITOREDITMENUADDFUNCTION)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   377
        self.Bind(wx.EVT_MENU, self.GenerateAddPouFunction("functionBlock"),
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   378
              id=ID_PLCOPENEDITOREDITMENUADDFUNCTIONBLOCK)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   379
        self.Bind(wx.EVT_MENU, self.GenerateAddPouFunction("program"),
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   380
              id=ID_PLCOPENEDITOREDITMENUADDPROGRAM)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   381
        self.Bind(wx.EVT_MENU, self.OnAddConfigurationMenu,
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   382
              id=ID_PLCOPENEDITOREDITMENUADDCONFIGURATION)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   383
        self.Bind(wx.EVT_MENU, self.OnSelectAllMenu, id=wx.ID_SELECTALL)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   384
        self.Bind(wx.EVT_MENU, self.OnDeleteMenu, id=wx.ID_DELETE)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   385
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   386
    def _init_coll_DisplayMenu_Items(self, parent):
185
fdc8a59b02bd Adding icon to menus
lbessard
parents: 184
diff changeset
   387
        AppendMenu(parent, help='', id=wx.ID_REFRESH,
569
4ce166451816 Changed F5 shortcut to CTRL+R for refresh
Edouard Tisserant
parents: 563
diff changeset
   388
              kind=wx.ITEM_NORMAL, text=_(u'Refresh\tCTRL+R'))
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   389
        if self.EnableDebug:
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   390
            AppendMenu(parent, help='', id=wx.ID_CLEAR,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   391
                  kind=wx.ITEM_NORMAL, text=_(u'Clear Errors\tCTRL+K'))
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   392
        parent.AppendSeparator()
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   393
        zoommenu = wx.Menu(title='')
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   394
        parent.AppendMenu(wx.ID_ZOOM_FIT, _("Zoom"), zoommenu)
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   395
        for idx, value in enumerate(ZOOM_FACTORS):
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   396
            new_id = wx.NewId()
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   397
            AppendMenu(zoommenu, help='', id=new_id,
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   398
                  kind=wx.ITEM_RADIO, text=str(int(round(value * 100))) + "%")
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   399
            self.Bind(wx.EVT_MENU, self.GenerateZoomFunction(idx), id=new_id)
185
fdc8a59b02bd Adding icon to menus
lbessard
parents: 184
diff changeset
   400
        self.Bind(wx.EVT_MENU, self.OnRefreshMenu, id=wx.ID_REFRESH)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   401
        if self.EnableDebug:
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   402
            self.Bind(wx.EVT_MENU, self.OnClearErrorsMenu, id=wx.ID_CLEAR)
185
fdc8a59b02bd Adding icon to menus
lbessard
parents: 184
diff changeset
   403
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   404
    def _init_coll_HelpMenu_Items(self, parent):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   405
        pass
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   406
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   407
    def _init_utils(self):
185
fdc8a59b02bd Adding icon to menus
lbessard
parents: 184
diff changeset
   408
        self.MenuBar = wx.MenuBar()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   409
220
127d1323e5e0 Added File menu, even in non-solo mode.
etisserant
parents: 219
diff changeset
   410
        self.FileMenu = wx.Menu(title='')
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   411
        self.EditMenu = wx.Menu(title='')
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   412
        self.DisplayMenu = wx.Menu(title='')
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   413
        self.HelpMenu = wx.Menu(title='')
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
   414
        
185
fdc8a59b02bd Adding icon to menus
lbessard
parents: 184
diff changeset
   415
        self._init_coll_MenuBar_Menus(self.MenuBar)
220
127d1323e5e0 Added File menu, even in non-solo mode.
etisserant
parents: 219
diff changeset
   416
        self._init_coll_FileMenu_Items(self.FileMenu)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   417
        self._init_coll_EditMenu_Items(self.EditMenu)
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
   418
        self._init_coll_DisplayMenu_Items(self.DisplayMenu)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   419
        self._init_coll_HelpMenu_Items(self.HelpMenu)
239
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   420
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   421
    def _init_coll_MainLibrarySizer_Items(self, parent):
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   422
        parent.AddWindow(self.LibraryTree, 0, border=0, flag=wx.GROW)
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   423
        parent.AddSizer(self.LibraryComment, 0, border=0, flag=wx.GROW)
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   424
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   425
    def _init_coll_MainLibrarySizer_Growables(self, parent):
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   426
        parent.AddGrowableCol(0)
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   427
        parent.AddGrowableRow(0)
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   428
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   429
    def _init_sizers(self):
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   430
        self.MainLibrarySizer = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=0)
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   431
        
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   432
        self._init_coll_MainLibrarySizer_Growables(self.MainLibrarySizer)
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   433
        self._init_coll_MainLibrarySizer_Items(self.MainLibrarySizer)
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   434
        
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   435
        self.LibraryPanel.SetSizer(self.MainLibrarySizer)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
   436
        
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   437
    def _init_ctrls(self, prnt):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   438
        wx.Frame.__init__(self, id=ID_PLCOPENEDITOR, name='IDEFrame',
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   439
              parent=prnt, pos=wx.DefaultPosition, size=wx.Size(1000, 600),
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   440
              style=wx.DEFAULT_FRAME_STYLE)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   441
        self._init_utils()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   442
        self.SetClientSize(wx.Size(1000, 600))
185
fdc8a59b02bd Adding icon to menus
lbessard
parents: 184
diff changeset
   443
        self.SetMenuBar(self.MenuBar)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   444
        
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   445
        self.TabsImageList = wx.ImageList(31, 16)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   446
        self.TabsImageListIndexes = {}
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   447
        
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   448
        #-----------------------------------------------------------------------
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   449
        #                          Creating main structure
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   450
        #-----------------------------------------------------------------------
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
   451
        
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   452
        if USE_AUI:
120
add8e391e00c Adding support for wxAUI in wx 2.8
lbessard
parents: 118
diff changeset
   453
            self.AUIManager = wx.aui.AuiManager(self)
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
   454
            self.AUIManager.SetDockSizeConstraint(0.5, 0.5)
120
add8e391e00c Adding support for wxAUI in wx 2.8
lbessard
parents: 118
diff changeset
   455
            self.Panes = {}
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   456
            
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   457
            self.LeftNoteBook = wx.aui.AuiNotebook(self, ID_PLCOPENEDITORLEFTNOTEBOOK,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   458
                  style=wx.aui.AUI_NB_TOP|wx.aui.AUI_NB_TAB_SPLIT|wx.aui.AUI_NB_TAB_MOVE|
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   459
                        wx.aui.AUI_NB_SCROLL_BUTTONS|wx.aui.AUI_NB_TAB_EXTERNAL_MOVE)
618
6e48943e821e Adding support for Drag'n dropping panels between notebooks
laurent
parents: 613
diff changeset
   460
            self.LeftNoteBook.Bind(wx.aui.EVT_AUINOTEBOOK_ALLOW_DND, 
6e48943e821e Adding support for Drag'n dropping panels between notebooks
laurent
parents: 613
diff changeset
   461
                    self.OnAllowNotebookDnD)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   462
            self.AUIManager.AddPane(self.LeftNoteBook, 
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   463
                  wx.aui.AuiPaneInfo().Caption(_("Project")).Left().Layer(1).
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   464
                  BestSize(wx.Size(300, 500)).CloseButton(False))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   465
        
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   466
            self.BottomNoteBook = wx.aui.AuiNotebook(self, ID_PLCOPENEDITORBOTTOMNOTEBOOK,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   467
                  style=wx.aui.AUI_NB_TOP|wx.aui.AUI_NB_TAB_SPLIT|wx.aui.AUI_NB_TAB_MOVE|
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   468
                        wx.aui.AUI_NB_SCROLL_BUTTONS|wx.aui.AUI_NB_TAB_EXTERNAL_MOVE)
618
6e48943e821e Adding support for Drag'n dropping panels between notebooks
laurent
parents: 613
diff changeset
   469
            self.BottomNoteBook.Bind(wx.aui.EVT_AUINOTEBOOK_ALLOW_DND, 
6e48943e821e Adding support for Drag'n dropping panels between notebooks
laurent
parents: 613
diff changeset
   470
                    self.OnAllowNotebookDnD)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   471
            self.AUIManager.AddPane(self.BottomNoteBook, 
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   472
                  wx.aui.AuiPaneInfo().Bottom().Layer(0).
438
eebcf66f2d5a Bug when opening unknown file at starting fixed
laurent
parents: 434
diff changeset
   473
                  BestSize(wx.Size(800, 300)).CloseButton(False))
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   474
            
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   475
            self.RightNoteBook = wx.aui.AuiNotebook(self, ID_PLCOPENEDITORRIGHTNOTEBOOK,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   476
                  style=wx.aui.AUI_NB_TOP|wx.aui.AUI_NB_TAB_SPLIT|wx.aui.AUI_NB_TAB_MOVE|
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   477
                        wx.aui.AUI_NB_SCROLL_BUTTONS|wx.aui.AUI_NB_TAB_EXTERNAL_MOVE)
618
6e48943e821e Adding support for Drag'n dropping panels between notebooks
laurent
parents: 613
diff changeset
   478
            self.RightNoteBook.Bind(wx.aui.EVT_AUINOTEBOOK_ALLOW_DND, 
6e48943e821e Adding support for Drag'n dropping panels between notebooks
laurent
parents: 613
diff changeset
   479
                    self.OnAllowNotebookDnD)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   480
            self.AUIManager.AddPane(self.RightNoteBook, 
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   481
                  wx.aui.AuiPaneInfo().Right().Layer(0).
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   482
                  BestSize(wx.Size(250, 400)).CloseButton(False))
618
6e48943e821e Adding support for Drag'n dropping panels between notebooks
laurent
parents: 613
diff changeset
   483
            
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   484
            self.TabsOpened = wx.aui.AuiNotebook(self, ID_PLCOPENEDITORTABSOPENED, 
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   485
                  style=wx.aui.AUI_NB_DEFAULT_STYLE|wx.aui.AUI_NB_WINDOWLIST_BUTTON)
613
c487c54c1cfe Fixing bug conflict on tab selection between POU editor and Debug window of an instance of this same POU on Windows
laurent
parents: 611
diff changeset
   486
            self.TabsOpened.Bind(wx.aui.EVT_AUINOTEBOOK_PAGE_CHANGING,
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   487
                    self.OnPouSelectedChanged)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   488
            self.TabsOpened.Bind(wx.aui.EVT_AUINOTEBOOK_PAGE_CLOSE,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   489
                    self.OnPageClose)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   490
            self.TabsOpened.Bind(wx.aui.EVT_AUINOTEBOOK_END_DRAG,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   491
                    self.OnPageDragged)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   492
            self.AUIManager.AddPane(self.TabsOpened, wx.aui.AuiPaneInfo().CentrePane())
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   493
        
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   494
        else:
120
add8e391e00c Adding support for wxAUI in wx 2.8
lbessard
parents: 118
diff changeset
   495
            self.MainSplitter = wx.SplitterWindow(id=ID_PLCOPENEDITORMAINSPLITTER,
add8e391e00c Adding support for wxAUI in wx 2.8
lbessard
parents: 118
diff changeset
   496
                  name='MainSplitter', parent=self, point=wx.Point(0, 0),
add8e391e00c Adding support for wxAUI in wx 2.8
lbessard
parents: 118
diff changeset
   497
                  size=wx.Size(0, 0), style=wx.SP_3D)
add8e391e00c Adding support for wxAUI in wx 2.8
lbessard
parents: 118
diff changeset
   498
            self.MainSplitter.SetNeedUpdating(True)
add8e391e00c Adding support for wxAUI in wx 2.8
lbessard
parents: 118
diff changeset
   499
            self.MainSplitter.SetMinimumPaneSize(1)
add8e391e00c Adding support for wxAUI in wx 2.8
lbessard
parents: 118
diff changeset
   500
            
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   501
            self.LeftNoteBook = wx.Notebook(id=ID_PLCOPENEDITORLEFTNOTEBOOK,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   502
                  name='LeftNoteBook', parent=self.MainSplitter, pos=wx.Point(0,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   503
                  0), size=wx.Size(0, 0), style=0)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   504
        
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   505
            self.SecondSplitter = wx.SplitterWindow(id=ID_PLCOPENEDITORSECONDSPLITTER,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   506
                  name='SecondSplitter', parent=self.MainSplitter, point=wx.Point(0, 0),
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   507
                  size=wx.Size(0, 0), style=wx.SP_3D)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   508
            self.SecondSplitter.SetMinimumPaneSize(1)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   509
                
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   510
            self.MainSplitter.SplitVertically(self.LeftNoteBook, self.SecondSplitter, 200)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   511
            
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   512
            self.ThirdSplitter = wx.SplitterWindow(id=ID_PLCOPENEDITORTHIRDSPLITTER,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   513
                  name='ThirdSplitter', parent=self.SecondSplitter, point=wx.Point(0, 0),
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   514
                  size=wx.Size(0, 0), style=wx.SP_3D)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   515
            self.ThirdSplitter.SetMinimumPaneSize(1)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   516
            
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   517
            self.BottomNoteBook = wx.Notebook(id=ID_PLCOPENEDITORBOTTOMNOTEBOOK,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   518
                  name='BottomNoteBook', parent=self.SecondSplitter, pos=wx.Point(0,
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   519
                  0), size=wx.Size(0, 0), style=0)
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   520
            
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   521
            self.SecondSplitter.SplitHorizontally(self.ThirdSplitter, self.BottomNoteBook, -200)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   522
            
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   523
            self.TabsOpened = wx.Notebook(id=ID_PLCOPENEDITORTABSOPENED,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   524
                  name='TabsOpened', parent=self.ThirdSplitter, pos=wx.Point(0,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   525
                  0), size=wx.Size(0, 0), style=0)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   526
            self.TabsOpened.SetImageList(self.TabsImageList)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   527
            if wx.VERSION >= (2, 6, 0):
613
c487c54c1cfe Fixing bug conflict on tab selection between POU editor and Debug window of an instance of this same POU on Windows
laurent
parents: 611
diff changeset
   528
                self.TabsOpened.Bind(wx.EVT_NOTEBOOK_PAGE_CHANGING,
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   529
                    self.OnPouSelectedChanged, id=ID_PLCOPENEDITORTABSOPENED)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   530
            else:
613
c487c54c1cfe Fixing bug conflict on tab selection between POU editor and Debug window of an instance of this same POU on Windows
laurent
parents: 611
diff changeset
   531
                wx.EVT_NOTEBOOK_PAGE_CHANGING(self.TabsOpened, ID_PLCOPENEDITORTABSOPENED,
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   532
                    self.OnPouSelectedChanged)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   533
            
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   534
            self.RightNoteBook = wx.Notebook(id=ID_PLCOPENEDITORRIGHTNOTEBOOK,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   535
                  name='RightNoteBook', parent=self.ThirdSplitter, pos=wx.Point(0,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   536
                  0), size=wx.Size(0, 0), style=0)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   537
            
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   538
            self.ThirdSplitter.SplitVertically(self.TabsOpened, self.RightNoteBook, -250)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   539
        
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   540
        #-----------------------------------------------------------------------
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   541
        #                       Creating PLCopen Project tree
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   542
        #-----------------------------------------------------------------------
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   543
        
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   544
        self.TypesTree = wx.TreeCtrl(id=ID_PLCOPENEDITORTYPESTREE,
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   545
                  name='TypesTree', parent=self.LeftNoteBook, 
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   546
                  pos=wx.Point(0, 0), size=wx.Size(0, 0),
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   547
                  style=wx.TR_HAS_BUTTONS|wx.TR_SINGLE|wx.SUNKEN_BORDER|wx.TR_EDIT_LABELS)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   548
        if wx.Platform == '__WXMSW__':
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   549
            self.Bind(wx.EVT_TREE_ITEM_RIGHT_CLICK, self.OnTypesTreeRightUp,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   550
                  id=ID_PLCOPENEDITORTYPESTREE)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   551
            self.Bind(wx.EVT_TREE_SEL_CHANGED, self.OnTypesTreeItemSelected,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   552
                  id=ID_PLCOPENEDITORTYPESTREE)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   553
        else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   554
            if wx.VERSION >= (2, 6, 0):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   555
                self.TypesTree.Bind(wx.EVT_RIGHT_UP, self.OnTypesTreeRightUp)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   556
                self.TypesTree.Bind(wx.EVT_LEFT_UP, self.OnTypesTreeLeftUp)
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
   557
            else:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   558
                wx.EVT_RIGHT_UP(self.TypesTree, self.OnTypesTreeRightUp)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   559
                wx.EVT_LEFT_UP(self.TypesTree, self.OnTypesTreeLeftUp)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   560
            self.Bind(wx.EVT_TREE_SEL_CHANGING, self.OnTypesTreeItemChanging,
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   561
                  id=ID_PLCOPENEDITORTYPESTREE)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   562
        self.Bind(wx.EVT_TREE_BEGIN_DRAG, self.OnTypesTreeBeginDrag,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   563
              id=ID_PLCOPENEDITORTYPESTREE)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   564
        self.Bind(wx.EVT_TREE_BEGIN_LABEL_EDIT, self.OnTypesTreeItemBeginEdit,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   565
              id=ID_PLCOPENEDITORTYPESTREE)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   566
        self.Bind(wx.EVT_TREE_END_LABEL_EDIT, self.OnTypesTreeItemEndEdit,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   567
              id=ID_PLCOPENEDITORTYPESTREE)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   568
        self.Bind(wx.EVT_TREE_ITEM_ACTIVATED, self.OnTypesTreeItemActivated,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   569
              id=ID_PLCOPENEDITORTYPESTREE)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   570
        self.LeftNoteBook.AddPage(self.TypesTree, _("Types"))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   571
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   572
        #-----------------------------------------------------------------------
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   573
        #                       Creating PLCopen Project tree
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   574
        #-----------------------------------------------------------------------
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   575
        
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   576
        self.InstancesTree = wx.TreeCtrl(id=ID_PLCOPENEDITORINSTANCESTREE,
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   577
                  name='InstancesTree', parent=self.LeftNoteBook, 
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   578
                  pos=wx.Point(0, 0), size=wx.Size(0, 0),
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
   579
                  style=wx.TR_HAS_BUTTONS|wx.TR_SINGLE|wx.SUNKEN_BORDER)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   580
        if self.EnableDebug:
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
   581
            if wx.VERSION >= (2, 6, 0):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
   582
                self.InstancesTree.Bind(wx.EVT_RIGHT_UP, self.OnInstancesTreeRightUp)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
   583
            else:
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
   584
                wx.EVT_RIGHT_UP(self.InstancesTree, self.OnInstancesTreeRightUp)
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
   585
            self.Bind(wx.EVT_TREE_BEGIN_DRAG, self.OnInstancesTreeBeginDrag,
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
   586
                  id=ID_PLCOPENEDITORINSTANCESTREE)
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
   587
            self.Bind(wx.EVT_TREE_ITEM_ACTIVATED, self.OnInstancesTreeItemActivated,
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
   588
                  id=ID_PLCOPENEDITORINSTANCESTREE)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   589
        self.LeftNoteBook.AddPage(self.InstancesTree, _("Instances"))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   590
        
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   591
        #-----------------------------------------------------------------------
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   592
        #                            Creating Tool Bar
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   593
        #-----------------------------------------------------------------------
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   594
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   595
        if USE_AUI:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   596
            ToolBar = wx.ToolBar(self, ID_PLCOPENEDITORTOOLBAR, wx.DefaultPosition, wx.DefaultSize,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   597
                    wx.TB_FLAT | wx.TB_NODIVIDER | wx.NO_BORDER)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   598
            ToolBar.SetToolBitmapSize(wx.Size(25, 25))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   599
            ToolBar.AddRadioTool(ID_PLCOPENEDITORTOOLBARSELECTION, 
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   600
                  wx.Bitmap(os.path.join(CWD, 'Images', 'select.png')), wx.NullBitmap, _("Select an object"))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   601
            ToolBar.Realize()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   602
            self.Panes["ToolBar"] = ToolBar
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   603
            self.AUIManager.AddPane(ToolBar, wx.aui.AuiPaneInfo().
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   604
                      Name("ToolBar").Caption(_("Toolbar")).
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   605
                      ToolbarPane().Top().
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   606
                      LeftDockable(False).RightDockable(False))
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
   607
        else:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   608
            self.ToolBar = self.CreateToolBar(wx.TB_HORIZONTAL|wx.TB_FLAT|wx.NO_BORDER, 
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   609
                  ID_PLCOPENEDITORTOOLBAR, 'ToolBar')
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   610
            self.ToolBar.SetToolBitmapSize(wx.Size(25, 25))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   611
            self.ToolBar.AddRadioTool(ID_PLCOPENEDITORTOOLBARSELECTION, 
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   612
                  wx.Bitmap(os.path.join(CWD, 'Images', 'select.png')), wx.NullBitmap, _("Select an object"))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   613
            self.ToolBar.Realize()
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
   614
            
575
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
   615
        self.Bind(wx.EVT_TOOL, self.OnSelectionTool, 
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
   616
              id=ID_PLCOPENEDITORTOOLBARSELECTION)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   617
        
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   618
        self.SearchResultPanel = SearchResultPanel(self.BottomNoteBook, self)
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   619
        self.BottomNoteBook.AddPage(self.SearchResultPanel, _("Search"))
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   620
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   621
        self.LibraryPanel = wx.Panel(id=ID_PLCOPENEDITORLIBRARYPANEL,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   622
              name='LibraryPanel', parent=self.RightNoteBook, pos=wx.Point(0,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   623
              0), size=wx.Size(0, 0), style=0)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   624
        self.RightNoteBook.AddPage(self.LibraryPanel, _("Library"))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   625
        
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   626
        self.LibraryTree = wx.TreeCtrl(id=ID_PLCOPENEDITORLIBRARYTREE,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   627
                  name='LibraryTree', parent=self.LibraryPanel, 
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   628
                  pos=wx.Point(0, 0), size=wx.Size(0, 0),
599
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
   629
                  style=wx.TR_HAS_BUTTONS|wx.TR_SINGLE|wx.SUNKEN_BORDER|wx.TR_HIDE_ROOT|wx.TR_LINES_AT_ROOT)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   630
        self.Bind(wx.EVT_TREE_SEL_CHANGED, self.OnLibraryTreeItemSelected,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   631
              id=ID_PLCOPENEDITORLIBRARYTREE)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   632
        self.Bind(wx.EVT_TREE_BEGIN_DRAG, self.OnLibraryTreeBeginDrag,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   633
              id=ID_PLCOPENEDITORLIBRARYTREE)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   634
        
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   635
        self.LibraryComment = wx.TextCtrl(id=ID_PLCOPENEDITORLIBRARYCOMMENT,
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   636
              name='LibraryComment', parent=self.LibraryPanel, 
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   637
              pos=wx.Point(0, 0), size=wx.Size(0, 160), 
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   638
              style=wx.TE_READONLY|wx.TE_MULTILINE)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   639
        
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   640
        self._init_sizers()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   641
        
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   642
        if self.EnableDebug:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   643
            self.DebugVariablePanel = DebugVariablePanel(self.RightNoteBook, self.Controler)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   644
            self.RightNoteBook.AddPage(self.DebugVariablePanel, _("Debugger"))
239
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
   645
        
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   646
        if USE_AUI:
241
64e584348a5b Bug on Windows with LibraryTree fixed
lbessard
parents: 240
diff changeset
   647
            self.AUIManager.Update()
64e584348a5b Bug on Windows with LibraryTree fixed
lbessard
parents: 240
diff changeset
   648
    
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   649
    ## Constructor of the PLCOpenEditor class.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   650
    #  @param parent The parent window.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   651
    #  @param controler The controler been used by PLCOpenEditor (default: None).
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   652
    #  @param fileOpen The filepath to open if no controler defined (default: None).
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   653
    #  @param debug The filepath to open if no controler defined (default: False).
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   654
    def __init__(self, parent, enable_debug = False):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   655
        self.Controler = None
535
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   656
        self.Config = wx.ConfigBase.Get()
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   657
        self.EnableDebug = enable_debug
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
   658
        
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   659
        self._init_ctrls(parent)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   660
        
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   661
        # Define Tree item icon list
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   662
        self.TreeImageList = wx.ImageList(16, 16)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   663
        self.TreeImageDict = {}
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   664
        
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   665
        # Icons for languages
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   666
        for language in LANGUAGES:
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   667
            self.TreeImageDict[language]=self.TreeImageList.Add(wx.Bitmap(os.path.join(CWD, 'Images', '%s.png'%language)))
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   668
            
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   669
        # Icons for other items
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   670
        for imgname, itemtype in [
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   671
            #editables
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   672
            ("PROJECT",        ITEM_PROJECT),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   673
            #("POU",            ITEM_POU),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   674
            #("VARIABLE",       ITEM_VARIABLE),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   675
            ("TRANSITION",     ITEM_TRANSITION),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   676
            ("ACTION",         ITEM_ACTION),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   677
            ("CONFIGURATION",  ITEM_CONFIGURATION),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   678
            ("RESOURCE",       ITEM_RESOURCE),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   679
            ("DATATYPE",       ITEM_DATATYPE),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   680
            # uneditables
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   681
            ("DATATYPES",      ITEM_DATATYPES),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   682
            ("FUNCTION",       ITEM_FUNCTION),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   683
            ("FUNCTIONBLOCK",  ITEM_FUNCTIONBLOCK),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   684
            ("PROGRAM",        ITEM_PROGRAM),
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   685
            ("VAR_LOCAL",      ITEM_VAR_LOCAL),
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   686
            ("VAR_LOCAL",      ITEM_VAR_GLOBAL),
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   687
            ("VAR_LOCAL",      ITEM_VAR_EXTERNAL),
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   688
            ("VAR_LOCAL",      ITEM_VAR_TEMP),
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   689
            ("VAR_INPUT",      ITEM_VAR_INPUT),
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   690
            ("VAR_OUTPUT",     ITEM_VAR_OUTPUT),
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   691
            ("VAR_INOUT",      ITEM_VAR_INOUT),
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   692
            ("TRANSITIONS",    ITEM_TRANSITIONS),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   693
            ("ACTIONS",        ITEM_ACTIONS),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   694
            ("CONFIGURATIONS", ITEM_CONFIGURATIONS),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   695
            ("RESOURCES",      ITEM_RESOURCES),
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
   696
            ("PROPERTIES",     ITEM_PROPERTIES)]:
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   697
            self.TreeImageDict[itemtype]=self.TreeImageList.Add(wx.Bitmap(os.path.join(CWD, 'Images', '%s.png'%imgname)))
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   698
        
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   699
        # Assign icon list to TreeCtrls
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   700
        self.TypesTree.SetImageList(self.TreeImageList)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   701
        self.InstancesTree.SetImageList(self.TreeImageList)
9
b29105e29081 Adding test on step names in SFC Editor
lbessard
parents: 8
diff changeset
   702
        
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
   703
        self.CurrentToolBar = []
27
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   704
        self.CurrentLanguage = ""
122
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
   705
        self.SelectedItem = None
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
   706
        self.Highlights = {}
71
0578bc212c20 Adding Dialog for Step in free drawing
lbessard
parents: 70
diff changeset
   707
        self.DrawingMode = FREEDRAWING_MODE
0578bc212c20 Adding Dialog for Step in free drawing
lbessard
parents: 70
diff changeset
   708
        #self.DrawingMode = DRIVENDRAWING_MODE
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
   709
        if USE_AUI:
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
   710
            self.AuiTabCtrl = []
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
   711
        
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   712
        # Initialize Printing configuring elements
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   713
        self.PrintData = wx.PrintData()
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   714
        self.PrintData.SetPaperId(wx.PAPER_A4)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   715
        self.PrintData.SetPrintMode(wx.PRINT_MODE_PRINTER)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   716
        self.PageSetupData = wx.PageSetupDialogData(self.PrintData)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   717
        self.PageSetupData.SetMarginTopLeft(wx.Point(10, 15))
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   718
        self.PageSetupData.SetMarginBottomRight(wx.Point(10, 20))
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   719
        
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   720
        self.SetRefreshFunctions()
535
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   721
    
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   722
    def Show(self):
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   723
        wx.Frame.Show(self)
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   724
        wx.CallAfter(self.RestoreFrameSize)
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   725
    
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   726
    def RestoreFrameSize(self):
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   727
        frame_size = None
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   728
        if self.Config.HasEntry("framesize"):
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   729
            frame_size = cPickle.loads(str(self.Config.Read("framesize")))
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   730
        
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   731
        if frame_size is None:
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   732
            self.Maximize()
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   733
        else:
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   734
            self.SetClientSize(frame_size)
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   735
    
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   736
    def SaveFrameSize(self):
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   737
        if not self.IsMaximized():
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   738
            self.Config.Write("framesize", cPickle.dumps(self.GetClientSize()))
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   739
        elif self.Config.HasEntry("framesize"):
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   740
            self.Config.DeleteEntry("framesize")
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
   741
        self.Config.Flush()
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   742
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   743
#-------------------------------------------------------------------------------
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   744
#                               General Functions
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   745
#-------------------------------------------------------------------------------
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   746
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   747
    def SetRefreshFunctions(self):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   748
        self.RefreshFunctions = {
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   749
            TITLE : self.RefreshTitle,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   750
            TOOLBAR : self.RefreshToolBar,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   751
            FILEMENU : self.RefreshFileMenu,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   752
            EDITMENU : self.RefreshEditMenu,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   753
            DISPLAYMENU : self.RefreshDisplayMenu,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   754
            TYPESTREE : self.RefreshTypesTree,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   755
            INSTANCESTREE : self.RefreshInstancesTree, 
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   756
            LIBRARYTREE : self.RefreshLibraryTree,
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
   757
            SCALING : self.RefreshScaling,
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
   758
            PAGETITLES: self.RefreshPageTitles}
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   759
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   760
    ## Call PLCOpenEditor refresh functions.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   761
    #  @param elements List of elements to refresh.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   762
    def _Refresh(self, *elements):
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   763
        for element in elements:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   764
            self.RefreshFunctions[element]()
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   765
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   766
    ## Callback function when AUINotebook Page closed with CloseButton
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   767
    #  @param event AUINotebook Event.
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
   768
    def OnPageClose(self, event):
624
efedc9d06a59 Fix bug in refreshing menu after tab selection changed
laurent
parents: 618
diff changeset
   769
        # Refresh all window elements that have changed
efedc9d06a59 Fix bug in refreshing menu after tab selection changed
laurent
parents: 618
diff changeset
   770
        wx.CallAfter(self._Refresh, TITLE, TOOLBAR, FILEMENU, EDITMENU, DISPLAYMENU)
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
   771
        wx.CallAfter(self.RefreshTabCtrlEvent)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
   772
        event.Skip()
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
   773
114
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   774
    def GetCopyBuffer(self):
384
ed27a676d5c9 Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents: 372
diff changeset
   775
        data = None
402
281fd35e7a7b Adding test for avoiding Clipboard multiple opening
laurent
parents: 401
diff changeset
   776
        if wx.TheClipboard.IsOpened() or wx.TheClipboard.Open():
384
ed27a676d5c9 Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents: 372
diff changeset
   777
            dataobj = wx.TextDataObject()
ed27a676d5c9 Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents: 372
diff changeset
   778
            if wx.TheClipboard.GetData(dataobj):
ed27a676d5c9 Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents: 372
diff changeset
   779
                data = dataobj.GetText()
403
2160fd6d83ed Adding test for avoiding closing Clipboard when not opened
laurent
parents: 402
diff changeset
   780
        if wx.TheClipboard.IsOpened():
384
ed27a676d5c9 Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents: 372
diff changeset
   781
            wx.TheClipboard.Close()
ed27a676d5c9 Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents: 372
diff changeset
   782
        return data
ed27a676d5c9 Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents: 372
diff changeset
   783
        
ed27a676d5c9 Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents: 372
diff changeset
   784
    def SetCopyBuffer(self, text):
402
281fd35e7a7b Adding test for avoiding Clipboard multiple opening
laurent
parents: 401
diff changeset
   785
        if wx.TheClipboard.IsOpened() or wx.TheClipboard.Open():
384
ed27a676d5c9 Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents: 372
diff changeset
   786
            data = wx.TextDataObject()
ed27a676d5c9 Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents: 372
diff changeset
   787
            data.SetText(text)
ed27a676d5c9 Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents: 372
diff changeset
   788
            wx.TheClipboard.SetData(data)
ed27a676d5c9 Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents: 372
diff changeset
   789
            wx.TheClipboard.Flush()
403
2160fd6d83ed Adding test for avoiding closing Clipboard when not opened
laurent
parents: 402
diff changeset
   790
        if wx.TheClipboard.IsOpened():
384
ed27a676d5c9 Changing Cut/Copy/Paste procedures for using wx.Clipboard with xml definition of copied elements
laurent
parents: 372
diff changeset
   791
            wx.TheClipboard.Close()
114
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   792
        self.RefreshEditMenu()
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
   793
27
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   794
    def GetDrawingMode(self):
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   795
        return self.DrawingMode
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   796
331
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
   797
    def RefreshScaling(self):
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
   798
        for i in xrange(self.TabsOpened.GetPageCount()):
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
   799
            editor = self.TabsOpened.GetPage(i)
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
   800
            editor.RefreshScaling()
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
   801
27
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   802
    def ShowProperties(self):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   803
        old_values = self.Controler.GetProjectProperties()
27
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   804
        dialog = ProjectDialog(self)
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   805
        dialog.SetValues(old_values)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
   806
        if dialog.ShowModal() == wx.ID_OK:
27
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   807
            new_values = dialog.GetValues()
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   808
            new_values["creationDateTime"] = old_values["creationDateTime"]
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
   809
            if new_values != old_values:
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
   810
                self.Controler.SetProjectProperties(None, new_values)
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   811
                self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU, DISPLAYMENU, 
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   812
                              TYPESTREE, INSTANCESTREE, SCALING)
27
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   813
        dialog.Destroy()
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   814
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   815
#-------------------------------------------------------------------------------
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   816
#                            Notebook Unified Functions
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   817
#-------------------------------------------------------------------------------
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   818
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   819
    ## Function that generate bitmap for
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   820
    # for wx.aui.AUINotebook.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   821
    #  @param window Panel to display in tab.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   822
    #  @param text title for the tab ctrl.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   823
    def GenerateBitmap(self, icon1_name, icon2_name = None):
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   824
        # Find index of bitmap if already created
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   825
        index = self.TabsImageListIndexes.get((icon1_name, icon2_name), None)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   826
        # Return index or bitmap if found
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   827
        if index is not None:
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   828
            if USE_AUI:
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   829
                return self.TabsImageList.GetBitmap(index)
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
   830
            else:
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   831
                return index
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   832
        if icon2_name is None:
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   833
            # Bitmap with only one icon
401
d3f086b0da30 Bug with TabsImageList wrong image size definition fixed
laurent
parents: 397
diff changeset
   834
            bitmap = wx.Bitmap(os.path.join(CWD, 'Images', '%s.png'%icon1_name))
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   835
        else:
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   836
            # Bitmap with two icon
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   837
            icon1 = wx.Bitmap(os.path.join(CWD, 'Images', '%s.png'%icon1_name))
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   838
            icon2 = wx.Bitmap(os.path.join(CWD, 'Images', '%s.png'%icon2_name))
401
d3f086b0da30 Bug with TabsImageList wrong image size definition fixed
laurent
parents: 397
diff changeset
   839
            
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   840
            # Calculate bitmap size
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   841
            width = icon1.GetWidth() + icon2.GetWidth() - 1
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   842
            height = max(icon1.GetHeight(), icon2.GetHeight())
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   843
            # Create bitmap with both icons
401
d3f086b0da30 Bug with TabsImageList wrong image size definition fixed
laurent
parents: 397
diff changeset
   844
            bitmap = wx.EmptyBitmap(width, height)
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   845
            dc = wx.MemoryDC()
401
d3f086b0da30 Bug with TabsImageList wrong image size definition fixed
laurent
parents: 397
diff changeset
   846
            dc.SelectObject(bitmap)
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   847
            dc.Clear()
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   848
            dc.DrawBitmap(icon1, 0, 0)
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   849
            dc.DrawBitmap(icon2, icon1.GetWidth() - 1, 0)
401
d3f086b0da30 Bug with TabsImageList wrong image size definition fixed
laurent
parents: 397
diff changeset
   850
            dc.Destroy()
d3f086b0da30 Bug with TabsImageList wrong image size definition fixed
laurent
parents: 397
diff changeset
   851
            
397
ea47ebbe23b7 Bug with tabs images on Windows fixed
laurent
parents: 396
diff changeset
   852
            # Store bitmap in ImageList
401
d3f086b0da30 Bug with TabsImageList wrong image size definition fixed
laurent
parents: 397
diff changeset
   853
            index = self.TabsImageList.Add(bitmap)
397
ea47ebbe23b7 Bug with tabs images on Windows fixed
laurent
parents: 396
diff changeset
   854
            # Save bitmap index in ImageList in dictionary
ea47ebbe23b7 Bug with tabs images on Windows fixed
laurent
parents: 396
diff changeset
   855
            self.TabsImageListIndexes[(icon1_name, icon2_name)] = index
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   856
        if USE_AUI:
401
d3f086b0da30 Bug with TabsImageList wrong image size definition fixed
laurent
parents: 397
diff changeset
   857
            return bitmap
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   858
        else:
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   859
            return index
337
388a00b05b6b Bug with maximize on Tab Double Click fixed
lbessard
parents: 335
diff changeset
   860
    
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   861
    ## Function that add a tab in Notebook, calling refresh for tab DClick event
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   862
    # for wx.aui.AUINotebook.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   863
    #  @param window Panel to display in tab.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   864
    #  @param text title for the tab ctrl.
337
388a00b05b6b Bug with maximize on Tab Double Click fixed
lbessard
parents: 335
diff changeset
   865
    def AddPage(self, window, text):
388a00b05b6b Bug with maximize on Tab Double Click fixed
lbessard
parents: 335
diff changeset
   866
        self.TabsOpened.AddPage(window, text)
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
   867
        self.RefreshTabCtrlEvent()
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
   868
    
611
9d24fa46523f Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents: 606
diff changeset
   869
    ## Function that add a tab in Notebook, calling refresh for tab DClick event
9d24fa46523f Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents: 606
diff changeset
   870
    # for wx.aui.AUINotebook.
9d24fa46523f Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents: 606
diff changeset
   871
    #  @param window Panel to display in tab.
9d24fa46523f Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents: 606
diff changeset
   872
    #  @param text title for the tab ctrl.
9d24fa46523f Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents: 606
diff changeset
   873
    def DeletePage(self, window):
9d24fa46523f Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents: 606
diff changeset
   874
        for idx in xrange(self.TabsOpened.GetPageCount()):
9d24fa46523f Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents: 606
diff changeset
   875
            if self.TabsOpened.GetPage(idx) == window:
9d24fa46523f Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents: 606
diff changeset
   876
                self.TabsOpened.DeletePage(idx)
9d24fa46523f Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents: 606
diff changeset
   877
                self.RefreshTabCtrlEvent()
9d24fa46523f Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents: 606
diff changeset
   878
                return 
9d24fa46523f Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents: 606
diff changeset
   879
        
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   880
    ## Function that fix difference in deleting all tabs between 
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   881
    # wx.Notebook and wx.aui.AUINotebook.
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
   882
    def DeleteAllPages(self):
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   883
        if USE_AUI:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   884
            for idx in xrange(self.TabsOpened.GetPageCount()):
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   885
                self.TabsOpened.DeletePage(0)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
   886
        else:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
   887
            self.TabsOpened.DeleteAllPages()
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   888
        self.RefreshTabCtrlEvent()
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   889
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   890
    ## Function that fix difference in setting picture on tab between 
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   891
    # wx.Notebook and wx.aui.AUINotebook.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   892
    #  @param idx Tab index.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   893
    #  @param bitmap wx.Bitmap to define on tab.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   894
    #  @return True if operation succeeded
203
76c407fb33fe Adding icons on viewers tabs
lbessard
parents: 190
diff changeset
   895
    def SetPageBitmap(self, idx, bitmap):
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
   896
        if USE_AUI:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   897
            return self.TabsOpened.SetPageBitmap(idx, bitmap)
203
76c407fb33fe Adding icons on viewers tabs
lbessard
parents: 190
diff changeset
   898
        else:
76c407fb33fe Adding icons on viewers tabs
lbessard
parents: 190
diff changeset
   899
            return self.TabsOpened.SetPageImage(idx, bitmap)
76c407fb33fe Adding icons on viewers tabs
lbessard
parents: 190
diff changeset
   900
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   901
#-------------------------------------------------------------------------------
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   902
#                         Dialog Message Functions
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   903
#-------------------------------------------------------------------------------
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   904
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   905
    ## Function displaying an Error dialog in PLCOpenEditor.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   906
    #  @param message The message to display.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   907
    def ShowErrorMessage(self, message):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   908
        dialog = wx.MessageDialog(self, message, _("Error"), wx.OK|wx.ICON_ERROR)
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   909
        dialog.ShowModal()
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   910
        dialog.Destroy()
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   911
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   912
    ## Function displaying an Error dialog in PLCOpenEditor.
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   913
    #  @return False if closing cancelled.
450
b31d1dfb407b Fix messages on DialogBox title while asking for project saving when closing project
laurent
parents: 447
diff changeset
   914
    def CheckSaveBeforeClosing(self, title=_("Close Project")):
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   915
        if not self.Controler.ProjectIsSaved():
450
b31d1dfb407b Fix messages on DialogBox title while asking for project saving when closing project
laurent
parents: 447
diff changeset
   916
            dialog = wx.MessageDialog(self, _("There are changes, do you want to save?"), title, wx.YES_NO|wx.CANCEL|wx.ICON_QUESTION)
56
7187e1c00975 Adding support for Undo/Redo and Unsaved File On Close detection
lbessard
parents: 55
diff changeset
   917
            answer = dialog.ShowModal()
7187e1c00975 Adding support for Undo/Redo and Unsaved File On Close detection
lbessard
parents: 55
diff changeset
   918
            dialog.Destroy()
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
   919
            if answer == wx.ID_YES:
56
7187e1c00975 Adding support for Undo/Redo and Unsaved File On Close detection
lbessard
parents: 55
diff changeset
   920
                self.SaveProject()
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   921
            elif answer == wx.ID_CANCEL:
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   922
                return False
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
   923
        return True
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
   924
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
   925
#-------------------------------------------------------------------------------
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
   926
#                            File Menu Functions
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
   927
#-------------------------------------------------------------------------------
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
   928
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
   929
    def RefreshFileMenu(self):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   930
        pass
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   931
411
9ab97d517ae8 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 407
diff changeset
   932
    def ResetView(self):
9ab97d517ae8 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 407
diff changeset
   933
        self.DeleteAllPages()
9ab97d517ae8 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 407
diff changeset
   934
        self.TypesTree.DeleteAllItems()
9ab97d517ae8 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 407
diff changeset
   935
        self.InstancesTree.DeleteAllItems()
9ab97d517ae8 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 407
diff changeset
   936
        self.LibraryTree.DeleteAllItems()
9ab97d517ae8 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 407
diff changeset
   937
        self.Controler = None
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   938
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   939
    def OnCloseTabMenu(self, event):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   940
        selected = self.TabsOpened.GetSelection()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   941
        if selected >= 0:
294
4a36f2ec8967 Two bugs fixed:
lbessard
parents: 292
diff changeset
   942
            self.TabsOpened.DeletePage(selected)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   943
            if self.TabsOpened.GetPageCount() > 0:
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   944
                new_index = min(selected, self.TabsOpened.GetPageCount() - 1)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   945
                self.TabsOpened.SetSelection(new_index)
478
dc403c47af54 Adding colour to graphic element that showing forced values
laurent
parents: 474
diff changeset
   946
        # Refresh all window elements that have changed
dc403c47af54 Adding colour to graphic element that showing forced values
laurent
parents: 474
diff changeset
   947
        self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU, DISPLAYMENU)
dc403c47af54 Adding colour to graphic element that showing forced values
laurent
parents: 474
diff changeset
   948
        self.RefreshTabCtrlEvent()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   949
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   950
    def OnPageSetupMenu(self, event):
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   951
        dialog = wx.PageSetupDialog(self, self.PageSetupData)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   952
        if dialog.ShowModal() == wx.ID_OK:
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   953
            self.PageSetupData = wx.PageSetupDialogData(dialog.GetPageSetupData())
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   954
            self.PrintData = wx.PrintData(self.PageSetupData.GetPrintData())
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   955
        dialog.Destroy()
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   956
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   957
    def OnPreviewMenu(self, event):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   958
        selected = self.TabsOpened.GetSelection()        
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   959
        if selected != -1:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   960
            window = self.TabsOpened.GetPage(selected)
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   961
            data = wx.PrintDialogData(self.PrintData)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   962
            properties = self.Controler.GetProjectProperties(window.IsDebugging())
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   963
            page_size = map(int, properties["pageSize"])
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   964
            margins = (self.PageSetupData.GetMarginTopLeft(), self.PageSetupData.GetMarginBottomRight())
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   965
            printout = GraphicPrintout(window, page_size, margins, True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   966
            printout2 = GraphicPrintout(window, page_size, margins, True)
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   967
            preview = wx.PrintPreview(printout, printout2, data)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   968
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   969
            if preview.Ok():
559
984c51d1bf6b Fix PrintPreview behavior
laurent
parents: 555
diff changeset
   970
                preview_frame = wx.PreviewFrame(preview, self, _("Print preview"), style=wx.DEFAULT_FRAME_STYLE|wx.FRAME_FLOAT_ON_PARENT)
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   971
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   972
                preview_frame.Initialize()
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   973
                
559
984c51d1bf6b Fix PrintPreview behavior
laurent
parents: 555
diff changeset
   974
                preview_canvas = preview.GetCanvas()
984c51d1bf6b Fix PrintPreview behavior
laurent
parents: 555
diff changeset
   975
                preview_canvas.SetMinSize(preview_canvas.GetVirtualSize())
984c51d1bf6b Fix PrintPreview behavior
laurent
parents: 555
diff changeset
   976
                preview_frame.Fit()
984c51d1bf6b Fix PrintPreview behavior
laurent
parents: 555
diff changeset
   977
                
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   978
                preview_frame.Show(True)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   979
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   980
    def OnPrintMenu(self, event):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
   981
        selected = self.TabsOpened.GetSelection()        
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   982
        if selected != -1:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   983
            window = self.TabsOpened.GetPage(selected)
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   984
            dialog_data = wx.PrintDialogData(self.PrintData)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   985
            dialog_data.SetToPage(1)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   986
            properties = self.Controler.GetProjectProperties(window.IsDebugging())
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   987
            page_size = map(int, properties["pageSize"])
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   988
            margins = (self.PageSetupData.GetMarginTopLeft(), self.PageSetupData.GetMarginBottomRight())
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   989
            printer = wx.Printer(dialog_data)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
   990
            printout = GraphicPrintout(window, page_size, margins)
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   991
            
559
984c51d1bf6b Fix PrintPreview behavior
laurent
parents: 555
diff changeset
   992
            if not printer.Print(self, printout, True) and printer.GetLastError() != wx.PRINTER_CANCELLED:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
   993
                self.ShowErrorMessage(_("There was a problem printing.\nPerhaps your current printer is not set correctly?"))
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   994
            printout.Destroy()
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
   995
27
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   996
    def OnPropertiesMenu(self, event):
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   997
        self.ShowProperties()
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
   998
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   999
    def OnQuitMenu(self, event):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1000
        self.Close()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1001
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1002
#-------------------------------------------------------------------------------
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1003
#                            Edit Menu Functions
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1004
#-------------------------------------------------------------------------------
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1005
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1006
    def RefreshEditMenu(self):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1007
        if self.Controler is not None:
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1008
            selected = self.TabsOpened.GetSelection()
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1009
            if selected > -1:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1010
                window = self.TabsOpened.GetPage(selected)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1011
                undo, redo = window.GetBufferState()
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1012
            else:
613
c487c54c1cfe Fixing bug conflict on tab selection between POU editor and Debug window of an instance of this same POU on Windows
laurent
parents: 611
diff changeset
  1013
                undo, redo = self.Controler.GetBufferState()
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1014
            self.EditMenu.Enable(wx.ID_UNDO, undo)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1015
            self.EditMenu.Enable(wx.ID_REDO, redo)
562
0ce12552cf36 Fix bug on Windows after removing "Enable Undo/Redo" menu item
laurent
parents: 560
diff changeset
  1016
            #self.EditMenu.Enable(ID_PLCOPENEDITOREDITMENUENABLEUNDOREDO, True)
0ce12552cf36 Fix bug on Windows after removing "Enable Undo/Redo" menu item
laurent
parents: 560
diff changeset
  1017
            #self.EditMenu.Check(ID_PLCOPENEDITOREDITMENUENABLEUNDOREDO, 
0ce12552cf36 Fix bug on Windows after removing "Enable Undo/Redo" menu item
laurent
parents: 560
diff changeset
  1018
            #                self.Controler.IsProjectBufferEnabled())
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  1019
            self.EditMenu.Enable(ID_PLCOPENEDITOREDITMENUSEARCHINPROJECT, True)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1020
            self.EditMenu.Enable(wx.ID_ADD, True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1021
            self.EditMenu.Enable(wx.ID_DELETE, True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1022
            if self.TabsOpened.GetPageCount() > 0:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1023
                self.EditMenu.Enable(wx.ID_CUT, True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1024
                self.EditMenu.Enable(wx.ID_COPY, True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1025
                if self.GetCopyBuffer() is not None:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1026
                    self.EditMenu.Enable(wx.ID_PASTE, True)
331
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
  1027
                else:
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
  1028
                    self.EditMenu.Enable(wx.ID_PASTE, False)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1029
                self.EditMenu.Enable(wx.ID_SELECTALL, True)
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1030
            else:
331
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
  1031
                self.EditMenu.Enable(wx.ID_CUT, False)
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
  1032
                self.EditMenu.Enable(wx.ID_COPY, False)
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
  1033
                self.EditMenu.Enable(wx.ID_PASTE, False)
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
  1034
                self.EditMenu.Enable(wx.ID_SELECTALL, False)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1035
        else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1036
            self.EditMenu.Enable(wx.ID_UNDO, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1037
            self.EditMenu.Enable(wx.ID_REDO, False)
562
0ce12552cf36 Fix bug on Windows after removing "Enable Undo/Redo" menu item
laurent
parents: 560
diff changeset
  1038
            #self.EditMenu.Enable(ID_PLCOPENEDITOREDITMENUENABLEUNDOREDO, False)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1039
            self.EditMenu.Enable(wx.ID_CUT, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1040
            self.EditMenu.Enable(wx.ID_COPY, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1041
            self.EditMenu.Enable(wx.ID_PASTE, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1042
            self.EditMenu.Enable(wx.ID_SELECTALL, False)
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  1043
            self.EditMenu.Enable(ID_PLCOPENEDITOREDITMENUSEARCHINPROJECT, False)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1044
            self.EditMenu.Enable(wx.ID_ADD, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1045
            self.EditMenu.Enable(wx.ID_DELETE, False)
331
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
  1046
    
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1047
    def CloseTabsWithoutModel(self):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1048
        idxs = range(self.TabsOpened.GetPageCount())
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1049
        idxs.reverse()
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1050
        for idx in idxs:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1051
            window = self.TabsOpened.GetPage(idx)
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1052
            if window.HasNoModel():
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1053
                self.TabsOpened.DeletePage(idx)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1054
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1055
    def OnUndoMenu(self, event):
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1056
        selected = self.TabsOpened.GetSelection()
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1057
        if selected != -1:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1058
            window = self.TabsOpened.GetPage(selected)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1059
            window.Undo()
613
c487c54c1cfe Fixing bug conflict on tab selection between POU editor and Debug window of an instance of this same POU on Windows
laurent
parents: 611
diff changeset
  1060
        else:
c487c54c1cfe Fixing bug conflict on tab selection between POU editor and Debug window of an instance of this same POU on Windows
laurent
parents: 611
diff changeset
  1061
            self.Controler.LoadPrevious()
c487c54c1cfe Fixing bug conflict on tab selection between POU editor and Debug window of an instance of this same POU on Windows
laurent
parents: 611
diff changeset
  1062
        self._Refresh(TITLE, FILEMENU, EDITMENU, TYPESTREE, INSTANCESTREE, LIBRARYTREE, 
c487c54c1cfe Fixing bug conflict on tab selection between POU editor and Debug window of an instance of this same POU on Windows
laurent
parents: 611
diff changeset
  1063
                      SCALING, PAGETITLES)    
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1064
    
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1065
    def OnRedoMenu(self, event):
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1066
        selected = self.TabsOpened.GetSelection()
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1067
        if selected != -1:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1068
            window = self.TabsOpened.GetPage(selected)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1069
            window.Redo()
613
c487c54c1cfe Fixing bug conflict on tab selection between POU editor and Debug window of an instance of this same POU on Windows
laurent
parents: 611
diff changeset
  1070
        else:
c487c54c1cfe Fixing bug conflict on tab selection between POU editor and Debug window of an instance of this same POU on Windows
laurent
parents: 611
diff changeset
  1071
            self.Controler.LoadNext()
c487c54c1cfe Fixing bug conflict on tab selection between POU editor and Debug window of an instance of this same POU on Windows
laurent
parents: 611
diff changeset
  1072
        self._Refresh(TITLE, FILEMENU, EDITMENU, TYPESTREE, INSTANCESTREE, LIBRARYTREE, 
c487c54c1cfe Fixing bug conflict on tab selection between POU editor and Debug window of an instance of this same POU on Windows
laurent
parents: 611
diff changeset
  1073
                      SCALING, PAGETITLES)
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1074
    
350
f7958989e055 Adding support for Enable/Disable Undo/Redo
greg
parents: 347
diff changeset
  1075
    def OnEnableUndoRedoMenu(self, event):
f7958989e055 Adding support for Enable/Disable Undo/Redo
greg
parents: 347
diff changeset
  1076
        self.Controler.EnableProjectBuffer(event.IsChecked())
f7958989e055 Adding support for Enable/Disable Undo/Redo
greg
parents: 347
diff changeset
  1077
        self.RefreshEditMenu()
f7958989e055 Adding support for Enable/Disable Undo/Redo
greg
parents: 347
diff changeset
  1078
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1079
    OnCutMenu = GetShortcutKeyCallbackFunction("Cut")
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1080
    OnCopyMenu = GetShortcutKeyCallbackFunction("Copy")
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1081
    OnPasteMenu = GetShortcutKeyCallbackFunction("Paste")
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1082
331
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
  1083
    def OnSelectAllMenu(self, event):
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  1084
        control = self.FindFocus()
599
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
  1085
        if control is not None and control.GetName() == "Viewer":
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1086
            control.Parent.SelectAll()
587
98445f90f45d Fixing bug preventing copy/cut/paste using shortcuts on CFileEditor text editors
laurent
parents: 586
diff changeset
  1087
        elif isinstance(control, wx.stc.StyledTextCtrl):
98445f90f45d Fixing bug preventing copy/cut/paste using shortcuts on CFileEditor text editors
laurent
parents: 586
diff changeset
  1088
            control.SelectAll()
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  1089
        elif isinstance(control, wx.TextCtrl):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  1090
            control.SetSelection(0, control.GetLastPosition())
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  1091
        elif isinstance(control, wx.ComboBox):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  1092
            control.SetMark(0, control.GetLastPosition() + 1)
331
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
  1093
    
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1094
    DeleteFunctions = {
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1095
        ITEM_DATATYPE: GetDeleteElementFunction(PLCControler.ProjectRemoveDataType, check_function=PLCControler.DataTypeIsUsed),
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1096
        ITEM_POU: GetDeleteElementFunction(PLCControler.ProjectRemovePou, check_function=PLCControler.PouIsUsed),
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1097
        ITEM_TRANSITION: GetDeleteElementFunction(PLCControler.ProjectRemovePouTransition, ITEM_POU),
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1098
        ITEM_ACTION: GetDeleteElementFunction(PLCControler.ProjectRemovePouAction, ITEM_POU),
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1099
        ITEM_CONFIGURATION: GetDeleteElementFunction(PLCControler.ProjectRemoveConfiguration),
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1100
        ITEM_RESOURCE: GetDeleteElementFunction(PLCControler.ProjectRemoveConfigurationResource, ITEM_CONFIGURATION)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1101
    }
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1102
    
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1103
    def OnDeleteMenu(self, event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1104
        window = self.FindFocus()
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1105
        if window == self.TypesTree or window is None:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1106
            selected = self.TypesTree.GetSelection()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1107
            if selected.IsOk():
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1108
                type = self.TypesTree.GetPyData(selected)
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1109
                function = self.DeleteFunctions.get(type, None)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1110
                if function is not None:
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1111
                    function(self, selected)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1112
                    self.CloseTabsWithoutModel()
498
5f90349529c9 Bug on FileMenu not refreshed when modifications fixed
laurent
parents: 497
diff changeset
  1113
                    self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU, TYPESTREE, 
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1114
                                  INSTANCESTREE, LIBRARYTREE)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1115
        elif isinstance(window, (Viewer, TextViewer)):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1116
            event = wx.KeyEvent(wx.EVT_CHAR._getEvtType())
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1117
            event.m_keyCode = wx.WXK_DELETE
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1118
            window.ProcessEvent(event)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1119
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  1120
    def OnSearchInProjectMenu(self, event):
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  1121
        dialog = SearchInProjectDialog(self)
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  1122
        if dialog.ShowModal() == wx.ID_OK:
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  1123
            criteria = dialog.GetCriteria()
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  1124
            result = self.Controler.SearchInProject(criteria)
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  1125
            self.ClearSearchResults()
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  1126
            self.SearchResultPanel.SetSearchResults(criteria, result)
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  1127
            self.BottomNoteBook.SetSelection(self.BottomNoteBook.GetPageIndex(self.SearchResultPanel))
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  1128
            
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1129
#-------------------------------------------------------------------------------
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1130
#                             Display Menu Functions
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1131
#-------------------------------------------------------------------------------
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1132
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1133
    def RefreshDisplayMenu(self):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1134
        if self.Controler is not None:
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1135
            if self.TabsOpened.GetPageCount() > 0:
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1136
                self.DisplayMenu.Enable(wx.ID_REFRESH, True)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1137
                selected = self.TabsOpened.GetSelection()
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1138
                if selected != -1:
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1139
                    window = self.TabsOpened.GetPage(selected)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1140
                    if isinstance(window, Viewer):
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1141
                        self.DisplayMenu.Enable(wx.ID_ZOOM_FIT, True)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1142
                        zoommenu = self.DisplayMenu.FindItemById(wx.ID_ZOOM_FIT).GetSubMenu()
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1143
                        zoomitem = zoommenu.FindItemByPosition(window.GetScale())
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1144
                        zoomitem.Check(True)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1145
                    else:
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1146
                        self.DisplayMenu.Enable(wx.ID_ZOOM_FIT, False)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1147
                else:
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1148
                    self.DisplayMenu.Enable(wx.ID_ZOOM_FIT, False)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1149
            else:
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1150
                self.DisplayMenu.Enable(wx.ID_REFRESH, False)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1151
                self.DisplayMenu.Enable(wx.ID_ZOOM_FIT, False)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1152
            if self.EnableDebug:
352
5cd60f7e510c fixed some bugs:
greg
parents: 350
diff changeset
  1153
                self.DisplayMenu.Enable(wx.ID_CLEAR, True)
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1154
        else:
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1155
            self.DisplayMenu.Enable(wx.ID_REFRESH, False)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1156
            if self.EnableDebug:
352
5cd60f7e510c fixed some bugs:
greg
parents: 350
diff changeset
  1157
                self.DisplayMenu.Enable(wx.ID_CLEAR, False)
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1158
            self.DisplayMenu.Enable(wx.ID_ZOOM_FIT, False)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1159
        
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1160
    def OnRefreshMenu(self, event):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1161
        self.RefreshEditor()
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1162
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1163
    def OnClearErrorsMenu(self, event):
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1164
        self.ClearErrors()
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1165
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1166
    def GenerateZoomFunction(self, idx):
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1167
        def ZoomFunction(event):
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1168
            selected = self.TabsOpened.GetSelection()
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1169
            if selected != -1:
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1170
                window = self.TabsOpened.GetPage(selected)
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1171
                window.SetScale(idx)
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 359
diff changeset
  1172
                window.RefreshVisibleElements()
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 359
diff changeset
  1173
                window.RefreshScrollBars()
332
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1174
            event.Skip()
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1175
        return ZoomFunction
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1176
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1177
555124c752ec Adding Display menu with Zoom item
lbessard
parents: 331
diff changeset
  1178
#-------------------------------------------------------------------------------
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1179
#                      Project Editor Panels Management Functions
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1180
#-------------------------------------------------------------------------------
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1181
    
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1182
    def OnPageDragged(self, event):
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1183
        wx.CallAfter(self.RefreshTabCtrlEvent)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1184
        event.Skip()
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1185
    
618
6e48943e821e Adding support for Drag'n dropping panels between notebooks
laurent
parents: 613
diff changeset
  1186
    def OnAllowNotebookDnD(self, event):
6e48943e821e Adding support for Drag'n dropping panels between notebooks
laurent
parents: 613
diff changeset
  1187
        event.Allow()
6e48943e821e Adding support for Drag'n dropping panels between notebooks
laurent
parents: 613
diff changeset
  1188
    
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1189
    def RefreshTabCtrlEvent(self):
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1190
        if USE_AUI:
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1191
            auitabctrl = []
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1192
            for child in self.TabsOpened.GetChildren():
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1193
                if isinstance(child, wx.aui.AuiTabCtrl):
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1194
                    auitabctrl.append(child)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1195
                    if child not in self.AuiTabCtrl:
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1196
                        child.Bind(wx.EVT_LEFT_DCLICK, self.GetTabsOpenedDClickFunction(child))
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1197
            self.AuiTabCtrl = auitabctrl
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1198
            if self.TabsOpened.GetPageCount() == 0:
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1199
                pane = self.AUIManager.GetPane(self.TabsOpened)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1200
                if pane.IsMaximized():
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1201
                    self.AUIManager.RestorePane(pane)
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1202
                self.AUIManager.Update()
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1203
    
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1204
    def OnPouSelectedChanged(self, event):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1205
        old_selected = self.TabsOpened.GetSelection()
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1206
        if old_selected >= 0:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1207
            window = self.TabsOpened.GetPage(old_selected)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1208
            if not window.IsDebugging():
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1209
                window.ResetBuffer()
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1210
        selected = event.GetSelection()
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1211
        if selected >= 0:
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1212
            window = self.TabsOpened.GetPage(selected)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1213
            if not window.IsDebugging():
538
8c7605bbf673 Fix Segmentation Fault occurring when trying to open a new editor tab
laurent
parents: 537
diff changeset
  1214
                wx.CallAfter(self.SelectTypesTreeItem, window.GetTagName())
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1215
            else:
538
8c7605bbf673 Fix Segmentation Fault occurring when trying to open a new editor tab
laurent
parents: 537
diff changeset
  1216
                wx.CallAfter(self.SelectInstancesTreeItem, self.InstancesTree.GetRootItem(), window.GetInstancePath())
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1217
            window.RefreshView()
624
efedc9d06a59 Fix bug in refreshing menu after tab selection changed
laurent
parents: 618
diff changeset
  1218
        wx.CallAfter(self._Refresh, FILEMENU, EDITMENU, DISPLAYMENU, TOOLBAR)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1219
        event.Skip()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1220
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1221
    def RefreshEditor(self):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1222
        selected = self.TabsOpened.GetSelection()
489
0caeaa75dcff Bug when more than one tab are visible, only one tab is refreshed fixed
laurent
parents: 488
diff changeset
  1223
        if USE_AUI:
0caeaa75dcff Bug when more than one tab are visible, only one tab is refreshed fixed
laurent
parents: 488
diff changeset
  1224
            for child in self.TabsOpened.GetChildren():
0caeaa75dcff Bug when more than one tab are visible, only one tab is refreshed fixed
laurent
parents: 488
diff changeset
  1225
                if isinstance(child, wx.aui.AuiTabCtrl):
568
31976c61c701 Fix bug when opening another project while current edited project has at least one tab opened
laurent
parents: 566
diff changeset
  1226
                    active_page = child.GetActivePage()
31976c61c701 Fix bug when opening another project while current edited project has at least one tab opened
laurent
parents: 566
diff changeset
  1227
                    if active_page >= 0:
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1228
                        window = child.GetWindowFromIdx(active_page)
568
31976c61c701 Fix bug when opening another project while current edited project has at least one tab opened
laurent
parents: 566
diff changeset
  1229
                        window.RefreshView()
489
0caeaa75dcff Bug when more than one tab are visible, only one tab is refreshed fixed
laurent
parents: 488
diff changeset
  1230
        elif selected >= 0:
0caeaa75dcff Bug when more than one tab are visible, only one tab is refreshed fixed
laurent
parents: 488
diff changeset
  1231
            window = self.TabsOpened.GetPage(idx)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1232
            window.RefreshView()
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1233
    
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1234
    def RefreshEditorNames(self, old_tagname, new_tagname):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1235
        for i in xrange(self.TabsOpened.GetPageCount()):
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1236
            editor = self.TabsOpened.GetPage(i)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1237
            if editor.GetTagName() == old_tagname:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1238
                editor.SetTagName(new_tagname)
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1239
    
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1240
    def IsOpened(self, tagname):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1241
        for idx in xrange(self.TabsOpened.GetPageCount()):
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1242
            if self.TabsOpened.GetPage(idx).IsViewing(tagname):
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1243
                return idx
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1244
        return None
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1245
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1246
    def RefreshPageTitles(self):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1247
        for idx in xrange(self.TabsOpened.GetPageCount()):
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1248
            window = self.TabsOpened.GetPage(idx)
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1249
            icon = window.GetIcon()
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1250
            if icon is not None:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1251
                self.SetPageBitmap(idx, icon)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1252
            self.TabsOpened.SetPageText(idx, window.GetTitle())
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1253
335
c2c6db53a04f Fix bug with maximize on TabCtrl DoubleClick.
lbessard
parents: 332
diff changeset
  1254
    def GetTabsOpenedDClickFunction(self, tabctrl):
331
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
  1255
        def OnTabsOpenedDClick(event):
335
c2c6db53a04f Fix bug with maximize on TabCtrl DoubleClick.
lbessard
parents: 332
diff changeset
  1256
            pos = event.GetPosition()
c2c6db53a04f Fix bug with maximize on TabCtrl DoubleClick.
lbessard
parents: 332
diff changeset
  1257
            if tabctrl.TabHitTest(pos.x, pos.y, None):
c2c6db53a04f Fix bug with maximize on TabCtrl DoubleClick.
lbessard
parents: 332
diff changeset
  1258
                pane = self.AUIManager.GetPane(self.TabsOpened)
c2c6db53a04f Fix bug with maximize on TabCtrl DoubleClick.
lbessard
parents: 332
diff changeset
  1259
                if pane.IsMaximized():
c2c6db53a04f Fix bug with maximize on TabCtrl DoubleClick.
lbessard
parents: 332
diff changeset
  1260
                    self.AUIManager.RestorePane(pane)
c2c6db53a04f Fix bug with maximize on TabCtrl DoubleClick.
lbessard
parents: 332
diff changeset
  1261
                else:
c2c6db53a04f Fix bug with maximize on TabCtrl DoubleClick.
lbessard
parents: 332
diff changeset
  1262
                    self.AUIManager.MaximizePane(pane)
c2c6db53a04f Fix bug with maximize on TabCtrl DoubleClick.
lbessard
parents: 332
diff changeset
  1263
                self.AUIManager.Update()
331
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
  1264
            event.Skip()
9106d66bd204 Bug with Scaling, MiddleButton, Wire modifications fixed.
lbessard
parents: 324
diff changeset
  1265
        return OnTabsOpenedDClick
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1266
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1267
#-------------------------------------------------------------------------------
239
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1268
#                         Types Tree Management Functions
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1269
#-------------------------------------------------------------------------------
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1270
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1271
    def RefreshTypesTree(self):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1272
        infos = self.Controler.GetProjectInfos()
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1273
        root = self.TypesTree.GetRootItem()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1274
        if not root.IsOk():
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1275
            root = self.TypesTree.AddRoot(infos["name"])
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1276
        self.GenerateTypesTreeBranch(root, infos)
239
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1277
        self.TypesTree.Expand(root)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1278
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1279
    def ResetSelectedItem(self):
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1280
        self.SelectedItem = None
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1281
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1282
    def GenerateTypesTreeBranch(self, root, infos, topology=False):
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1283
        to_delete = []
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1284
        item_name = infos["name"]
512
07a7989f58e4 Fix unwanted translations in TypesTree
laurent
parents: 503
diff changeset
  1285
        if infos["type"] in ITEMS_UNEDITABLE:
07a7989f58e4 Fix unwanted translations in TypesTree
laurent
parents: 503
diff changeset
  1286
            item_name = _(item_name)
07a7989f58e4 Fix unwanted translations in TypesTree
laurent
parents: 503
diff changeset
  1287
        self.TypesTree.SetItemText(root, item_name)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1288
        self.TypesTree.SetPyData(root, infos["type"])
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  1289
        highlight_colours = self.Highlights.get(infos.get("tagname", None), (wx.WHITE, wx.BLACK))
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  1290
        self.TypesTree.SetItemBackgroundColour(root, highlight_colours[0])
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  1291
        self.TypesTree.SetItemTextColour(root, highlight_colours[1])
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1292
        if infos["type"] == ITEM_POU:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1293
            self.TypesTree.SetItemImage(root, self.TreeImageDict[self.Controler.GetPouBodyType(infos["name"])])
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1294
        else:
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1295
            self.TypesTree.SetItemImage(root, self.TreeImageDict[infos["type"]])      
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
  1296
            
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1297
        if wx.VERSION >= (2, 6, 0):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1298
            item, root_cookie = self.TypesTree.GetFirstChild(root)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1299
        else:
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1300
            item, root_cookie = self.TypesTree.GetFirstChild(root, 0)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1301
        for values in infos["values"]:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1302
            if not item.IsOk():
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1303
                item = self.TypesTree.AppendItem(root, "")
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1304
                if wx.Platform != '__WXMSW__':
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1305
                    item, root_cookie = self.TypesTree.GetNextChild(root, root_cookie)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1306
            self.GenerateTypesTreeBranch(item, values)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1307
            item, root_cookie = self.TypesTree.GetNextChild(root, root_cookie)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1308
        while item.IsOk():
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1309
            to_delete.append(item)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1310
            item, root_cookie = self.TypesTree.GetNextChild(root, root_cookie)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1311
        for item in to_delete:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1312
            self.TypesTree.Delete(item)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1313
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1314
    def SelectTypesTreeItem(self, tagname):
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1315
        if self.TypesTree is not None:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1316
            root = self.TypesTree.GetRootItem()
231
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  1317
            words = tagname.split("::")
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  1318
            if words[0] == "D":
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1319
                return self.RecursiveTypesTreeItemSelection(root, [(words[1], ITEM_DATATYPE)])
231
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  1320
            elif words[0] == "P":
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1321
                return self.RecursiveTypesTreeItemSelection(root, [(words[1], ITEM_POU)])
231
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  1322
            elif words[0] == "T":
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1323
                return self.RecursiveTypesTreeItemSelection(root, [(words[1], ITEM_POU), (words[2], ITEM_TRANSITION)])
231
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  1324
            elif words[0] == "A":
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1325
                return self.RecursiveTypesTreeItemSelection(root, [(words[1], ITEM_POU), (words[2], ITEM_ACTION)])
231
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  1326
            elif words[0] == "C":
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1327
                return self.RecursiveTypesTreeItemSelection(root, [(words[1], ITEM_CONFIGURATION)])
231
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  1328
            elif words[0] == "R":
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1329
                return self.RecursiveTypesTreeItemSelection(root, [(words[1], ITEM_CONFIGURATION), (words[2], ITEM_RESOURCE)])
231
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  1330
        return False
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  1331
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1332
    def RecursiveTypesTreeItemSelection(self, root, items):
122
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1333
        found = False
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1334
        if self.TypesTree is not None:
122
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1335
            if wx.VERSION >= (2, 6, 0):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1336
                item, root_cookie = self.TypesTree.GetFirstChild(root)
122
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1337
            else:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1338
                item, root_cookie = self.TypesTree.GetFirstChild(root, 0)
122
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1339
            while item.IsOk() and not found:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1340
                if (self.TypesTree.GetItemText(item), self.TypesTree.GetPyData(item)) == items[0]:
122
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1341
                    if len(items) == 1:
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1342
                        self.SelectedItem = item
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1343
                        self.TypesTree.SelectItem(item)
122
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1344
                        wx.CallAfter(self.ResetSelectedItem)
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1345
                        return True
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1346
                    else:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1347
                        found = self.RecursiveTypesTreeItemSelection(item, items[1:])
122
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1348
                else:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1349
                    found = self.RecursiveTypesTreeItemSelection(item, items)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1350
                item, root_cookie = self.TypesTree.GetNextChild(root, root_cookie)
122
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1351
        return found
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1352
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1353
    def OnTypesTreeBeginDrag(self, event):
131
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1354
        if wx.Platform == '__WXMSW__':
134
6715fd958477 Bug on Drag and Drop fixed
lbessard
parents: 133
diff changeset
  1355
            self.SelectedItem = event.GetItem()
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1356
        if self.SelectedItem is not None and self.TypesTree.GetPyData(self.SelectedItem) == ITEM_POU:
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1357
            block_name = self.TypesTree.GetItemText(self.SelectedItem)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1358
            block_type = self.Controler.GetPouType(block_name)
53
4988262d03e3 *** empty log message ***
lbessard
parents: 52
diff changeset
  1359
            if block_type != "program":
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  1360
                data = wx.TextDataObject(str((block_name, block_type, "")))
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1361
                dragSource = wx.DropSource(self.TypesTree)
53
4988262d03e3 *** empty log message ***
lbessard
parents: 52
diff changeset
  1362
                dragSource.SetData(data)
4988262d03e3 *** empty log message ***
lbessard
parents: 52
diff changeset
  1363
                dragSource.DoDragDrop()
122
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1364
            self.ResetSelectedItem()
7
f1691e685c49 Adding error messages on LD editor
lbessard
parents: 6
diff changeset
  1365
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1366
    def OnTypesTreeItemBeginEdit(self, event):
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1367
        selected = event.GetItem()
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1368
        if self.TypesTree.GetPyData(selected) in ITEMS_UNEDITABLE:
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1369
            event.Veto()
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1370
        else:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1371
            event.Skip()
107
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1372
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1373
    def OnTypesTreeItemEndEdit(self, event):
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1374
        message = None
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1375
        abort = False
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1376
        new_name = event.GetLabel()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1377
        if new_name != "":
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1378
            if not TestIdentifier(new_name):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1379
                message = _("\"%s\" is not a valid identifier!")%new_name
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1380
            elif new_name.upper() in IEC_KEYWORDS:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1381
                message = _("\"%s\" is a keyword. It can't be used!")%new_name
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1382
            else:
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1383
                item = event.GetItem()
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1384
                old_name = self.TypesTree.GetItemText(item)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1385
                itemtype = self.TypesTree.GetPyData(item)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1386
                if itemtype == ITEM_PROJECT:
56
7187e1c00975 Adding support for Undo/Redo and Unsaved File On Close detection
lbessard
parents: 55
diff changeset
  1387
                    self.Controler.SetProjectProperties(name = new_name)
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  1388
                elif itemtype == ITEM_DATATYPE:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1389
                    if new_name.upper() in [name.upper() for name in self.Controler.GetProjectDataTypeNames() if name != old_name]:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1390
                        message = _("\"%s\" data type already exists!")%new_name
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  1391
                        abort = True
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  1392
                    if not abort:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  1393
                        self.Controler.ChangeDataTypeName(old_name, new_name)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  1394
                        self.RefreshEditorNames(self.Controler.ComputeDataTypeName(old_name), 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  1395
                                                self.Controler.ComputeDataTypeName(new_name))
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  1396
                        self.RefreshPageTitles()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1397
                elif itemtype == ITEM_POU:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1398
                    if new_name.upper() in [name.upper() for name in self.Controler.GetProjectPouNames() if name != old_name]:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1399
                        message = _("\"%s\" pou already exists!")%new_name
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1400
                        abort = True
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1401
                    elif new_name.upper() in [name.upper() for name in self.Controler.GetProjectPouVariables()]:
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  1402
                        messageDialog = wx.MessageDialog(self, _("A POU has an element named \"%s\". This could cause a conflict. Do you wish to continue?")%new_name, _("Error"), wx.YES_NO|wx.ICON_QUESTION)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  1403
                        if messageDialog.ShowModal() == wx.ID_NO:
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1404
                            abort = True
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1405
                        messageDialog.Destroy()
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1406
                    if not abort:
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1407
                        self.Controler.ChangePouName(old_name, new_name)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  1408
                        self.RefreshEditorNames(self.Controler.ComputePouName(old_name), 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  1409
                                                self.Controler.ComputePouName(new_name))
357
e5501b3337db Little bugs fixed
greg
parents: 352
diff changeset
  1410
                        self.RefreshLibraryTree()
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1411
                        self.RefreshPageTitles()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1412
                elif itemtype == ITEM_TRANSITION:
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1413
                    pou_name = GetParentName(self.TypesTree, item, ITEM_POU)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1414
                    if new_name.upper() in [name.upper() for name in self.Controler.GetProjectPouNames()]:
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  1415
                        message = _("A POU named \"%s\" already exists!")%new_name
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1416
                    elif new_name.upper() in [name.upper() for name in self.Controler.GetProjectPouVariables(pou_name) if name != old_name]:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1417
                        message = _("A variable with \"%s\" as name already exists in this pou!")%new_name
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1418
                    else:
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1419
                        self.Controler.ChangePouTransitionName(pou_name, old_name, new_name)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  1420
                        self.RefreshEditorNames(self.Controler.ComputePouTransitionName(pou_name, old_name), 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  1421
                                                self.Controler.ComputePouTransitionName(pou_name, new_name))
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1422
                        self.RefreshPageTitles()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1423
                elif itemtype == ITEM_ACTION:
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1424
                    pou_name = GetParentName(self.TypesTree, item, ITEM_POU)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1425
                    if new_name.upper() in [name.upper() for name in self.Controler.GetProjectPouNames()]:
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  1426
                        message = _("A POU named \"%s\" already exists!")%new_name
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1427
                    elif new_name.upper() in [name.upper() for name in self.Controler.GetProjectPouVariables(pou_name) if name != old_name]:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1428
                        message = _("A variable with \"%s\" as name already exists in this pou!")%new_name
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1429
                    else:
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1430
                        self.Controler.ChangePouActionName(pou_name, old_name, new_name)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  1431
                        self.RefreshEditorNames(self.Controler.ComputePouActionName(pou_name, old_name), 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  1432
                                                self.Controler.ComputePouActionName(pou_name, new_name))
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1433
                        self.RefreshPageTitles()
107
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1434
                elif itemtype == ITEM_CONFIGURATION:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1435
                    if new_name.upper() in [name.upper() for name in self.Controler.GetProjectConfigNames() if name != old_name]:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1436
                        message = _("\"%s\" config already exists!")%new_name
107
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1437
                        abort = True
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1438
                    elif new_name.upper() in [name.upper() for name in self.Controler.GetProjectPouNames()]:
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  1439
                        messageDialog = wx.MessageDialog(self, _("There is a POU named \"%s\". This could cause a conflict. Do you wish to continue?")%new_name, _("Error"), wx.YES_NO|wx.ICON_QUESTION)
107
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1440
                        if messageDialog.ShowModal() == wx.ID_NO:
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1441
                            abort = True
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1442
                        messageDialog.Destroy()
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1443
                    elif new_name.upper() in [name.upper() for name in self.Controler.GetProjectPouVariables()]:
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  1444
                        messageDialog = wx.MessageDialog(self, _("A POU has an element named \"%s\". This could cause a conflict. Do you wish to continue?")%new_name, _("Error"), wx.YES_NO|wx.ICON_QUESTION)
107
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1445
                        if messageDialog.ShowModal() == wx.ID_NO:
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1446
                            abort = True
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1447
                        messageDialog.Destroy()
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1448
                    if not abort:
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1449
                        self.Controler.ChangeConfigurationName(old_name, new_name)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  1450
                        self.RefreshEditorNames(self.Controler.ComputeConfigurationName(old_name), 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  1451
                                                self.Controler.ComputeConfigurationName(new_name))
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1452
                        self.RefreshPageTitles()
107
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1453
                elif itemtype == ITEM_RESOURCE:
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1454
                    config_name = GetParentName(self.TypesTree, item, ITEM_CONFIGURATION)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1455
                    if new_name.upper() in [name.upper() for name in self.Controler.GetProjectConfigNames()]:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1456
                        message = _("\"%s\" config already exists!")%new_name
107
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1457
                        abort = True
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1458
                    elif new_name.upper() in [name.upper() for name in self.Controler.GetProjectPouNames()]:
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  1459
                        messageDialog = wx.MessageDialog(self, _("There is a POU named \"%s\". This could cause a conflict. Do you wish to continue?")%new_name, _("Error"), wx.YES_NO|wx.ICON_QUESTION)
107
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1460
                        if messageDialog.ShowModal() == wx.ID_NO:
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1461
                            abort = True
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1462
                        messageDialog.Destroy()
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1463
                    elif new_name.upper() in [name.upper() for name in self.Controler.GetProjectPouVariables()]:
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  1464
                        messageDialog = wx.MessageDialog(self, _("A POU has an element named \"%s\". This could cause a conflict. Do you wish to continue?")%new_name, _("Error"), wx.YES_NO|wx.ICON_QUESTION)
107
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1465
                        if messageDialog.ShowModal() == wx.ID_NO:
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1466
                            abort = True
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1467
                        messageDialog.Destroy()
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1468
                    if not abort:
255eada20688 Lots of bug fixed
lbessard
parents: 102
diff changeset
  1469
                        self.Controler.ChangeConfigurationResourceName(config_name, old_name, new_name)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  1470
                        self.RefreshEditorNames(self.Controler.ComputeConfigurationResourceName(config_name, old_name), 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  1471
                                                self.Controler.ComputeConfigurationResourceName(config_name, new_name))
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1472
                        self.RefreshPageTitles()
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1473
            if message or abort:
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1474
                if message:
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1475
                    self.ShowErrorMessage(message)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1476
                item = event.GetItem()
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1477
                wx.CallAfter(self.TypesTree.EditLabel, item)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1478
                event.Veto()
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1479
            else:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1480
                wx.CallAfter(self.RefreshTypesTree)
350
f7958989e055 Adding support for Enable/Disable Undo/Redo
greg
parents: 347
diff changeset
  1481
                self.RefreshEditor()
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1482
                self._Refresh(TITLE, FILEMENU, EDITMENU)
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  1483
                event.Skip()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1484
    
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1485
    def OnTypesTreeItemActivated(self, event):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1486
        selected = event.GetItem()
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1487
        name = self.TypesTree.GetItemText(selected)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1488
        data = self.TypesTree.GetPyData(selected)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1489
        if UNEDITABLE_NAMES_DICT.get(name, name) == "Properties":
27
dae55dd9ee14 Current developping version
lbessard
parents: 16
diff changeset
  1490
            self.ShowProperties()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  1491
        if data == ITEM_DATATYPE:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  1492
            self.EditProjectElement(data, self.Controler.ComputeDataTypeName(name))
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  1493
        elif data == ITEM_POU:
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1494
            self.EditProjectElement(data, self.Controler.ComputePouName(name))
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1495
        elif data == ITEM_CONFIGURATION:
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1496
            self.EditProjectElement(data, self.Controler.ComputeConfigurationName(name))
102
85875dcb7754 Adding edit user's POU by double click on block instance
lbessard
parents: 98
diff changeset
  1497
        elif data == ITEM_RESOURCE:
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1498
            config_name = GetParentName(self.TypesTree, selected, ITEM_CONFIGURATION)
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1499
            self.EditProjectElement(data, self.Controler.ComputeConfigurationResourceName(config_name, name))
102
85875dcb7754 Adding edit user's POU by double click on block instance
lbessard
parents: 98
diff changeset
  1500
        elif data in [ITEM_TRANSITION, ITEM_ACTION]:
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1501
            pou_name = GetParentName(self.TypesTree, selected, ITEM_POU)
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1502
            if data == ITEM_TRANSITION:
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1503
                tagname = self.Controler.ComputePouTransitionName(pou_name, name)
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1504
            elif data == ITEM_ACTION:
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1505
                tagname = self.Controler.ComputePouActionName(pou_name, name)
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1506
            self.EditProjectElement(data, tagname)
129
ae2421aa0aa4 Some bugs fixed
lbessard
parents: 128
diff changeset
  1507
        event.Skip()
102
85875dcb7754 Adding edit user's POU by double click on block instance
lbessard
parents: 98
diff changeset
  1508
    
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1509
    def TypesTreeItemSelect(self, select_item):
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1510
        name = self.TypesTree.GetItemText(select_item)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1511
        data = self.TypesTree.GetPyData(select_item)
131
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1512
        if data == ITEM_DATATYPE:
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1513
            self.EditProjectElement(data, self.Controler.ComputeDataTypeName(name), True)
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1514
        elif data == ITEM_POU:
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1515
            self.EditProjectElement(data, self.Controler.ComputePouName(name), True)
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1516
        elif data == ITEM_CONFIGURATION:
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1517
            self.EditProjectElement(data, self.Controler.ComputeConfigurationName(name), True)
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1518
        elif data == ITEM_RESOURCE:
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1519
            config_name = GetParentName(self.TypesTree, select_item, ITEM_CONFIGURATION)
131
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1520
            self.EditProjectElement(data, self.Controler.ComputeConfigurationResourceName(config_name, name), True)
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1521
        elif data in [ITEM_TRANSITION, ITEM_ACTION]:
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1522
            pou_name = GetParentName(self.TypesTree, select_item, ITEM_POU)
131
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1523
            if data == ITEM_TRANSITION:
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1524
                tagname = self.Controler.ComputePouTransitionName(pou_name, name)
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1525
            elif data == ITEM_ACTION:
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1526
                tagname = self.Controler.ComputePouActionName(pou_name, name)
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1527
            self.EditProjectElement(data, tagname, True)
bc534997aecc Bug on Project Tree with Windows fixed
lbessard
parents: 129
diff changeset
  1528
    
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1529
    def OnTypesTreeLeftUp(self, event):
122
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1530
        if self.SelectedItem is not None:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1531
            self.TypesTree.SelectItem(self.SelectedItem)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1532
            self.TypesTreeItemSelect(self.SelectedItem)
122
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1533
            wx.CallAfter(self.ResetSelectedItem)
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1534
        event.Skip()
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1535
    
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1536
    def OnTypesTreeItemSelected(self, event):
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1537
        self.TypesTreeItemSelect(event.GetItem())
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1538
        event.Skip()
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1539
    
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1540
    def OnTypesTreeItemChanging(self, event):
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1541
        if self.TypesTree.GetPyData(event.GetItem()) not in ITEMS_UNEDITABLE and self.SelectedItem is None:
122
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1542
            self.SelectedItem = event.GetItem()
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1543
            event.Veto()
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1544
        else:
e6faee0c271b Adding support for Project Tree selected item following current item edited.
lbessard
parents: 121
diff changeset
  1545
            event.Skip()
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1546
    
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1547
    def EditProjectElement(self, element, tagname, onlyopened = False):
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1548
        openedidx = self.IsOpened(tagname)
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1549
        if openedidx is not None:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1550
            old_selected = self.TabsOpened.GetSelection()
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1551
            if old_selected != openedidx:
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1552
                if old_selected >= 0:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1553
                    self.TabsOpened.GetPage(old_selected).ResetBuffer()
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1554
                self.TabsOpened.SetSelection(openedidx)
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1555
            self._Refresh(FILEMENU, EDITMENU, TOOLBAR, PAGETITLES)
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1556
        elif not onlyopened:
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1557
            new_window = None
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1558
            if element == ITEM_CONFIGURATION:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1559
                new_window = ConfigurationEditor(self.TabsOpened, tagname, self, self.Controler)
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1560
                new_window.SetIcon(self.GenerateBitmap("CONFIGURATION"))
337
388a00b05b6b Bug with maximize on Tab Double Click fixed
lbessard
parents: 335
diff changeset
  1561
                self.AddPage(new_window, "")
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1562
            elif element == ITEM_RESOURCE:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1563
                new_window = ResourceEditor(self.TabsOpened, tagname, self, self.Controler)
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1564
                new_window.SetIcon(self.GenerateBitmap("RESOURCE"))
337
388a00b05b6b Bug with maximize on Tab Double Click fixed
lbessard
parents: 335
diff changeset
  1565
                self.AddPage(new_window, "")
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1566
            elif element in [ITEM_POU, ITEM_TRANSITION, ITEM_ACTION]:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1567
                bodytype = self.Controler.GetEditedElementBodyType(tagname)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1568
                if bodytype == "FBD":
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1569
                    new_window = Viewer(self.TabsOpened, tagname, self, self.Controler)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1570
                    new_window.RefreshScaling(False)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1571
                elif bodytype == "LD":
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1572
                    new_window = LD_Viewer(self.TabsOpened, tagname, self, self.Controler)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1573
                    new_window.RefreshScaling(False)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1574
                elif bodytype == "SFC":
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1575
                    new_window = SFC_Viewer(self.TabsOpened, tagname, self, self.Controler)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1576
                    new_window.RefreshScaling(False)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1577
                else:
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1578
                    new_window = TextViewer(self.TabsOpened, tagname, self, self.Controler)
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1579
                    new_window.SetTextSyntax(bodytype)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1580
                    if bodytype == "IL":
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1581
                        new_window.SetKeywords(IL_KEYWORDS)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1582
                    else:
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1583
                        new_window.SetKeywords(ST_KEYWORDS)
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1584
                if element == ITEM_POU:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1585
                    pou_type = self.Controler.GetEditedElementType(tagname)[1].upper()
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1586
                    icon = self.GenerateBitmap(pou_type, bodytype)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1587
                elif element == ITEM_TRANSITION:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1588
                    icon = self.GenerateBitmap("TRANSITION", bodytype)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1589
                elif element == ITEM_ACTION:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1590
                    icon = self.GenerateBitmap("ACTION", bodytype)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1591
                new_window.SetIcon(icon)
337
388a00b05b6b Bug with maximize on Tab Double Click fixed
lbessard
parents: 335
diff changeset
  1592
                self.AddPage(new_window, "")
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  1593
                words = tagname.split("::")
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1594
            elif element == ITEM_DATATYPE:
451
20464365086e Bug while trying to open DataTypeEditor fixed
laurent
parents: 450
diff changeset
  1595
                new_window = DataTypeEditor(self.TabsOpened, tagname, self, self.Controler)
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1596
                new_window.SetIcon(self.GenerateBitmap("DATATYPE"))
337
388a00b05b6b Bug with maximize on Tab Double Click fixed
lbessard
parents: 335
diff changeset
  1597
                self.AddPage(new_window, "")
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1598
            elif isinstance(element, EditorPanel):
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1599
                new_window = element
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1600
                self.AddPage(element, "")
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1601
            if new_window is not None:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1602
                openedidx = self.IsOpened(tagname)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1603
                old_selected = self.TabsOpened.GetSelection()
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1604
                if old_selected != openedidx:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1605
                    if old_selected >= 0:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1606
                        self.TabsOpened.GetPage(old_selected).ResetBuffer()
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1607
                for i in xrange(self.TabsOpened.GetPageCount()):
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1608
                    window = self.TabsOpened.GetPage(i)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1609
                    if window == new_window:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1610
                        self.TabsOpened.SetSelection(i)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1611
                        window.SetFocus()
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1612
                self.RefreshPageTitles()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1613
    
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1614
    def OnTypesTreeRightUp(self, event):
159
76b2facf14a2 Bug on TreeCtrl right click on Windows fixed
lbessard
parents: 145
diff changeset
  1615
        if wx.Platform == '__WXMSW__':
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1616
            item = event.GetItem()
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1617
        else:
444
865a33108ea0 Bug when Right Click on TypesTreeCtrl item doesn't update selection fixed
laurent
parents: 440
diff changeset
  1618
            item, flags = self.TypesTree.HitTest(wx.Point(event.GetX(), event.GetY()))
865a33108ea0 Bug when Right Click on TypesTreeCtrl item doesn't update selection fixed
laurent
parents: 440
diff changeset
  1619
        self.TypesTree.SelectItem(item)
445
755af2768962 Show edited panel when right click on TypesTree element
laurent
parents: 444
diff changeset
  1620
        self.TypesTreeItemSelect(item)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1621
        name = self.TypesTree.GetItemText(item)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1622
        type = self.TypesTree.GetPyData(item)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1623
        if type == ITEM_POU:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1624
            menu = wx.Menu(title='')
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1625
            if self.Controler.GetPouBodyType(name) == "SFC":
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1626
                new_id = wx.NewId()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1627
                AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Add Transition"))
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1628
                self.Bind(wx.EVT_MENU, self.GenerateAddTransitionFunction(name), id=new_id)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1629
                new_id = wx.NewId()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1630
                AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Add Action"))
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1631
                self.Bind(wx.EVT_MENU, self.GenerateAddActionFunction(name), id=new_id)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1632
                menu.AppendSeparator()
428
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  1633
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1634
            new_id = wx.NewId()
447
6083dcecd2c5 Remove 'Create Pou From' option. Fix somme issues with Copy/Paste POU.
laurent
parents: 445
diff changeset
  1635
            AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Copy POU"))
6083dcecd2c5 Remove 'Create Pou From' option. Fix somme issues with Copy/Paste POU.
laurent
parents: 445
diff changeset
  1636
            self.Bind(wx.EVT_MENU, self.OnCopyPou, id=new_id)
428
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  1637
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1638
            pou_type = self.Controler.GetPouType(name)
275
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  1639
            if pou_type in ["function", "functionBlock"]:
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  1640
                change_menu = wx.Menu(title='')
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  1641
                if pou_type == "function":
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  1642
                    new_id = wx.NewId()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1643
                    AppendMenu(change_menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Function Block"))
275
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  1644
                    self.Bind(wx.EVT_MENU, self.GenerateChangePouTypeFunction(name, "functionBlock"), id=new_id)
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  1645
                new_id = wx.NewId()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1646
                AppendMenu(change_menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Program"))
275
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  1647
                self.Bind(wx.EVT_MENU, self.GenerateChangePouTypeFunction(name, "program"), id=new_id)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1648
                menu.AppendMenu(wx.NewId(), _("Change POU Type To"), change_menu)
274
047e36c63736 Adding support for copying a POU inside a same project
lbessard
parents: 268
diff changeset
  1649
            new_id = wx.NewId()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1650
            AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Rename"))
311
3e22e53878b8 Adding Rename item in TypesTree contextual menu
lbessard
parents: 309
diff changeset
  1651
            self.Bind(wx.EVT_MENU, self.OnRenamePouMenu, id=new_id)
3e22e53878b8 Adding Rename item in TypesTree contextual menu
lbessard
parents: 309
diff changeset
  1652
            new_id = wx.NewId()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1653
            AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Delete"))
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1654
            self.Bind(wx.EVT_MENU, self.OnDeleteMenu, id=new_id)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1655
            self.PopupMenu(menu)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1656
        elif type == ITEM_CONFIGURATION:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1657
            menu = wx.Menu(title='')
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1658
            new_id = wx.NewId()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1659
            AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Add Resource"))
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1660
            self.Bind(wx.EVT_MENU, self.GenerateAddResourceFunction(name), id=new_id)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1661
            new_id = wx.NewId()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1662
            AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Delete"))
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1663
            self.Bind(wx.EVT_MENU, self.OnDeleteMenu, id=new_id)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1664
            self.PopupMenu(menu)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1665
        elif type in [ITEM_DATATYPE, ITEM_TRANSITION, ITEM_ACTION, ITEM_RESOURCE]:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1666
            menu = wx.Menu(title='')
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1667
            new_id = wx.NewId()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1668
            AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Delete"))
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1669
            self.Bind(wx.EVT_MENU, self.OnDeleteMenu, id=new_id)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1670
            self.PopupMenu(menu)
184
d3e6484ebe85 changed the way icons are loaded for both toolbars and treectrl. Now, non editable items have different pyData.
etisserant
parents: 183
diff changeset
  1671
        elif type in ITEMS_UNEDITABLE:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1672
            name = UNEDITABLE_NAMES_DICT[name]
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1673
            if name == "Data Types":
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1674
                menu = wx.Menu(title='')
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1675
                new_id = wx.NewId()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1676
                AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Add DataType"))
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1677
                self.Bind(wx.EVT_MENU, self.OnAddDataTypeMenu, id=new_id)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1678
                self.PopupMenu(menu)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1679
            elif name in ["Functions", "Function Blocks", "Programs"]:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1680
                menu = wx.Menu(title='')
428
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  1681
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1682
                new_id = wx.NewId()
447
6083dcecd2c5 Remove 'Create Pou From' option. Fix somme issues with Copy/Paste POU.
laurent
parents: 445
diff changeset
  1683
                AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Add POU"))
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1684
                self.Bind(wx.EVT_MENU, self.GenerateAddPouFunction({"Functions" : "function", "Function Blocks" : "functionBlock", "Programs" : "program"}[name]), id=new_id)
428
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  1685
447
6083dcecd2c5 Remove 'Create Pou From' option. Fix somme issues with Copy/Paste POU.
laurent
parents: 445
diff changeset
  1686
                new_id = wx.NewId()
6083dcecd2c5 Remove 'Create Pou From' option. Fix somme issues with Copy/Paste POU.
laurent
parents: 445
diff changeset
  1687
                AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Paste POU"))
6083dcecd2c5 Remove 'Create Pou From' option. Fix somme issues with Copy/Paste POU.
laurent
parents: 445
diff changeset
  1688
                self.Bind(wx.EVT_MENU, self.OnPastePou, id=new_id)
428
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  1689
                if self.GetCopyBuffer() is None:
447
6083dcecd2c5 Remove 'Create Pou From' option. Fix somme issues with Copy/Paste POU.
laurent
parents: 445
diff changeset
  1690
                    menu.Enable(new_id, False)
428
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  1691
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1692
                self.PopupMenu(menu)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1693
            elif name == "Configurations":
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1694
                menu = wx.Menu(title='')
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1695
                new_id = wx.NewId()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1696
                AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Add Configuration"))
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1697
                self.Bind(wx.EVT_MENU, self.OnAddConfigurationMenu, id=new_id)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1698
                self.PopupMenu(menu)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1699
            elif name == "Transitions":
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1700
                menu = wx.Menu(title='')
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1701
                new_id = wx.NewId()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1702
                AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Add Transition"))
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1703
                parent = self.TypesTree.GetItemParent(item)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1704
                parent_type = self.TypesTree.GetPyData(parent)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1705
                while parent_type != ITEM_POU:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1706
                    parent = self.TypesTree.GetItemParent(parent)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1707
                    parent_type = self.TypesTree.GetPyData(parent)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1708
                self.Bind(wx.EVT_MENU, self.GenerateAddTransitionFunction(self.TypesTree.GetItemText(parent)), id=new_id)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1709
                self.PopupMenu(menu)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1710
            elif name == "Actions":
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1711
                menu = wx.Menu(title='')
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1712
                new_id = wx.NewId()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1713
                AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Add Action"))
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1714
                parent = self.TypesTree.GetItemParent(item)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1715
                parent_type = self.TypesTree.GetPyData(parent)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1716
                while parent_type != ITEM_POU:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1717
                    parent = self.TypesTree.GetItemParent(parent)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1718
                    parent_type = self.TypesTree.GetPyData(parent)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1719
                self.Bind(wx.EVT_MENU, self.GenerateAddActionFunction(self.TypesTree.GetItemText(parent)), id=new_id)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1720
                self.PopupMenu(menu)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1721
            elif name == "Resources":
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1722
                menu = wx.Menu(title='')
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1723
                new_id = wx.NewId()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1724
                AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Add Resource"))
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1725
                parent = self.TypesTree.GetItemParent(item)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1726
                parent_type = self.TypesTree.GetPyData(parent)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1727
                while parent_type != ITEM_CONFIGURATION:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1728
                    parent = self.TypesTree.GetItemParent(parent)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1729
                    parent_type = self.TypesTree.GetPyData(parent)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1730
                self.Bind(wx.EVT_MENU, self.GenerateAddResourceFunction(self.TypesTree.GetItemText(parent)), id=new_id)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1731
                self.PopupMenu(menu)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1732
        event.Skip()
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1733
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1734
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  1735
#-------------------------------------------------------------------------------
239
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1736
#                         Instances Tree Management Functions
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1737
#-------------------------------------------------------------------------------
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1738
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1739
    def RefreshInstancesTree(self):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1740
        infos = self.Controler.GetProjectTopology(self.EnableDebug)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1741
        root = self.InstancesTree.GetRootItem()
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1742
        if not root.IsOk():
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1743
            root = self.InstancesTree.AddRoot(infos["name"])
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1744
        self.GenerateInstancesTreeBranch(root, infos)
239
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1745
        self.InstancesTree.Expand(root)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1746
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1747
    def GenerateInstancesTreeBranch(self, root, infos):
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1748
        to_delete = []
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1749
        if infos.get("elmt_type", None) is not None:
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1750
            self.InstancesTree.SetItemText(root, "%s (%s)"%(infos["name"], infos["elmt_type"]))
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1751
        else:
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1752
            self.InstancesTree.SetItemText(root, infos["name"])
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1753
        self.InstancesTree.SetPyData(root, (infos["type"], infos.get("tagname", None)))
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  1754
        self.InstancesTree.SetItemImage(root, self.TreeImageDict[infos["type"]])
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1755
            
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1756
        if wx.VERSION >= (2, 6, 0):
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1757
            item, root_cookie = self.InstancesTree.GetFirstChild(root)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1758
        else:
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1759
            item, root_cookie = self.InstancesTree.GetFirstChild(root, 0)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1760
        for values in infos["values"]:
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1761
            if not item.IsOk():
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1762
                item = self.InstancesTree.AppendItem(root, "")
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1763
                if wx.Platform != '__WXMSW__':
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1764
                    item, root_cookie = self.InstancesTree.GetNextChild(root, root_cookie)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1765
            self.GenerateInstancesTreeBranch(item, values)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1766
            item, root_cookie = self.InstancesTree.GetNextChild(root, root_cookie)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1767
        while item.IsOk():
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1768
            to_delete.append(item)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1769
            item, root_cookie = self.InstancesTree.GetNextChild(root, root_cookie)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1770
        for item in to_delete:
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1771
            self.InstancesTree.Delete(item)
472
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  1772
        if infos["type"] in [ITEM_CONFIGURATION, ITEM_RESOURCE]:
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  1773
            self.InstancesTree.Expand(root)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1774
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1775
    def OnInstancesTreeBeginDrag(self, event):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1776
        if self.Controler.DebugAvailable():
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1777
            selected_item = event.GetItem()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1778
            selected_infos = self.InstancesTree.GetPyData(selected_item)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1779
            if selected_item is not None and selected_infos[0] in ITEMS_VARIABLE:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1780
                var_path = self.InstancesTree.GetItemText(selected_item).split(" (")[0]
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1781
                parent_item = self.InstancesTree.GetItemParent(selected_item)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1782
                while self.InstancesTree.GetPyData(parent_item)[0] != ITEM_PROJECT:
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1783
                    parent_name = self.InstancesTree.GetItemText(parent_item).split(" (")[0]
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1784
                    var_path = "%s.%s"%(parent_name, var_path)
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1785
                    parent_item = self.InstancesTree.GetItemParent(parent_item)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1786
                data = wx.TextDataObject(str((var_path, "debug")))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1787
                dragSource = wx.DropSource(self.InstancesTree)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1788
                dragSource.SetData(data)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1789
                dragSource.DoDragDrop()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1790
            event.Skip()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1791
        else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1792
            event.Veto()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1793
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1794
    def OnInstancesTreeItemActivated(self, event):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1795
        if self.Controler.DebugAvailable():
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1796
            selected_item = event.GetItem()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1797
            selected_infos = self.InstancesTree.GetPyData(selected_item)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1798
            if selected_item is not None and selected_infos[0] in [ITEM_FUNCTIONBLOCK, ITEM_PROGRAM, ITEM_TRANSITION, ITEM_ACTION]:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1799
                instance_path = self.InstancesTree.GetItemText(selected_item).split(" (")[0]
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1800
                parent_item = self.InstancesTree.GetItemParent(selected_item)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1801
                while self.InstancesTree.GetPyData(parent_item)[0] != ITEM_PROJECT:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1802
                    parent_name = self.InstancesTree.GetItemText(parent_item).split(" (")[0]
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1803
                    instance_path = "%s.%s"%(parent_name, instance_path)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1804
                    parent_item = self.InstancesTree.GetItemParent(parent_item)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1805
                openedidx = self.IsOpened(instance_path)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1806
                if openedidx is not None:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1807
                    old_selected = self.TabsOpened.GetSelection()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1808
                    if old_selected != openedidx:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1809
                        if old_selected >= 0:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1810
                            self.TabsOpened.GetPage(old_selected).ResetBuffer()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1811
                        self.TabsOpened.SetSelection(openedidx)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1812
                elif selected_infos[1] is not None:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1813
                    bodytype = self.Controler.GetEditedElementBodyType(selected_infos[1], True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1814
                    if bodytype == "FBD":
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1815
                        new_window = Viewer(self.TabsOpened, selected_infos[1], self, self.Controler, True, instance_path)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1816
                        new_window.RefreshScaling(False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1817
                    elif bodytype == "LD":
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1818
                        new_window = LD_Viewer(self.TabsOpened, selected_infos[1], self, self.Controler, True, instance_path)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1819
                        new_window.RefreshScaling(False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1820
                    elif bodytype == "SFC":
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1821
                        new_window = SFC_Viewer(self.TabsOpened, selected_infos[1], self, self.Controler, True, instance_path)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1822
                        new_window.RefreshScaling(False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1823
                    else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1824
                        new_window = TextViewer(self.TabsOpened, selected_infos[1], self, self.Controler, True, instance_path)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1825
                        new_window.SetTextSyntax(bodytype)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1826
                        if bodytype == "IL":
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1827
                            new_window.SetKeywords(IL_KEYWORDS)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1828
                        else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1829
                            new_window.SetKeywords(ST_KEYWORDS)
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1830
                    if selected_infos[0] in [ITEM_FUNCTIONBLOCK, ITEM_PROGRAM]:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1831
                        pou_type = self.Controler.GetEditedElementType(selected_infos[1], True)[1].upper()
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1832
                        icon = self.GenerateBitmap(pou_type, bodytype)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1833
                    elif selected_infos[0] == ITEM_TRANSITION:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1834
                        icon = self.GenerateBitmap("TRANSITION", bodytype)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1835
                    elif selected_infos[0] == ITEM_ACTION:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1836
                        icon = self.GenerateBitmap("ACTION", bodytype)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  1837
                    new_window.SetIcon(icon)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1838
                    self.AddPage(new_window, "")
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1839
                    new_window.SetFocus()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1840
                    self.RefreshPageTitles()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1841
            if selected_item is not None and selected_infos[0] in ITEMS_VARIABLE:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1842
                var_path, var_type = self.InstancesTree.GetItemText(selected_item).split(" (")
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1843
                var_type = var_type.split(")")[0]
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1844
                
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1845
                if self.Controler.IsOfType(var_type, "ANY_NUM", True) or\
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1846
                   self.Controler.IsOfType(var_type, "ANY_BIT", True):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1847
                    parent_item = self.InstancesTree.GetItemParent(selected_item)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1848
                    while self.InstancesTree.GetPyData(parent_item)[0] != ITEM_PROJECT:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1849
                        parent_name = self.InstancesTree.GetItemText(parent_item).split(" (")[0]
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1850
                        var_path = "%s.%s"%(parent_name, var_path)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1851
                        parent_item = self.InstancesTree.GetItemParent(parent_item)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1852
                    
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1853
                    self.OpenGraphicViewer(var_path)
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  1854
        event.Skip()
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  1855
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  1856
    def OpenGraphicViewer(self, var_path):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  1857
        new_window = GraphicViewer(self.TabsOpened, self, self.Controler, var_path)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  1858
        self.AddPage(new_window, "")
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  1859
        new_window.SetFocus()
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  1860
        self.RefreshPageTitles()
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1861
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1862
    def OnInstancesTreeRightUp(self, event):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1863
        if self.Controler.DebugAvailable():
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1864
            if wx.Platform == '__WXMSW__':
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1865
                selected_item = event.GetItem()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1866
            else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1867
                selected_item = self.InstancesTree.GetSelection()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1868
            selected_infos = self.InstancesTree.GetPyData(selected_item)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1869
            if selected_item is not None and selected_infos[0] in ITEMS_VARIABLE:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1870
                var_path, var_type = self.InstancesTree.GetItemText(selected_item).split(" (")
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1871
                var_type = var_type.split(")")[0]
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1872
                
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1873
                if self.Controler.IsOfType(var_type, "ANY_NUM", True) or\
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1874
                   self.Controler.IsOfType(var_type, "ANY_BIT", True):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1875
                    parent_item = self.InstancesTree.GetItemParent(selected_item)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1876
                    while self.InstancesTree.GetPyData(parent_item)[0] != ITEM_PROJECT:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1877
                        parent_name = self.InstancesTree.GetItemText(parent_item).split(" (")[0]
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1878
                        var_path = "%s.%s"%(parent_name, var_path)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1879
                        parent_item = self.InstancesTree.GetItemParent(parent_item)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1880
                    
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1881
                    menu = wx.Menu(title='')
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1882
                    new_id = wx.NewId()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1883
                    AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Graphic Panel"))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1884
                    self.Bind(wx.EVT_MENU, self.AddVariableGraphicFunction(var_path), id=new_id)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1885
                    new_id = wx.NewId()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1886
                    AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("CSV Log"))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1887
                    self.PopupMenu(menu)
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1888
        event.Skip()
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1889
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1890
    def AddVariableGraphicFunction(self, iec_path):
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1891
        def AddVariableGraphic(event):
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  1892
            self.OpenGraphicViewer(iec_path)
301
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1893
            event.Skip()
b5e564608b9e Adding support for Graphic for variable in Debug mode
lbessard
parents: 298
diff changeset
  1894
        return AddVariableGraphic
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1895
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1896
    def SelectInstancesTreeItem(self, root, instancepath):
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1897
        found = False
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1898
        if self.InstancesTree is not None:
262
3b92f0b96d31 Bug with item selection on InstancesTree fixed
lbessard
parents: 260
diff changeset
  1899
            paths = instancepath.split(".", 1)
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1900
            if wx.VERSION >= (2, 6, 0):
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1901
                item, root_cookie = self.InstancesTree.GetFirstChild(root)
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1902
            else:
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1903
                item, root_cookie = self.InstancesTree.GetFirstChild(root, 0)
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1904
            while item.IsOk() and not found:
262
3b92f0b96d31 Bug with item selection on InstancesTree fixed
lbessard
parents: 260
diff changeset
  1905
                name = self.InstancesTree.GetItemText(item).split(" (")[0]
3b92f0b96d31 Bug with item selection on InstancesTree fixed
lbessard
parents: 260
diff changeset
  1906
                if name == paths[0]:
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1907
                    if len(paths) == 1:
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1908
                        self.InstancesTree.SelectItem(item)
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1909
                        return True
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1910
                    else:
262
3b92f0b96d31 Bug with item selection on InstancesTree fixed
lbessard
parents: 260
diff changeset
  1911
                        found = self.SelectInstancesTreeItem(item, paths[1])
3b92f0b96d31 Bug with item selection on InstancesTree fixed
lbessard
parents: 260
diff changeset
  1912
                item, root_cookie = self.InstancesTree.GetNextChild(root, root_cookie)
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1913
        return found
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1914
337
388a00b05b6b Bug with maximize on Tab Double Click fixed
lbessard
parents: 335
diff changeset
  1915
    def ResetGraphicViewers(self):
388a00b05b6b Bug with maximize on Tab Double Click fixed
lbessard
parents: 335
diff changeset
  1916
        for i in xrange(self.TabsOpened.GetPageCount()):
388a00b05b6b Bug with maximize on Tab Double Click fixed
lbessard
parents: 335
diff changeset
  1917
            editor = self.TabsOpened.GetPage(i)
388a00b05b6b Bug with maximize on Tab Double Click fixed
lbessard
parents: 335
diff changeset
  1918
            if isinstance(editor, GraphicViewer):
388a00b05b6b Bug with maximize on Tab Double Click fixed
lbessard
parents: 335
diff changeset
  1919
                editor.ResetView()
388a00b05b6b Bug with maximize on Tab Double Click fixed
lbessard
parents: 335
diff changeset
  1920
479
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  1921
    def CloseDebugTabs(self):
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  1922
        if self.EnableDebug:
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  1923
            idxs = range(self.TabsOpened.GetPageCount())
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  1924
            idxs.reverse()
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  1925
            for idx in idxs:
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  1926
                window = self.TabsOpened.GetPage(idx)
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  1927
                if window.IsDebugging():
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  1928
                    self.TabsOpened.DeletePage(idx)
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  1929
            self.DebugVariablePanel.ResetGrid()
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  1930
    
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  1931
    def AddDebugVariable(self, iec_path):
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  1932
        if self.EnableDebug:
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  1933
            self.DebugVariablePanel.InsertValue(iec_path)
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  1934
            
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  1935
#-------------------------------------------------------------------------------
239
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1936
#                         Library Tree Management Functions
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1937
#-------------------------------------------------------------------------------
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1938
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1939
    def RefreshLibraryTree(self):
605
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1940
        if self.Controler is not None:
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1941
            to_delete = []
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1942
            blocktypes = self.Controler.GetBlockTypes()
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1943
            root = self.LibraryTree.GetRootItem()
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1944
            if not root.IsOk():
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1945
                root = self.LibraryTree.AddRoot("")
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1946
            if wx.VERSION >= (2, 6, 0):
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1947
                category_item, root_cookie = self.LibraryTree.GetFirstChild(root)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1948
            else:
605
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1949
                category_item, root_cookie = self.LibraryTree.GetFirstChild(root, 0)
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1950
            for category in blocktypes:
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1951
                category_name = category["name"]
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1952
                if not category_item.IsOk():
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1953
                    category_item = self.LibraryTree.AppendItem(root, _(category_name))
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1954
                    if wx.Platform != '__WXMSW__':
605
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1955
                        category_item, root_cookie = self.LibraryTree.GetNextChild(root, root_cookie)
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  1956
                else:
605
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1957
                    self.LibraryTree.SetItemText(category_item, _(category_name))
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1958
                self.LibraryTree.SetPyData(category_item, {"type" : CATEGORY})
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1959
                if wx.VERSION >= (2, 6, 0):
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1960
                    blocktype_item, category_cookie = self.LibraryTree.GetFirstChild(category_item)
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1961
                else:
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1962
                    blocktype_item, category_cookie = self.LibraryTree.GetFirstChild(category_item, 0)        
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1963
                for blocktype in category["list"]:
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1964
                    if not blocktype_item.IsOk():
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1965
                        blocktype_item = self.LibraryTree.AppendItem(category_item, blocktype["name"])
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1966
                        if wx.Platform != '__WXMSW__':
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1967
                            blocktype_item, category_cookie = self.LibraryTree.GetNextChild(category_item, category_cookie)
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1968
                    else:
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1969
                        self.LibraryTree.SetItemText(blocktype_item, blocktype["name"])
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1970
                    self.LibraryTree.SetPyData(blocktype_item, {"type" : BLOCK, "block_type" : blocktype["type"], "inputs" : tuple([type for name, type, modifier in blocktype["inputs"]])})
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1971
                    blocktype_item, category_cookie = self.LibraryTree.GetNextChild(category_item, category_cookie)
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1972
                while blocktype_item.IsOk():
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1973
                    to_delete.append(blocktype_item)
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1974
                    blocktype_item, category_cookie = self.LibraryTree.GetNextChild(category_item, category_cookie)
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1975
                category_item, root_cookie = self.LibraryTree.GetNextChild(root, root_cookie)
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1976
            while category_item.IsOk():
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1977
                to_delete.append(category_item)
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1978
                category_item, root_cookie = self.LibraryTree.GetNextChild(root, root_cookie)
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1979
            for item in to_delete:
279c16d017f3 Adding support for loading specific POUs library in LPCBeremiz
laurent
parents: 604
diff changeset
  1980
                self.LibraryTree.Delete(item)
239
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1981
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1982
    def OnLibraryTreeItemSelected(self, event):
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1983
        selected = event.GetItem()
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1984
        pydata = self.LibraryTree.GetPyData(selected)
366
764a7584022c Bug while Drag n' Drop from LibraryTree without selection fixed
greg
parents: 361
diff changeset
  1985
        if pydata is not None and pydata["type"] != CATEGORY:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  1986
            blocktype = self.Controler.GetBlockType(self.LibraryTree.GetItemText(selected), pydata["inputs"])
239
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1987
            if blocktype:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1988
                comment = blocktype["comment"]
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  1989
                self.LibraryComment.SetValue(_(comment) + blocktype.get("usage", ""))
239
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1990
            else:
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1991
                self.LibraryComment.SetValue("")
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1992
        else:
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1993
            self.LibraryComment.SetValue("")
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1994
        event.Skip()
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1995
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1996
    def OnLibraryTreeBeginDrag(self, event):
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1997
        selected = event.GetItem()
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  1998
        pydata = self.LibraryTree.GetPyData(selected)
366
764a7584022c Bug while Drag n' Drop from LibraryTree without selection fixed
greg
parents: 361
diff changeset
  1999
        if pydata is not None and pydata["type"] == BLOCK:
239
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2000
            data = wx.TextDataObject(str((self.LibraryTree.GetItemText(selected), 
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2001
                pydata["block_type"], "", pydata["inputs"])))
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2002
            dragSource = wx.DropSource(self.LibraryTree)
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2003
            dragSource.SetData(data)
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2004
            dragSource.DoDragDrop()
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2005
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2006
#-------------------------------------------------------------------------------
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2007
#                          ToolBar Management Functions
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2008
#-------------------------------------------------------------------------------
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2009
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  2010
    def ResetToolBar(self):
599
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
  2011
        if USE_AUI:
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
  2012
            ToolBar = self.Panes["ToolBar"]
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
  2013
        else:
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
  2014
            ToolBar = self.ToolBar
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
  2015
        
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2016
        for item in self.CurrentToolBar:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2017
            if wx.VERSION >= (2, 6, 0):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2018
                self.Unbind(wx.EVT_MENU, id=item)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2019
            else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2020
                self.Disconnect(id=item, eventType=wx.wxEVT_COMMAND_MENU_SELECTED) 
599
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
  2021
        
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2022
            if ToolBar:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2023
                ToolBar.DeleteTool(item)
599
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
  2024
        
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
  2025
        if ToolBar:
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
  2026
            ToolBar.Realize()
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
  2027
            if USE_AUI:
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
  2028
                self.AUIManager.GetPane("ToolBar").BestSize(ToolBar.GetBestSize())
4bb7b132e15d Fixing standard functions library treectrl in library panel in order to make it similar on all platforms
laurent
parents: 587
diff changeset
  2029
                self.AUIManager.Update()
249
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  2030
d8425712acef Adding support for Debugging in PLCOpenEditor
lbessard
parents: 245
diff changeset
  2031
    def RefreshToolBar(self):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2032
        selected = self.TabsOpened.GetSelection()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2033
        language = None
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2034
        if selected != -1:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2035
            window = self.TabsOpened.GetPage(selected)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2036
            if not window.IsDebugging():
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2037
                language = self.Controler.GetEditedElementBodyType(window.GetTagName())
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2038
        if language is not None and language != self.CurrentLanguage:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2039
            self.ResetToolBar()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2040
            self.CurrentLanguage = language
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2041
            self.CurrentToolBar = []
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2042
            if USE_AUI:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2043
                ToolBar = self.Panes["ToolBar"]
114
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  2044
            else:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2045
                ToolBar = self.ToolBar
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2046
            if ToolBar:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2047
                for radio, modes, id, method, picture, help in ToolBarItems[language]:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2048
                    if modes & self.DrawingMode:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2049
                        if radio or self.DrawingMode == FREEDRAWING_MODE:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2050
                            ToolBar.AddRadioTool(id, wx.Bitmap(os.path.join(CWD, "Images", picture)), wx.NullBitmap, help)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2051
                        else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2052
                            ToolBar.AddSimpleTool(id, wx.Bitmap(os.path.join(CWD, "Images", picture)), help)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2053
                        self.Bind(wx.EVT_TOOL, getattr(self, method), id=id)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2054
                        self.CurrentToolBar.append(id)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2055
                ToolBar.Realize()
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
  2056
                if USE_AUI:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2057
                    self.AUIManager.GetPane("ToolBar").BestSize(ToolBar.GetBestSize())
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2058
                    self.AUIManager.Update()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2059
        elif not language:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2060
            self.ResetToolBar()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2061
            self.CurrentLanguage = language
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2062
        self.ResetCurrentMode()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2063
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2064
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2065
#-------------------------------------------------------------------------------
231
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  2066
#                           ToolBar Items Functions
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2067
#-------------------------------------------------------------------------------
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2068
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2069
    def ResetCurrentMode(self):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2070
        selected = self.TabsOpened.GetSelection()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2071
        if selected != -1:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2072
            window = self.TabsOpened.GetPage(selected)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2073
            window.SetMode(MODE_SELECTION)
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
  2074
        if USE_AUI:
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
  2075
            ToolBar = self.Panes["ToolBar"]
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
  2076
        else:
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2077
            ToolBar = self.ToolBar
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2078
        if ToolBar:
324
9f240641e3f0 Bug with TypesTree Contextual Item Delete item disappear fixed
lbessard
parents: 322
diff changeset
  2079
            ToolBar.ToggleTool(ID_PLCOPENEDITORTOOLBARSELECTION, False)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2080
            ToolBar.ToggleTool(ID_PLCOPENEDITORTOOLBARSELECTION, True)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2081
        
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2082
    def ResetToolToggle(self, id):
292
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
  2083
        if USE_AUI:
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
  2084
            tool = self.Panes["ToolBar"].FindById(id)
800e100038ae Bug on Viewer ScrollBar with AUI fixed
lbessard
parents: 275
diff changeset
  2085
        else:
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2086
            tool = self.ToolBar.FindById(id)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2087
        tool.SetToggle(False)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2088
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2089
    def OnSelectionTool(self, event):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2090
        selected = self.TabsOpened.GetSelection()
56
7187e1c00975 Adding support for Undo/Redo and Unsaved File On Close detection
lbessard
parents: 55
diff changeset
  2091
        if selected != -1:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2092
            self.TabsOpened.GetPage(selected).SetMode(MODE_SELECTION)
575
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
  2093
    
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
  2094
    def OnMotionTool(self, event):
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
  2095
        selected = self.TabsOpened.GetSelection()
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
  2096
        if selected != -1:
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
  2097
            self.TabsOpened.GetPage(selected).SetMode(MODE_MOTION)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2098
    
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2099
    def OnCommentTool(self, event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2100
        self.ResetToolToggle(ID_PLCOPENEDITORTOOLBARCOMMENT)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2101
        selected = self.TabsOpened.GetSelection()
56
7187e1c00975 Adding support for Undo/Redo and Unsaved File On Close detection
lbessard
parents: 55
diff changeset
  2102
        if selected != -1:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2103
            self.TabsOpened.GetPage(selected).SetMode(MODE_COMMENT)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2104
    
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2105
    def OnVariableTool(self, event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2106
        self.ResetToolToggle(ID_PLCOPENEDITORTOOLBARVARIABLE)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2107
        selected = self.TabsOpened.GetSelection()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2108
        if selected != -1:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2109
            self.TabsOpened.GetPage(selected).SetMode(MODE_VARIABLE)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2110
    
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2111
    def OnBlockTool(self, event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2112
        self.ResetToolToggle(ID_PLCOPENEDITORTOOLBARBLOCK)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2113
        selected = self.TabsOpened.GetSelection()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2114
        if selected != -1:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2115
            self.TabsOpened.GetPage(selected).SetMode(MODE_BLOCK)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2116
        
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2117
    def OnConnectionTool(self, event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2118
        self.ResetToolToggle(ID_PLCOPENEDITORTOOLBARCONNECTION)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2119
        selected = self.TabsOpened.GetSelection()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2120
        if selected != -1:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2121
            self.TabsOpened.GetPage(selected).SetMode(MODE_CONNECTION)
575
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
  2122
    
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2123
    def OnPowerRailTool(self, event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2124
        self.ResetToolToggle(ID_PLCOPENEDITORTOOLBARPOWERRAIL)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2125
        selected = self.TabsOpened.GetSelection()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2126
        if selected != -1:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2127
            self.TabsOpened.GetPage(selected).SetMode(MODE_POWERRAIL)
575
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
  2128
    
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2129
    def OnRungTool(self, event):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2130
        selected = self.TabsOpened.GetSelection()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2131
        if selected != -1:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2132
            self.TabsOpened.GetPage(selected).AddLadderRung()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2133
        event.Skip()
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2134
    
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2135
    def OnCoilTool(self, event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2136
        self.ResetToolToggle(ID_PLCOPENEDITORTOOLBARCOIL)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2137
        selected = self.TabsOpened.GetSelection()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2138
        if selected != -1:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2139
            self.TabsOpened.GetPage(selected).SetMode(MODE_COIL)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2140
        event.Skip()
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2141
    
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2142
    def OnContactTool(self, event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2143
        if self.DrawingMode == FREEDRAWING_MODE:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2144
            self.ResetToolToggle(ID_PLCOPENEDITORTOOLBARCONTACT)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2145
        selected = self.TabsOpened.GetSelection()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2146
        if selected != -1:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2147
            if self.DrawingMode == FREEDRAWING_MODE:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2148
                self.TabsOpened.GetPage(selected).SetMode(MODE_CONTACT)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2149
            else:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2150
                self.TabsOpened.GetPage(selected).AddLadderContact()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2151
    
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2152
    def OnBranchTool(self, event): 
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2153
        selected = self.TabsOpened.GetSelection()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2154
        if selected != -1:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2155
            self.TabsOpened.GetPage(selected).AddLadderBranch()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2156
    
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2157
    def OnInitialStepTool(self, event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2158
        self.ResetToolToggle(ID_PLCOPENEDITORTOOLBARINITIALSTEP)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2159
        selected = self.TabsOpened.GetSelection()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2160
        if selected != -1:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2161
            self.TabsOpened.GetPage(selected).SetMode(MODE_INITIALSTEP)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2162
    
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2163
    def OnStepTool(self, event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2164
        if self.GetDrawingMode() == FREEDRAWING_MODE:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2165
            self.ResetToolToggle(ID_PLCOPENEDITORTOOLBARSTEP)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2166
        selected = self.TabsOpened.GetSelection()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2167
        if selected != -1:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2168
            if self.GetDrawingMode() == FREEDRAWING_MODE:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2169
                self.TabsOpened.GetPage(selected).SetMode(MODE_STEP)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2170
            else:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2171
                self.TabsOpened.GetPage(selected).AddStep()
575
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
  2172
    
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2173
    def OnActionBlockTool(self, event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2174
        if self.GetDrawingMode() == FREEDRAWING_MODE:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2175
            self.ResetToolToggle(ID_PLCOPENEDITORTOOLBARACTIONBLOCK)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2176
        selected = self.TabsOpened.GetSelection()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2177
        if selected != -1:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2178
            if self.GetDrawingMode() == FREEDRAWING_MODE:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2179
                self.TabsOpened.GetPage(selected).SetMode(MODE_ACTION)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2180
            else:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2181
                self.TabsOpened.GetPage(selected).AddStepAction()
575
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
  2182
    
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2183
    def OnTransitionTool(self, event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2184
        self.ResetToolToggle(ID_PLCOPENEDITORTOOLBARTRANSITION)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2185
        selected = self.TabsOpened.GetSelection()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2186
        if selected != -1:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2187
            self.TabsOpened.GetPage(selected).SetMode(MODE_TRANSITION)
575
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
  2188
    
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2189
    def OnDivergenceTool(self, event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2190
        if self.GetDrawingMode() == FREEDRAWING_MODE:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2191
            self.ResetToolToggle(ID_PLCOPENEDITORTOOLBARDIVERGENCE)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2192
        selected = self.TabsOpened.GetSelection()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2193
        if selected != -1:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2194
            if self.GetDrawingMode() == FREEDRAWING_MODE:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2195
                self.TabsOpened.GetPage(selected).SetMode(MODE_DIVERGENCE)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2196
            else:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2197
                self.TabsOpened.GetPage(selected).AddDivergence()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2198
    
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2199
    def OnJumpTool(self, event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2200
        if self.GetDrawingMode() == FREEDRAWING_MODE:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2201
            self.ResetToolToggle(ID_PLCOPENEDITORTOOLBARJUMP)
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2202
        selected = self.TabsOpened.GetSelection()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2203
        if selected != -1:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2204
            if self.GetDrawingMode() == FREEDRAWING_MODE:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2205
                self.TabsOpened.GetPage(selected).SetMode(MODE_JUMP)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2206
            else:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2207
                self.TabsOpened.GetPage(selected).AddJump()
575
a7c706b9492e Adding hand tool icon in Toolbar for moving the view
laurent
parents: 571
diff changeset
  2208
    
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2209
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2210
#-------------------------------------------------------------------------------
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2211
#                         Add Project Elements Functions
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2212
#-------------------------------------------------------------------------------
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2213
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  2214
    def OnAddDataTypeMenu(self, event):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2215
        dialog = DataTypeDialog(self, _("Add a new data type"), _("Please enter data type name"), "", wx.OK|wx.CANCEL)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2216
        dialog.SetDataTypeNames(self.Controler.GetProjectDataTypeNames())
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  2217
        if dialog.ShowModal() == wx.ID_OK:
555
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2218
            tagname = self.Controler.ProjectAddDataType(dialog.GetValue())
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2219
            if tagname is not None:
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2220
                self._Refresh(TITLE, FILEMENU, EDITMENU, TYPESTREE)
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2221
                self.EditProjectElement(ITEM_DATATYPE, tagname)
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  2222
        dialog.Destroy()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2223
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2224
    def GenerateAddPouFunction(self, pou_type):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2225
        def OnAddPouMenu(event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2226
            dialog = PouDialog(self, pou_type)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2227
            dialog.SetPouNames(self.Controler.GetProjectPouNames())
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2228
            dialog.SetPouElementNames(self.Controler.GetProjectPouVariables())
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2229
            if dialog.ShowModal() == wx.ID_OK:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2230
                values = dialog.GetValues()
555
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2231
                tagname = self.Controler.ProjectAddPou(values["pouName"], values["pouType"], values["language"])
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2232
                if tagname is not None:
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2233
                    self._Refresh(TITLE, FILEMENU, EDITMENU, TYPESTREE, LIBRARYTREE)
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2234
                    self.EditProjectElement(ITEM_POU, tagname)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2235
            dialog.Destroy()
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2236
        return OnAddPouMenu
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2237
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2238
    def GenerateAddTransitionFunction(self, pou_name):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2239
        def OnAddTransitionMenu(event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2240
            dialog = PouTransitionDialog(self)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2241
            dialog.SetPouNames(self.Controler.GetProjectPouNames())
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2242
            dialog.SetPouElementNames(self.Controler.GetProjectPouVariables(pou_name))
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2243
            if dialog.ShowModal() == wx.ID_OK: 
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2244
                values = dialog.GetValues()
555
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2245
                tagname = self.Controler.ProjectAddPouTransition(pou_name, values["transitionName"], values["language"])
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2246
                if tagname is not None:
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2247
                    self._Refresh(TITLE, FILEMENU, EDITMENU, TYPESTREE)
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2248
                    self.EditProjectElement(ITEM_TRANSITION, tagname)
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2249
            dialog.Destroy()
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2250
        return OnAddTransitionMenu
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2251
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2252
    def GenerateAddActionFunction(self, pou_name):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2253
        def OnAddActionMenu(event):
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2254
            dialog = PouActionDialog(self)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2255
            dialog.SetPouNames(self.Controler.GetProjectPouNames())
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2256
            dialog.SetPouElementNames(self.Controler.GetProjectPouVariables(pou_name))
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2257
            if dialog.ShowModal() == wx.ID_OK:
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2258
                values = dialog.GetValues()
555
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2259
                tagname = self.Controler.ProjectAddPouAction(pou_name, values["actionName"], values["language"])
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2260
                if tagname is not None:
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2261
                    self._Refresh(TITLE, FILEMENU, EDITMENU, TYPESTREE)
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2262
                    self.EditProjectElement(ITEM_ACTION, tagname)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2263
            dialog.Destroy()
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2264
        return OnAddActionMenu
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2265
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2266
    def OnAddConfigurationMenu(self, event):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2267
        dialog = ConfigurationNameDialog(self, _("Please enter configuration name"), _("Add new configuration"))
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2268
        dialog.SetPouNames(self.Controler.GetProjectPouNames())
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2269
        dialog.SetPouElementNames(self.Controler.GetProjectPouVariables())
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2270
        if dialog.ShowModal() == wx.ID_OK:
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2271
            value = dialog.GetValue()
555
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2272
            tagname = self.Controler.ProjectAddConfiguration(value)
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2273
            if tagname is not None:
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2274
                self._Refresh(TITLE, FILEMENU, EDITMENU, TYPESTREE, INSTANCESTREE)
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2275
                self.EditProjectElement(ITEM_CONFIGURATION, tagname)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2276
        dialog.Destroy()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2277
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2278
    def GenerateAddResourceFunction(self, config_name):
177
a3f6670949ba fixed bug when add resource
greg
parents: 176
diff changeset
  2279
        def OnAddResourceMenu(event):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2280
            dialog = ResourceNameDialog(self, _("Please enter resource name"), _("Add new resource"))
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2281
            dialog.SetPouNames(self.Controler.GetProjectPouNames())
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2282
            dialog.SetPouElementNames(self.Controler.GetProjectPouVariables())
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2283
            if dialog.ShowModal() == wx.ID_OK:
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2284
                value = dialog.GetValue()
555
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2285
                tagname = self.Controler.ProjectAddConfigurationResource(config_name, value)
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2286
                if tagname is not None:
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2287
                    self._Refresh(TITLE, FILEMENU, EDITMENU, TYPESTREE, INSTANCESTREE)
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2288
                    self.EditProjectElement(ITEM_RESOURCE, tagname)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2289
            dialog.Destroy()
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2290
        return OnAddResourceMenu
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2291
275
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  2292
    def GenerateChangePouTypeFunction(self, name, new_type):
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  2293
        def OnChangePouTypeMenu(event):
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  2294
            selected = self.TypesTree.GetSelection()
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  2295
            if self.TypesTree.GetPyData(selected) == ITEM_POU: 
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  2296
                self.Controler.ProjectChangePouType(name, new_type)
498
5f90349529c9 Bug on FileMenu not refreshed when modifications fixed
laurent
parents: 497
diff changeset
  2297
                self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU, TYPESTREE, LIBRARYTREE)
275
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  2298
        return OnChangePouTypeMenu
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2299
428
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2300
    def OnCopyPou(self, event):
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2301
        selected = self.TypesTree.GetSelection()
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2302
        pou_name = self.TypesTree.GetItemText(selected)
447
6083dcecd2c5 Remove 'Create Pou From' option. Fix somme issues with Copy/Paste POU.
laurent
parents: 445
diff changeset
  2303
        
6083dcecd2c5 Remove 'Create Pou From' option. Fix somme issues with Copy/Paste POU.
laurent
parents: 445
diff changeset
  2304
        pou_xml = self.Controler.GetPouXml(pou_name)
6083dcecd2c5 Remove 'Create Pou From' option. Fix somme issues with Copy/Paste POU.
laurent
parents: 445
diff changeset
  2305
        if pou_xml is not None:
6083dcecd2c5 Remove 'Create Pou From' option. Fix somme issues with Copy/Paste POU.
laurent
parents: 445
diff changeset
  2306
            self.SetCopyBuffer(pou_xml)
6083dcecd2c5 Remove 'Create Pou From' option. Fix somme issues with Copy/Paste POU.
laurent
parents: 445
diff changeset
  2307
            self._Refresh(EDITMENU)
428
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2308
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2309
    def OnPastePou(self, event):
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2310
        selected = self.TypesTree.GetSelection()
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2311
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2312
        pou_type = self.TypesTree.GetItemText(selected)
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2313
        pou_type = UNEDITABLE_NAMES_DICT[pou_type] # one of 'Functions', 'Function Blocks' or 'Programs'
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2314
        pou_type = {'Functions': 'function', 'Function Blocks': 'functionBlock', 'Programs': 'program'}[pou_type]
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2315
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2316
        pou_xml = self.GetCopyBuffer()
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2317
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2318
        result = self.Controler.PastePou(pou_type, pou_xml)
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2319
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2320
        if result is not None:
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2321
            message = wx.MessageDialog(self, result, _("Error"), wx.OK|wx.ICON_ERROR)
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2322
            message.ShowModal()
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2323
            message.Destroy()
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2324
        else:
498
5f90349529c9 Bug on FileMenu not refreshed when modifications fixed
laurent
parents: 497
diff changeset
  2325
            self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU, TYPESTREE, LIBRARYTREE)
428
3b19c34bac04 copy & paste for POUs
b.taylor@willowglen.ca
parents: 427
diff changeset
  2326
275
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  2327
#-------------------------------------------------------------------------------
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  2328
#                        Remove Project Elements Functions
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  2329
#-------------------------------------------------------------------------------
acf474a94136 Adding support for upgrading pou types
lbessard
parents: 274
diff changeset
  2330
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2331
    def OnRemoveDataTypeMenu(self, event):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2332
        selected = self.TypesTree.GetSelection()
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2333
        if self.TypesTree.GetPyData(selected) == ITEM_DATATYPE:
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2334
            name = self.TypesTree.GetItemText(selected)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2335
            if not self.Controler.DataTypeIsUsed(name):
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2336
                self.Controler.ProjectRemoveDataType(name)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2337
                tagname = self.Controler.ComputeDataTypeName(name)
121
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  2338
                idx = self.IsOpened(tagname)
40b91ba978db Improving PLCOpenEditor for using wx2.8 AUI
lbessard
parents: 120
diff changeset
  2339
                if idx is not None:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2340
                    self.TabsOpened.DeletePage(idx)
498
5f90349529c9 Bug on FileMenu not refreshed when modifications fixed
laurent
parents: 497
diff changeset
  2341
                self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU, TYPESTREE)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2342
            else:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2343
                self.ShowErrorMessage(_("\"%s\" is used by one or more POUs. It can't be removed!"))
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2344
311
3e22e53878b8 Adding Rename item in TypesTree contextual menu
lbessard
parents: 309
diff changeset
  2345
    def OnRenamePouMenu(self, event):
3e22e53878b8 Adding Rename item in TypesTree contextual menu
lbessard
parents: 309
diff changeset
  2346
        selected = self.TypesTree.GetSelection()
3e22e53878b8 Adding Rename item in TypesTree contextual menu
lbessard
parents: 309
diff changeset
  2347
        if self.TypesTree.GetPyData(selected) == ITEM_POU: 
3e22e53878b8 Adding Rename item in TypesTree contextual menu
lbessard
parents: 309
diff changeset
  2348
            wx.CallAfter(self.TypesTree.EditLabel, selected)
3e22e53878b8 Adding Rename item in TypesTree contextual menu
lbessard
parents: 309
diff changeset
  2349
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2350
    def OnRemovePouMenu(self, event):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2351
        selected = self.TypesTree.GetSelection()
315
20e169c8efe9 Fix combo box size
lbessard
parents: 313
diff changeset
  2352
        if self.TypesTree.GetPyData(selected) == ITEM_POU:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2353
            name = self.TypesTree.GetItemText(selected)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2354
            if not self.Controler.PouIsUsed(name):
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2355
                self.Controler.ProjectRemovePou(name)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2356
                tagname = self.Controler.ComputePouName(name)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2357
                idx = self.IsOpened(tagname)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2358
                if idx is not None:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2359
                    self.TabsOpened.DeletePage(idx)
498
5f90349529c9 Bug on FileMenu not refreshed when modifications fixed
laurent
parents: 497
diff changeset
  2360
                self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU, TYPESTREE, INSTANCESTREE, LIBRARYTREE)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2361
            else:
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2362
                self.ShowErrorMessage(_("\"%s\" is used by one or more POUs. It can't be removed!"))
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2363
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2364
    def OnRemoveTransitionMenu(self, event):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2365
        selected = self.TypesTree.GetSelection()
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2366
        if self.TypesTree.GetPyData(selected) == ITEM_TRANSITION: 
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2367
            transition = self.TypesTree.GetItemText(selected)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2368
            item = self.TypesTree.GetItemParent(selected)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2369
            item_type = self.TypesTree.GetPyData(item)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2370
            while item_type != ITEM_POU:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2371
                item = self.TypesTree.GetItemParent(item)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2372
                item_type = self.TypesTree.GetPyData(item)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2373
            pou_name = self.TypesTree.GetItemText(item)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2374
            self.Controler.ProjectRemovePouTransition(pou_name, transition)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2375
            tagname = self.Controler.ComputePouTransitionName(pou_name, transition)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2376
            idx = self.IsOpened(tagname)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2377
            if idx is not None:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2378
                self.TabsOpened.DeletePage(idx)
498
5f90349529c9 Bug on FileMenu not refreshed when modifications fixed
laurent
parents: 497
diff changeset
  2379
            self._Refresh(TITLE, FILEMENU, EDITMENU, TYPESTREE)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2380
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2381
    def OnRemoveActionMenu(self, event):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2382
        selected = self.TypesTree.GetSelection()
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2383
        if self.TypesTree.GetPyData(selected) == ITEM_ACTION: 
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2384
            action = self.TypesTree.GetItemText(selected)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2385
            item = self.TypesTree.GetItemParent(selected)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2386
            item_type = self.TypesTree.GetPyData(item)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2387
            while item_type != ITEM_POU:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2388
                item = self.TypesTree.GetItemParent(item)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2389
                item_type = self.TypesTree.GetPyData(item)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2390
            pou_name = self.TypesTree.GetItemText(item)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2391
            self.Controler.ProjectRemovePouAction(pou_name, action)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2392
            tagname = self.Controler.ComputePouActionName(pou_name, action)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2393
            idx = self.IsOpened(tagname)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2394
            if idx is not None:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2395
                self.TabsOpened.DeletePage(idx)
498
5f90349529c9 Bug on FileMenu not refreshed when modifications fixed
laurent
parents: 497
diff changeset
  2396
            self._Refresh(TITLE, FILEMENU, EDITMENU, TYPESTREE)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2397
239
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2398
    def OnRemoveConfigurationMenu(self, event):
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2399
        selected = self.TypesTree.GetSelection()
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2400
        if self.TypesTree.GetPyData(selected) == ITEM_CONFIGURATION: 
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2401
            name = self.TypesTree.GetItemText(selected)
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2402
            self.Controler.ProjectRemoveConfiguration(name)
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2403
            tagname = self.Controler.ComputeConfigurationName(name)
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2404
            idx = self.IsOpened(tagname)
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2405
            if idx is not None:
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2406
                self.TabsOpened.DeletePage(idx)
498
5f90349529c9 Bug on FileMenu not refreshed when modifications fixed
laurent
parents: 497
diff changeset
  2407
            self._Refresh(TITLE, FILEMENU, EDITMENU, TYPESTREE, INSTANCESTREE)
239
d12779e971bd Adding support for function and functionBlock (standard or user) library
lbessard
parents: 235
diff changeset
  2408
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2409
    def OnRemoveResourceMenu(self, event):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2410
        selected = self.TypesTree.GetSelection()
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2411
        if self.TypesTree.GetPyData(selected) == ITEM_RESOURCE:
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2412
            resource = self.TypesTree.GetItemText(selected)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2413
            item = self.TypesTree.GetItemParent(selected)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2414
            item_type = self.TypesTree.GetPyData(item)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2415
            while item_type != ITEM_CONFIGURATION:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2416
                item = self.TypesTree.GetItemParent(item)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2417
                item_type = self.TypesTree.GetPyData(item)
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2418
            config_name = self.TypesTree.GetItemText(item)
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2419
            self.Controler.ProjectRemoveConfigurationResource(config_name, resource)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2420
            tagname = self.Controler.ComputeConfigurationResourceName(config_name, selected)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2421
            idx = self.IsOpened(tagname)
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2422
            if idx is not None:
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2423
                self.TabsOpened.DeletePage(idx)
498
5f90349529c9 Bug on FileMenu not refreshed when modifications fixed
laurent
parents: 497
diff changeset
  2424
            self._Refresh(TITLE, FILEMENU, EDITMENU, TYPESTREE, INSTANCESTREE)
190
f37abf3ee358 added to helpmenu : about + plcopen + plcopeneditor
greg
parents: 186
diff changeset
  2425
    
f37abf3ee358 added to helpmenu : about + plcopen + plcopeneditor
greg
parents: 186
diff changeset
  2426
    def OnPLCOpenEditorMenu(self, event):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2427
        wx.MessageBox(_("No documentation available.\nComing soon."))
190
f37abf3ee358 added to helpmenu : about + plcopen + plcopeneditor
greg
parents: 186
diff changeset
  2428
        
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2429
    def OnPLCOpenMenu(self, event):
190
f37abf3ee358 added to helpmenu : about + plcopen + plcopeneditor
greg
parents: 186
diff changeset
  2430
        open_pdf(os.path.join(CWD, "plcopen", "TC6_XML_V101.pdf"))
f37abf3ee358 added to helpmenu : about + plcopen + plcopeneditor
greg
parents: 186
diff changeset
  2431
    
f37abf3ee358 added to helpmenu : about + plcopen + plcopeneditor
greg
parents: 186
diff changeset
  2432
    def OnAboutMenu(self, event):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2433
        OpenHtmlFrame(self,_("About PLCOpenEditor"), os.path.join(CWD, "doc","about.html"), wx.Size(350, 350))
231
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  2434
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  2435
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  2436
#-------------------------------------------------------------------------------
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2437
#                        Highlights showing functions
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2438
#-------------------------------------------------------------------------------
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2439
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2440
    def ShowHighlight(self, infos, start, end, highlight_type):
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2441
        self.SelectTypesTreeItem(infos[0])
231
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  2442
        if infos[1] == "name":
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2443
            self.Highlights[infos[0]] = highlight_type
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2444
            self.RefreshTypesTree()
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2445
            self.TypesTree.Unselect()
231
fc2d6cbb8b39 Adding support for highlighing compiling errors from matiec
lbessard
parents: 223
diff changeset
  2446
        else:
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2447
            self.EditProjectElement(self.Controler.GetElementType(infos[0]), infos[0])
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  2448
            selected = self.TabsOpened.GetSelection()
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  2449
            if selected != -1:
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  2450
                viewer = self.TabsOpened.GetPage(selected)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  2451
                viewer.AddHighlight(infos[1:], start, end, highlight_type)
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2452
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2453
    def ShowError(self, infos, start, end):
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2454
        self.ShowHighlight(infos, start, end, ERROR_HIGHLIGHT)
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2455
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2456
    def ShowSearchResult(self, infos, start, end):
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2457
        self.ShowHighlight(infos, start, end, SEARCH_RESULT_HIGHLIGHT)
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2458
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2459
    def ClearHighlights(self, highlight_type=None):
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2460
        if highlight_type is None:
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2461
            self.Highlights = {}
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2462
        else:
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2463
            self.Highlights = dict([(name, highlight) for name, highlight in self.Highlights.iteritems() if highlight != highlight_type])
235
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2464
        self.RefreshTypesTree()
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2465
        for i in xrange(self.TabsOpened.GetPageCount()):
7b58a3b5b6ec Change in layout from AuiMDIParentFrame to AuiNotebook
lbessard
parents: 231
diff changeset
  2466
            viewer = self.TabsOpened.GetPage(i)
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2467
            viewer.ClearHighlights(highlight_type)
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2468
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2469
    def ClearErrors(self):
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2470
        self.ClearHighlights(ERROR_HIGHLIGHT)
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2471
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2472
    def ClearSearchResults(self):
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 563
diff changeset
  2473
        self.ClearHighlights(SEARCH_RESULT_HIGHLIGHT)
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  2474
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2475
#-------------------------------------------------------------------------------
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2476
#                            PLCOpenEditor Main Class
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2477
#-------------------------------------------------------------------------------
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2478
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2479
class PLCOpenEditor(IDEFrame):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2480
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2481
    # Compatibility function for wx versions < 2.6
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2482
    if wx.VERSION < (2, 6, 0):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2483
        def Bind(self, event, function, id = None):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2484
            if id is not None:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2485
                event(self, id, function)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2486
            else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2487
                event(self, function)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2488
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2489
    def _init_coll_FileMenu_Items(self, parent):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2490
        AppendMenu(parent, help='', id=wx.ID_NEW,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2491
              kind=wx.ITEM_NORMAL, text=_(u'New\tCTRL+N'))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2492
        AppendMenu(parent, help='', id=wx.ID_OPEN,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2493
              kind=wx.ITEM_NORMAL, text=_(u'Open\tCTRL+O'))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2494
        AppendMenu(parent, help='', id=wx.ID_CLOSE,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2495
              kind=wx.ITEM_NORMAL, text=_(u'Close Tab\tCTRL+W'))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2496
        AppendMenu(parent, help='', id=wx.ID_CLOSE_ALL,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2497
              kind=wx.ITEM_NORMAL, text=_(u'Close Project'))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2498
        parent.AppendSeparator()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2499
        AppendMenu(parent, help='', id=wx.ID_SAVE,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2500
              kind=wx.ITEM_NORMAL, text=_(u'Save\tCTRL+S'))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2501
        AppendMenu(parent, help='', id=wx.ID_SAVEAS,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2502
              kind=wx.ITEM_NORMAL, text=_(u'Save As...\tCTRL+SHIFT+S'))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2503
        AppendMenu(parent, help='', id=ID_PLCOPENEDITORFILEMENUGENERATE,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2504
              kind=wx.ITEM_NORMAL, text=_(u'Generate Program\tCTRL+G'))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2505
        parent.AppendSeparator()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2506
        AppendMenu(parent, help='', id=wx.ID_PAGE_SETUP,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2507
              kind=wx.ITEM_NORMAL, text=_(u'Page Setup'))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2508
        AppendMenu(parent, help='', id=wx.ID_PREVIEW,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2509
              kind=wx.ITEM_NORMAL, text=_(u'Preview'))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2510
        AppendMenu(parent, help='', id=wx.ID_PRINT,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2511
              kind=wx.ITEM_NORMAL, text=_(u'Print'))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2512
        parent.AppendSeparator()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2513
        AppendMenu(parent, help='', id=wx.ID_PROPERTIES,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2514
              kind=wx.ITEM_NORMAL, text=_(u'Properties'))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2515
        parent.AppendSeparator()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2516
        AppendMenu(parent, help='', id=wx.ID_EXIT,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2517
              kind=wx.ITEM_NORMAL, text=_(u'Quit\tCTRL+Q'))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2518
        
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2519
        self.Bind(wx.EVT_MENU, self.OnNewProjectMenu, id=wx.ID_NEW)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2520
        self.Bind(wx.EVT_MENU, self.OnOpenProjectMenu, id=wx.ID_OPEN)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2521
        self.Bind(wx.EVT_MENU, self.OnCloseTabMenu, id=wx.ID_CLOSE)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2522
        self.Bind(wx.EVT_MENU, self.OnCloseProjectMenu, id=wx.ID_CLOSE_ALL)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2523
        self.Bind(wx.EVT_MENU, self.OnSaveProjectMenu, id=wx.ID_SAVE)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2524
        self.Bind(wx.EVT_MENU, self.OnSaveProjectAsMenu, id=wx.ID_SAVEAS)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2525
        self.Bind(wx.EVT_MENU, self.OnGenerateProgramMenu,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2526
              id=ID_PLCOPENEDITORFILEMENUGENERATE)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2527
        self.Bind(wx.EVT_MENU, self.OnPageSetupMenu, id=wx.ID_PAGE_SETUP)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2528
        self.Bind(wx.EVT_MENU, self.OnPreviewMenu, id=wx.ID_PREVIEW)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2529
        self.Bind(wx.EVT_MENU, self.OnPrintMenu, id=wx.ID_PRINT)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2530
        self.Bind(wx.EVT_MENU, self.OnPropertiesMenu, id=wx.ID_PROPERTIES)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2531
        self.Bind(wx.EVT_MENU, self.OnQuitMenu, id=wx.ID_EXIT)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2532
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2533
    def _init_coll_HelpMenu_Items(self, parent):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2534
        AppendMenu(parent, help='', id=wx.ID_HELP, 
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2535
            kind=wx.ITEM_NORMAL, text=_(u'PLCOpenEditor\tF1'))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2536
        #AppendMenu(parent, help='', id=wx.ID_HELP_CONTENTS,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2537
        #      kind=wx.ITEM_NORMAL, text=u'PLCOpen\tF2')
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2538
        #AppendMenu(parent, help='', id=wx.ID_HELP_CONTEXT,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2539
        #      kind=wx.ITEM_NORMAL, text=u'IEC 61131-3\tF3')
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2540
        AppendMenu(parent, help='', id=wx.ID_ABOUT,
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2541
            kind=wx.ITEM_NORMAL, text=_(u'About'))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2542
        self.Bind(wx.EVT_MENU, self.OnPLCOpenEditorMenu, id=wx.ID_HELP)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2543
        #self.Bind(wx.EVT_MENU, self.OnPLCOpenMenu, id=wx.ID_HELP_CONTENTS)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2544
        self.Bind(wx.EVT_MENU, self.OnAboutMenu, id=wx.ID_ABOUT)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2545
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2546
    ## Constructor of the PLCOpenEditor class.
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2547
    #  @param parent The parent window.
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2548
    #  @param controler The controler been used by PLCOpenEditor (default: None).
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2549
    #  @param fileOpen The filepath to open if no controler defined (default: None).
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2550
    #  @param debug The filepath to open if no controler defined (default: False).
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2551
    def __init__(self, parent, fileOpen = None):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2552
        IDEFrame.__init__(self, parent)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2553
        
500
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2554
        result = None
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2555
        
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2556
        # Open the filepath if defined
438
eebcf66f2d5a Bug when opening unknown file at starting fixed
laurent
parents: 434
diff changeset
  2557
        if fileOpen is not None and os.path.isfile(fileOpen):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2558
            # Create a new controller
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2559
            self.Controler = PLCControler()
500
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2560
            result = self.Controler.OpenXMLFile(fileOpen)
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2561
            if result is None:
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2562
                self._Refresh(TYPESTREE, INSTANCESTREE, LIBRARYTREE)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2563
        
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2564
        # Define PLCOpenEditor icon
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2565
        self.SetIcon(wx.Icon(os.path.join(CWD,"Images", "poe.ico"),wx.BITMAP_TYPE_ICO))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2566
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2567
        self.Bind(wx.EVT_CLOSE, self.OnCloseFrame)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2568
        
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2569
        self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU, DISPLAYMENU)
500
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2570
        
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2571
        if result is not None:
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2572
            self.ShowErrorMessage(result)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2573
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2574
    def OnCloseFrame(self, event):
450
b31d1dfb407b Fix messages on DialogBox title while asking for project saving when closing project
laurent
parents: 447
diff changeset
  2575
        if self.Controler is None or self.CheckSaveBeforeClosing(_("Close Application")):
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2576
            if USE_AUI:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2577
                self.AUIManager.UnInit()
535
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
  2578
            
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
  2579
            self.SaveFrameSize()
08f32198e932 Adding support for saving frame size while closing and restore it at next launch
laurent
parents: 534
diff changeset
  2580
            
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2581
            event.Skip()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2582
        else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2583
            event.Veto()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2584
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2585
    def RefreshTitle(self):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2586
        name = _("PLCOpenEditor")
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2587
        if self.Controler is not None:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2588
            self.SetTitle("%s - %s"%(name, self.Controler.GetFilename()))
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2589
        else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2590
            self.SetTitle(name)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2591
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2592
#-------------------------------------------------------------------------------
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2593
#                            File Menu Functions
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2594
#-------------------------------------------------------------------------------
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2595
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2596
    def RefreshFileMenu(self):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2597
        if self.Controler is not None:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2598
            selected = self.TabsOpened.GetSelection()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2599
            if selected >= 0:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2600
                graphic_viewer = isinstance(self.TabsOpened.GetPage(selected), Viewer)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2601
            else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2602
                graphic_viewer = False
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2603
            if self.TabsOpened.GetPageCount() > 0:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2604
                self.FileMenu.Enable(wx.ID_CLOSE, True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2605
                if graphic_viewer:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2606
                    self.FileMenu.Enable(wx.ID_PREVIEW, True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2607
                    self.FileMenu.Enable(wx.ID_PRINT, True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2608
                else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2609
                    self.FileMenu.Enable(wx.ID_PREVIEW, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2610
                    self.FileMenu.Enable(wx.ID_PRINT, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2611
            else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2612
                self.FileMenu.Enable(wx.ID_CLOSE, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2613
                self.FileMenu.Enable(wx.ID_PREVIEW, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2614
                self.FileMenu.Enable(wx.ID_PRINT, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2615
            self.FileMenu.Enable(wx.ID_PAGE_SETUP, True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2616
            self.FileMenu.Enable(wx.ID_SAVE, True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2617
            self.FileMenu.Enable(wx.ID_PROPERTIES, True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2618
            self.FileMenu.Enable(wx.ID_CLOSE_ALL, True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2619
            self.FileMenu.Enable(wx.ID_SAVEAS, True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2620
            self.FileMenu.Enable(ID_PLCOPENEDITORFILEMENUGENERATE, True)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2621
        else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2622
            self.FileMenu.Enable(wx.ID_CLOSE, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2623
            self.FileMenu.Enable(wx.ID_PAGE_SETUP, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2624
            self.FileMenu.Enable(wx.ID_PREVIEW, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2625
            self.FileMenu.Enable(wx.ID_PRINT, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2626
            self.FileMenu.Enable(wx.ID_SAVE, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2627
            self.FileMenu.Enable(wx.ID_PROPERTIES, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2628
            self.FileMenu.Enable(wx.ID_CLOSE_ALL, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2629
            self.FileMenu.Enable(wx.ID_SAVEAS, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2630
            self.FileMenu.Enable(ID_PLCOPENEDITORFILEMENUGENERATE, False)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2631
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2632
    def OnNewProjectMenu(self, event):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2633
        if self.Controler is not None and not self.CheckSaveBeforeClosing():
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2634
            return
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2635
        dialog = ProjectDialog(self)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2636
        if dialog.ShowModal() == wx.ID_OK:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2637
            properties = dialog.GetValues()
411
9ab97d517ae8 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 407
diff changeset
  2638
            self.ResetView()
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2639
            self.Controler = PLCControler()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2640
            self.Controler.CreateNewProject(properties)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2641
            self._Refresh(TITLE, FILEMENU, EDITMENU, TYPESTREE, INSTANCESTREE, 
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2642
                          LIBRARYTREE)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2643
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2644
    def OnOpenProjectMenu(self, event):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2645
        if self.Controler is not None and not self.CheckSaveBeforeClosing():
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2646
            return
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2647
        filepath = ""
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2648
        if self.Controler is not None:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2649
            filepath = self.Controler.GetFilePath()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2650
        if filepath != "":
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2651
            directory = os.path.dirname(filepath)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2652
        else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2653
            directory = os.getcwd()
500
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2654
        
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2655
        result = None
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2656
        
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2657
        dialog = wx.FileDialog(self, _("Choose a file"), directory, "",  _("PLCOpen files (*.xml)|*.xml|All files|*.*"), wx.OPEN)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2658
        if dialog.ShowModal() == wx.ID_OK:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2659
            filepath = dialog.GetPath()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2660
            if os.path.isfile(filepath):
411
9ab97d517ae8 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 407
diff changeset
  2661
                self.ResetView()
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2662
                self.Controler = PLCControler()
500
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2663
                result = self.Controler.OpenXMLFile(filepath)
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2664
                if result is None:
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2665
                    self._Refresh(TYPESTREE, INSTANCESTREE, LIBRARYTREE)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2666
            self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2667
        dialog.Destroy()
500
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2668
        
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2669
        if result is not None:
b3499ff87178 Adding message dialog for PLCOpen XML syntax errors.
laurent
parents: 498
diff changeset
  2670
            self.ShowErrorMessage(result)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2671
    
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2672
    def OnCloseProjectMenu(self, event):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2673
        if not self.CheckSaveBeforeClosing():
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2674
            return
411
9ab97d517ae8 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 407
diff changeset
  2675
        self.ResetView()
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2676
        self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2677
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2678
    def OnSaveProjectMenu(self, event):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2679
        self.SaveProject()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2680
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2681
    def OnSaveProjectAsMenu(self, event):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2682
        self.SaveProjectAs()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2683
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2684
    def OnGenerateProgramMenu(self, event):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2685
        dialog = wx.FileDialog(self, _("Choose a file"), os.getcwd(), self.Controler.GetProgramFilePath(),  _("ST files (*.st)|*.st|All files|*.*"), wx.SAVE|wx.CHANGE_DIR)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2686
        if dialog.ShowModal() == wx.ID_OK:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2687
            filepath = dialog.GetPath()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2688
            message_text = ""
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2689
            header, icon = _("Done"), wx.ICON_INFORMATION
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2690
            if os.path.isdir(os.path.dirname(filepath)):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2691
                program, errors, warnings = self.Controler.GenerateProgram(filepath)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2692
                message_text += "".join([_("warning: %s\n") for warning in warnings])
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2693
                if len(errors) > 0:
540
82fa901a2160 Fix bug when displaying errors when generating textual program in standalone mode
laurent
parents: 538
diff changeset
  2694
                    message_text += "".join([_("error: %s\n") for error in errors])
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2695
                    message_text += _("Can't generate program to file %s!")%filepath
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2696
                    header, icon = _("Error"), wx.ICON_ERROR
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2697
                else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2698
                    message_text += _("Program was successfully generated!")
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2699
            else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2700
                message_text += _("\"%s\" is not a valid folder!")%os.path.dirname(filepath)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2701
                header, icon = _("Error"), wx.ICON_ERROR
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2702
            message = wx.MessageDialog(self, message_text, header, wx.OK|icon)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2703
            message.ShowModal()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2704
            message.Destroy()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2705
        dialog.Destroy()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2706
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2707
    def SaveProject(self):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2708
        result = self.Controler.SaveXMLFile()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2709
        if not result:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2710
            self.SaveProjectAs()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2711
        else:
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  2712
            self._Refresh(TITLE, FILEMENU, PAGETITLES)
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  2713
        
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2714
    def SaveProjectAs(self):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2715
        filepath = self.Controler.GetFilePath()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2716
        if filepath != "":
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2717
            directory, filename = os.path.split(filepath)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2718
        else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2719
            directory, filename = os.getcwd(), "%(projectName)s.xml"%self.Controler.GetProjectProperties()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2720
        dialog = wx.FileDialog(self, _("Choose a file"), directory, filename,  _("PLCOpen files (*.xml)|*.xml|All files|*.*"), wx.SAVE|wx.OVERWRITE_PROMPT)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2721
        if dialog.ShowModal() == wx.ID_OK:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2722
            filepath = dialog.GetPath()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2723
            if os.path.isdir(os.path.dirname(filepath)):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2724
                result = self.Controler.SaveXMLFile(filepath)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2725
                if not result:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2726
                    self.ShowErrorMessage(_("Can't save project to file %s!")%filepath)
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2727
            else:
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2728
                self.ShowErrorMessage(_("\"%s\" is not a valid folder!")%os.path.dirname(filepath))
586
9aa96a36cf33 Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents: 577
diff changeset
  2729
            self._Refresh(TITLE, FILEMENU, PAGETITLES)
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  2730
        dialog.Destroy()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2731
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2732
#-------------------------------------------------------------------------------
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2733
#                            Create Project Dialog
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2734
#-------------------------------------------------------------------------------
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2735
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2736
[ID_SCALINGPANEL, ID_SCALINGPANELXSCALE, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2737
 ID_SCALINGPANELYSCALE, ID_SCALINGPANELSTATICTEXT1, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2738
 ID_SCALINGPANELSTATICTEXT2, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2739
] = [wx.NewId() for _init_ctrls in range(5)]
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2740
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2741
class ScalingPanel(wx.Panel):
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2742
    
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2743
    def _init_coll_ScalingPanelSizer_Items(self, parent):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2744
        parent.AddWindow(self.staticText1, 0, border=10, flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2745
        parent.AddWindow(self.XScale, 0, border=10, flag=wx.GROW|wx.TOP|wx.RIGHT)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2746
        parent.AddWindow(self.staticText2, 0, border=10, flag=wx.ALIGN_CENTER_VERTICAL|wx.BOTTOM|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2747
        parent.AddWindow(self.YScale, 0, border=10, flag=wx.GROW|wx.BOTTOM|wx.RIGHT)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2748
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2749
    def _init_coll_ScalingPanelSizer_Growables(self, parent):
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2750
        parent.AddGrowableCol(1)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2751
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2752
    def _init_sizers(self):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2753
        self.ScalingPanelSizer = wx.FlexGridSizer(cols=2, hgap=5, rows=2, vgap=5)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2754
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2755
        self._init_coll_ScalingPanelSizer_Items(self.ScalingPanelSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2756
        self._init_coll_ScalingPanelSizer_Growables(self.ScalingPanelSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2757
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2758
        self.SetSizer(self.ScalingPanelSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2759
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2760
    def _init_ctrls(self, prnt):
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2761
        wx.Panel.__init__(self, id=ID_SCALINGPANEL,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2762
              name='ScalingPanel', parent=prnt, pos=wx.Point(0, 0),
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  2763
              size=wx.Size(0, 0), style=wx.TAB_TRAVERSAL)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2764
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2765
        self.staticText1 = wx.StaticText(id=ID_SCALINGPANELSTATICTEXT1,
555
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2766
              label=_('Horizontal:'), name='staticText1', parent=self,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2767
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2768
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2769
        self.XScale = wx.SpinCtrl(id=ID_SCALINGPANELXSCALE,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2770
              name='XScale', parent=self, pos=wx.Point(0, 0),
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2771
              size=wx.Size(0, 24), style=0, min=0, max=2**16)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2772
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2773
        self.staticText2 = wx.StaticText(id=ID_SCALINGPANELSTATICTEXT2,
555
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  2774
              label=_('Vertical:'), name='staticText2', parent=self,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2775
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2776
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2777
        self.YScale = wx.SpinCtrl(id=ID_SCALINGPANELYSCALE,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2778
              name='YScale', parent=self, pos=wx.Point(0, 0),
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2779
              size=wx.Size(0, 24), style=0, min=0, max=2**16)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2780
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2781
        self._init_sizers()
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2782
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2783
    def __init__(self, parent):
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2784
        self._init_ctrls(parent)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2785
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2786
    def SetScaling(self, x, y):
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2787
        self.XScale.SetValue(x)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2788
        self.YScale.SetValue(y)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2789
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2790
    def GetScaling(self):
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2791
        return self.XScale.GetValue(), self.YScale.GetValue()
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2792
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2793
[ID_PROJECTDIALOG, ID_PROJECTDIALOGMAINNOTEBOOK, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2794
 ID_PROJECTDIALOGPROJECTPANEL, ID_PROJECTDIALOGAUTHORPANEL, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2795
 ID_PROJECTDIALOGGRAPHICSPANEL, ID_PROJECTDIALOGMISCELLANEOUSPANEL, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2796
 ID_PROJECTDIALOGPROJECTNAME, ID_PROJECTDIALOGPROJECTVERSION, 
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2797
 ID_PROJECTDIALOGPRODUCTNAME, ID_PROJECTDIALOGPRODUCTVERSION, 
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2798
 ID_PROJECTDIALOGPRODUCTRELEASE, ID_PROJECTDIALOGCOMPANYNAME, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2799
 ID_PROJECTDIALOGCOMPANYURL, ID_PROJECTDIALOGAUTHORNAME, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2800
 ID_PROJECTDIALOGORGANIZATION, ID_PROJECTDIALOGLANGUAGE, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2801
 ID_PROJECTDIALOGCONTENTDESCRIPTION, ID_PROJECTDIALOGSCALINGNOTEBOOK, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2802
 ID_PROJECTDIALOGPAGEWIDTH, ID_PROJECTDIALOGPAGEHEIGHT, 
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2803
 ID_PROJECTDIALOGSTATICTEXT1, ID_PROJECTDIALOGSTATICTEXT2, 
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2804
 ID_PROJECTDIALOGSTATICTEXT3, ID_PROJECTDIALOGSTATICTEXT4, 
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2805
 ID_PROJECTDIALOGSTATICTEXT5, ID_PROJECTDIALOGSTATICTEXT6, 
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2806
 ID_PROJECTDIALOGSTATICTEXT7, ID_PROJECTDIALOGSTATICTEXT8, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2807
 ID_PROJECTDIALOGSTATICTEXT9, ID_PROJECTDIALOGSTATICTEXT10, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2808
 ID_PROJECTDIALOGSTATICTEXT11, ID_PROJECTDIALOGSTATICTEXT12, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2809
 ID_PROJECTDIALOGSTATICTEXT13, ID_PROJECTDIALOGSTATICTEXT14, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2810
 ID_PROJECTDIALOGSTATICTEXT15, 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2811
] = [wx.NewId() for _init_ctrls in range(35)]
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2812
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2813
class ProjectDialog(wx.Dialog):
114
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  2814
    if wx.VERSION < (2, 6, 0):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  2815
        def Bind(self, event, function, id = None):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  2816
            if id is not None:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  2817
                event(self, id, function)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  2818
            else:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  2819
                event(self, function)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  2820
                
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2821
    def _init_coll_flexGridSizer1_Items(self, parent):
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2822
        parent.AddSizer(self.MainNotebook, 0, border=0, flag=wx.GROW)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2823
        parent.AddSizer(self.ButtonSizer, 0, border=20, flag=wx.ALIGN_RIGHT|wx.BOTTOM|wx.LEFT|wx.RIGHT)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2824
        
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2825
    def _init_coll_flexGridSizer1_Growables(self, parent):
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2826
        parent.AddGrowableCol(0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2827
        parent.AddGrowableRow(0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2828
    
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2829
    def _init_coll_ProjectPanelSizer_Items(self, parent):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2830
        parent.AddWindow(self.staticText1, 0, border=10, flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2831
        parent.AddWindow(self.ProjectName, 0, border=10, flag=wx.GROW|wx.TOP|wx.RIGHT)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2832
        parent.AddWindow(self.staticText2, 0, border=10, flag=wx.ALIGN_CENTER_VERTICAL|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2833
        parent.AddWindow(self.ProjectVersion, 0, border=10, flag=wx.GROW|wx.RIGHT)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2834
        parent.AddWindow(self.staticText3, 0, border=10, flag=wx.ALIGN_CENTER_VERTICAL|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2835
        parent.AddWindow(self.ProductName, 0, border=10, flag=wx.GROW|wx.RIGHT)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2836
        parent.AddWindow(self.staticText4, 0, border=10, flag=wx.ALIGN_CENTER_VERTICAL|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2837
        parent.AddWindow(self.ProductVersion, 0, border=10, flag=wx.GROW|wx.RIGHT)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2838
        parent.AddWindow(self.staticText5, 0, border=10, flag=wx.ALIGN_CENTER_VERTICAL|wx.BOTTOM|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2839
        parent.AddWindow(self.ProductRelease, 0, border=10, flag=wx.GROW|wx.BOTTOM|wx.RIGHT)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2840
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2841
    def _init_coll_ProjectPanelSizer_Growables(self, parent):
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2842
        parent.AddGrowableCol(1)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2843
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2844
    def _init_coll_AuthorPanelSizer_Items(self, parent):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2845
        parent.AddWindow(self.staticText6, 0, border=10, flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2846
        parent.AddWindow(self.CompanyName, 0, border=10, flag=wx.GROW|wx.TOP|wx.RIGHT)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2847
        parent.AddWindow(self.staticText7, 0, border=10, flag=wx.ALIGN_CENTER_VERTICAL|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2848
        parent.AddWindow(self.CompanyURL, 0, border=10, flag=wx.GROW|wx.RIGHT)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2849
        parent.AddWindow(self.staticText8, 0, border=10, flag=wx.ALIGN_CENTER_VERTICAL|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2850
        parent.AddWindow(self.AuthorName, 0, border=10, flag=wx.GROW|wx.RIGHT)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2851
        parent.AddWindow(self.staticText9, 0, border=10, flag=wx.ALIGN_CENTER_VERTICAL|wx.BOTTOM|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2852
        parent.AddWindow(self.Organization, 0, border=10, flag=wx.GROW|wx.BOTTOM|wx.RIGHT)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2853
    
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2854
    def _init_coll_AuthorPanelSizer_Growables(self, parent):
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2855
        parent.AddGrowableCol(1)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2856
    
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2857
    def _init_coll_GraphicsPanelSizer_Items(self, parent):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2858
        parent.AddWindow(self.staticText12, 0, border=10, flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP|wx.LEFT|wx.RIGHT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2859
        parent.AddSizer(self.GraphicsPageSizeSizer, 0, border=10, flag=wx.GROW|wx.LEFT|wx.RIGHT)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2860
        parent.AddWindow(self.staticText15, 0, border=10, flag=wx.ALIGN_CENTER_VERTICAL|wx.LEFT|wx.RIGHT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2861
        parent.AddWindow(self.ScalingNotebook, 0, border=10, flag=wx.GROW|wx.BOTTOM|wx.LEFT|wx.RIGHT)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2862
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2863
    def _init_coll_GraphicsPanelSizer_Growables(self, parent):
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2864
        parent.AddGrowableCol(0)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2865
        parent.AddGrowableRow(3)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2866
    
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2867
    def _init_coll_GraphicsPageSizeSizer_Items(self, parent):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2868
        parent.AddWindow(self.staticText13, 0, border=12, flag=wx.ALIGN_CENTER_VERTICAL|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2869
        parent.AddWindow(self.PageWidth, 0, border=0, flag=wx.GROW)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2870
        parent.AddWindow(self.staticText14, 0, border=12, flag=wx.ALIGN_CENTER_VERTICAL|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2871
        parent.AddWindow(self.PageHeight, 0, border=0, flag=wx.GROW)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2872
    
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2873
    def _init_coll_GraphicsPageSizeSizer_Growables(self, parent):
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2874
        parent.AddGrowableCol(1)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2875
    
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2876
    def _init_coll_MiscellaneousPanelSizer_Items(self, parent):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2877
        parent.AddWindow(self.staticText10, 0, border=10, flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2878
        parent.AddWindow(self.Language, 0, border=10, flag=wx.GROW|wx.TOP|wx.RIGHT)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2879
        parent.AddWindow(self.staticText11, 0, border=10, flag=wx.BOTTOM|wx.LEFT)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2880
        parent.AddWindow(self.ContentDescription, 0, border=10, flag=wx.GROW|wx.BOTTOM|wx.RIGHT)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2881
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2882
    def _init_coll_MiscellaneousPanelSizer_Growables(self, parent):
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2883
        parent.AddGrowableCol(1)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2884
        parent.AddGrowableRow(1)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2885
        
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2886
    def _init_sizers(self):
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2887
        self.flexGridSizer1 = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=10)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2888
        self.ProjectPanelSizer = wx.FlexGridSizer(cols=2, hgap=5, rows=5, vgap=15)
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2889
        self.AuthorPanelSizer = wx.FlexGridSizer(cols=2, hgap=5, rows=4, vgap=15)
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2890
        self.GraphicsPanelSizer = wx.FlexGridSizer(cols=1, hgap=5, rows=4, vgap=5)
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2891
        self.GraphicsPageSizeSizer = wx.FlexGridSizer(cols=2, hgap=5, rows=2, vgap=5)
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2892
        self.MiscellaneousPanelSizer = wx.FlexGridSizer(cols=2, hgap=5, rows=2, vgap=15)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2893
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2894
        self._init_coll_flexGridSizer1_Items(self.flexGridSizer1)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2895
        self._init_coll_flexGridSizer1_Growables(self.flexGridSizer1)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2896
        self._init_coll_ProjectPanelSizer_Items(self.ProjectPanelSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2897
        self._init_coll_ProjectPanelSizer_Growables(self.ProjectPanelSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2898
        self._init_coll_AuthorPanelSizer_Items(self.AuthorPanelSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2899
        self._init_coll_AuthorPanelSizer_Growables(self.AuthorPanelSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2900
        self._init_coll_GraphicsPanelSizer_Items(self.GraphicsPanelSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2901
        self._init_coll_GraphicsPanelSizer_Growables(self.GraphicsPanelSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2902
        self._init_coll_GraphicsPageSizeSizer_Items(self.GraphicsPageSizeSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2903
        self._init_coll_GraphicsPageSizeSizer_Growables(self.GraphicsPageSizeSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2904
        self._init_coll_MiscellaneousPanelSizer_Items(self.MiscellaneousPanelSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2905
        self._init_coll_MiscellaneousPanelSizer_Growables(self.MiscellaneousPanelSizer)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2906
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2907
        self.SetSizer(self.flexGridSizer1)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2908
        self.ProjectPanel.SetSizer(self.ProjectPanelSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2909
        self.AuthorPanel.SetSizer(self.AuthorPanelSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2910
        self.GraphicsPanel.SetSizer(self.GraphicsPanelSizer)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2911
        self.MiscellaneousPanel.SetSizer(self.MiscellaneousPanelSizer)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2912
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2913
    def _init_ctrls(self, prnt):
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2914
        wx.Dialog.__init__(self, id=ID_PROJECTDIALOG,
534
d506a353b3d3 Fix dialogs positions to stay on the same screen than parent frame
laurent
parents: 518
diff changeset
  2915
              name='ProjectDialog', parent=prnt,
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2916
              size=wx.Size(500, 350), style=wx.DEFAULT_DIALOG_STYLE,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2917
              title=_('Project properties'))
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2918
        self.SetClientSize(wx.Size(500, 350))
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2919
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2920
        self.MainNotebook = wx.Notebook(id=ID_PROJECTDIALOGMAINNOTEBOOK,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2921
                  name='MainNotebook', parent=self, pos=wx.Point(0,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2922
                  0), size=wx.Size(0, 0), style=0)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2923
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2924
        # Project Panel elements
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2925
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2926
        self.ProjectPanel = wx.Panel(id=ID_PROJECTDIALOGPROJECTPANEL,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2927
              name='ProjectPanel', parent=self.MainNotebook, pos=wx.Point(0, 0),
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2928
              size=wx.Size(0, 0), style=wx.TAB_TRAVERSAL)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  2929
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2930
        self.staticText1 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT1,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2931
              label=_('Project Name (required):'), name='staticText1', parent=self.ProjectPanel,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2932
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2933
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2934
        self.ProjectName = wx.TextCtrl(id=ID_PROJECTDIALOGPROJECTNAME,
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2935
              name='ProjectName', parent=self.ProjectPanel, pos=wx.Point(0, 0), 
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2936
              size=wx.Size(0, 24), style=0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2937
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2938
        self.staticText2 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT2,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2939
              label=_('Project Version (optional):'), name='staticText2', parent=self.ProjectPanel,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2940
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2941
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2942
        self.ProjectVersion = wx.TextCtrl(id=ID_PROJECTDIALOGPROJECTVERSION,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2943
              name='ProjectVersion', parent=self.ProjectPanel, pos=wx.Point(0, 0), 
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2944
              size=wx.Size(0, 24), style=0)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2945
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2946
        self.staticText3 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT3,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2947
              label=_('Product Name (required):'), name='staticText3', parent=self.ProjectPanel,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2948
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2949
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2950
        self.ProductName = wx.TextCtrl(id=ID_PROJECTDIALOGPRODUCTNAME,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2951
              name='ProductName', parent=self.ProjectPanel, pos=wx.Point(0, 0),
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2952
              size=wx.Size(0, 24), style=0)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2953
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2954
        self.staticText4 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT4,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2955
              label=_('Product Version (required):'), name='staticText4', parent=self.ProjectPanel,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2956
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2957
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2958
        self.ProductVersion = wx.TextCtrl(id=ID_PROJECTDIALOGPRODUCTVERSION,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2959
              name='ProductVersion', parent=self.ProjectPanel, pos=wx.Point(0, 0),
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2960
              size=wx.Size(0, 24), style=0)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2961
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2962
        self.staticText5 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT5,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2963
              label=_('Product Release (optional):'), name='staticText5', parent=self.ProjectPanel,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2964
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2965
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2966
        self.ProductRelease = wx.TextCtrl(id=ID_PROJECTDIALOGPRODUCTRELEASE,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2967
              name='ProductRelease', parent=self.ProjectPanel, pos=wx.Point(0, 0),
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2968
              size=wx.Size(0, 24), style=0)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2969
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2970
        self.MainNotebook.AddPage(self.ProjectPanel, _("Project"))
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2971
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2972
        # Author Panel elements
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2973
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2974
        self.AuthorPanel = wx.Panel(id=ID_PROJECTDIALOGAUTHORPANEL,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2975
              name='AuthorPanel', parent=self.MainNotebook, pos=wx.Point(0, 0),
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2976
              size=wx.Size(0, 0), style=wx.TAB_TRAVERSAL)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2977
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2978
        self.staticText6 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT6,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2979
              label=_('Company Name (required):'), name='staticText6', parent=self.AuthorPanel,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2980
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2981
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2982
        self.CompanyName = wx.TextCtrl(id=ID_PROJECTDIALOGCOMPANYNAME,
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2983
              name='CompanyName', parent=self.AuthorPanel, pos=wx.Point(0, 0),
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2984
              size=wx.Size(0, 24), style=0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2985
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2986
        self.staticText7 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT7,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2987
              label=_('Company URL (optional):'), name='staticText7', parent=self.AuthorPanel,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2988
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2989
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2990
        self.CompanyURL = wx.TextCtrl(id=ID_PROJECTDIALOGCOMPANYURL,
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2991
              name='CompanyURL', parent=self.AuthorPanel, pos=wx.Point(0, 0),
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2992
              size=wx.Size(0, 24), style=0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2993
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2994
        self.staticText8 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT8,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2995
              label=_('Author Name (optional):'), name='staticText8', parent=self.AuthorPanel,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  2996
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  2997
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2998
        self.AuthorName = wx.TextCtrl(id=ID_PROJECTDIALOGAUTHORNAME,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  2999
              name='AuthorName', parent=self.AuthorPanel, pos=wx.Point(0, 0),
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3000
              size=wx.Size(0, 24), style=0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3001
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3002
        self.staticText9 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT9,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3003
              label=_('Organization (optional):'), name='staticText9', parent=self.AuthorPanel,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3004
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3005
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3006
        self.Organization = wx.TextCtrl(id=ID_PROJECTDIALOGORGANIZATION,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3007
              name='Organization', parent=self.AuthorPanel, pos=wx.Point(0, 0),
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3008
              size=wx.Size(0, 24), style=0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3009
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3010
        self.MainNotebook.AddPage(self.AuthorPanel, _("Author"))
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3011
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3012
        # Graphics Panel elements
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3013
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3014
        self.GraphicsPanel = wx.Panel(id=ID_PROJECTDIALOGGRAPHICSPANEL,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3015
              name='GraphicsPanel', parent=self.MainNotebook, pos=wx.Point(0, 0),
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3016
              size=wx.Size(0, 0), style=wx.TAB_TRAVERSAL)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3017
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3018
        self.staticText12 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT12,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3019
              label=_('Page Size (optional):'), name='staticText12', parent=self.GraphicsPanel,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3020
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3021
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3022
        self.staticText13 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT13,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3023
              label=_('Width:'), name='staticText13', parent=self.GraphicsPanel,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3024
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3025
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3026
        self.PageWidth = wx.SpinCtrl(id=ID_PROJECTDIALOGPAGEWIDTH,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3027
              name='PageWidth', parent=self.GraphicsPanel, pos=wx.Point(0, 0),
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3028
              size=wx.Size(0, 24), style=0, min=0, max=2**16)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3029
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3030
        self.staticText14 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT14,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3031
              label=_('Height:'), name='staticText14', parent=self.GraphicsPanel,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3032
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3033
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3034
        self.PageHeight = wx.SpinCtrl(id=ID_PROJECTDIALOGPAGEHEIGHT,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3035
              name='PageHeight', parent=self.GraphicsPanel, pos=wx.Point(0, 0),
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3036
              size=wx.Size(0, 24), style=0, min=0, max=2**16)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3037
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3038
        self.staticText15 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT15,
555
b6f9d08fd69f Adding support for opening newly created project element
laurent
parents: 540
diff changeset
  3039
              label=_('Grid Resolution:'), name='staticText15', parent=self.GraphicsPanel,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3040
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3041
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3042
        self.ScalingNotebook = wx.Notebook(id=ID_PROJECTDIALOGSCALINGNOTEBOOK,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3043
              name='ScalingNotebook', parent=self.GraphicsPanel, pos=wx.Point(0,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3044
              0), size=wx.Size(0, 0), style=0)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3045
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3046
        self.Scalings = {}
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3047
        for language, translation in [("FBD",_("FBD")), ("LD",_("LD")), ("SFC",_("SFC"))]:
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3048
            window = ScalingPanel(self.ScalingNotebook)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3049
            self.Scalings[language] = window
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3050
            self.ScalingNotebook.AddPage(window, translation)
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3051
        
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3052
        self.MainNotebook.AddPage(self.GraphicsPanel, _("Graphics"))
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3053
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3054
        # Miscellaneous Panel elements
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3055
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3056
        self.MiscellaneousPanel = wx.Panel(id=ID_PROJECTDIALOGMISCELLANEOUSPANEL,
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3057
              name='MiscellaneousPanel', parent=self.MainNotebook, pos=wx.Point(0, 0),
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3058
              size=wx.Size(0, 0), style=wx.TAB_TRAVERSAL)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3059
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3060
        self.staticText10 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT10,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3061
              label=_('Language (optional):'), name='staticText10', parent=self.MiscellaneousPanel,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3062
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3063
304
2df3d31d8059 Replacing wx.Choice by wx.ComboBox
lbessard
parents: 301
diff changeset
  3064
        self.Language = wx.ComboBox(id=ID_PROJECTDIALOGLANGUAGE,
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3065
              name='Language', parent=self.MiscellaneousPanel, pos=wx.Point(0, 0),
346
66fce4b3f7e2 Fix ComboBox height for display in ubuntu
lbessard
parents: 341
diff changeset
  3066
              size=wx.Size(0, 28), style=wx.CB_READONLY)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3067
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3068
        self.staticText11 = wx.StaticText(id=ID_PROJECTDIALOGSTATICTEXT11,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3069
              label=_('Content Description (optional):'), name='staticText11', parent=self.MiscellaneousPanel,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3070
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3071
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3072
        self.ContentDescription = wx.TextCtrl(id=ID_PROJECTDIALOGCONTENTDESCRIPTION,
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3073
              name='ContentDescription', parent=self.MiscellaneousPanel, pos=wx.Point(0, 0),
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3074
              size=wx.Size(0, 24), style=wx.TE_MULTILINE)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3075
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3076
        self.MainNotebook.AddPage(self.MiscellaneousPanel, _("Miscellaneous"))
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3077
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3078
        self.ButtonSizer = self.CreateButtonSizer(wx.OK|wx.CANCEL|wx.CENTRE)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3079
        self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.ButtonSizer.GetAffirmativeButton().GetId())
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3080
        
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3081
        self._init_sizers()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3082
482
4edbbab206a3 Adding support for disable modification of mandatory parameters in ProjectDialog
laurent
parents: 481
diff changeset
  3083
    def __init__(self, parent, enable_required=True):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3084
        self._init_ctrls(parent)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3085
        
482
4edbbab206a3 Adding support for disable modification of mandatory parameters in ProjectDialog
laurent
parents: 481
diff changeset
  3086
        self.ProjectName.Enable(enable_required)
4edbbab206a3 Adding support for disable modification of mandatory parameters in ProjectDialog
laurent
parents: 481
diff changeset
  3087
        self.ProductName.Enable(enable_required)
4edbbab206a3 Adding support for disable modification of mandatory parameters in ProjectDialog
laurent
parents: 481
diff changeset
  3088
        self.ProductVersion.Enable(enable_required)
4edbbab206a3 Adding support for disable modification of mandatory parameters in ProjectDialog
laurent
parents: 481
diff changeset
  3089
        self.CompanyName.Enable(enable_required)
4edbbab206a3 Adding support for disable modification of mandatory parameters in ProjectDialog
laurent
parents: 481
diff changeset
  3090
            
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3091
        languages = ["", "en-US", "fr-FR", "zh-CN"]
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3092
        
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3093
        for language in languages:
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3094
            self.Language.Append(language)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3095
        
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3096
    def OnOK(self, event):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3097
        error = []
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3098
        if self.ProjectName.GetValue() == "":
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3099
            error.append("Project Name")
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3100
        if self.CompanyName.GetValue() == "":
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3101
            error.append("Company Name")
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3102
        if self.ProductName.GetValue() == "":
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3103
            error.append("Product Name")
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3104
        if self.ProductVersion.GetValue() == "":
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3105
            error.append("Product Version")
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3106
        if len(error) > 0:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3107
            text = ""
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3108
            for i, item in enumerate(error):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3109
                if i == 0:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3110
                    text += item
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3111
                elif i == len(error) - 1:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3112
                    text += " and %s"%item
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3113
                else:
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3114
                    text += ", %s"%item
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3115
            message = wx.MessageDialog(self, _("Form isn't complete. %s must be filled!")%text, _("Error"), wx.OK|wx.ICON_ERROR)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3116
            message.ShowModal()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3117
            message.Destroy()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3118
        else:
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3119
            self.EndModal(wx.ID_OK)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3120
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3121
    def SetValues(self, values):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3122
        for item, value in values.items():
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3123
            if item == "projectName":
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3124
                self.ProjectName.SetValue(value)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3125
            elif item == "projectVersion":
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3126
                self.ProjectVersion.SetValue(value)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3127
            elif item == "productName":
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3128
                self.ProductName.SetValue(value)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3129
            elif item == "productVersion":
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3130
                self.ProductVersion.SetValue(value)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3131
            elif item == "productRelease":
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3132
                self.ProductRelease.SetValue(value)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3133
            elif item == "companyName":
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3134
                self.CompanyName.SetValue(value)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3135
            elif item == "companyURL":
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3136
                self.CompanyURL.SetValue(value)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3137
            elif item == "authorName":
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3138
                self.AuthorName.SetValue(value)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3139
            elif item == "organization":
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3140
                self.Organization.SetValue(value)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3141
            elif item == "language":
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3142
                self.Language.SetStringSelection(value)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3143
            elif item == "contentDescription":
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3144
                self.ContentDescription.SetValue(value)
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3145
            elif item == "pageSize":
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3146
                self.PageWidth.SetValue(value[0])
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3147
                self.PageHeight.SetValue(value[1])
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3148
            elif item == "scaling":
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3149
                for language, (x, y) in value.items():
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3150
                    if language in self.Scalings:
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3151
                        self.Scalings[language].SetScaling(x, y)
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3152
    
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3153
    def GetValues(self):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3154
        values = {}
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3155
        values["projectName"] = self.ProjectName.GetValue()
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3156
        if self.ProjectVersion.GetValue() != "":
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3157
            values["projectVersion"] = self.ProjectVersion.GetValue()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3158
        values["productName"] = self.ProductName.GetValue()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3159
        values["productVersion"] = self.ProductVersion.GetValue()
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3160
        if self.ProductRelease.GetValue() != "":
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3161
            values["productRelease"] = self.ProductRelease.GetValue()
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3162
        values["companyName"] = self.CompanyName.GetValue()
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3163
        if self.CompanyURL.GetValue() != "":
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3164
            values["companyURL"] = self.CompanyURL.GetValue()
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3165
        if self.AuthorName.GetValue() != "":
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3166
            values["authorName"] = self.AuthorName.GetValue()
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3167
        if self.Organization.GetValue() != "":
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3168
            values["organization"] = self.Organization.GetValue()
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3169
        if self.Language.GetStringSelection() != "":
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3170
            values["language"] = self.Language.GetStringSelection()
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3171
        if self.ProductRelease.GetValue() != "":
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3172
            values["contentDescription"] = self.ContentDescription.GetValue()
145
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3173
        values["pageSize"] = (self.PageWidth.GetValue(), self.PageHeight.GetValue())
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3174
        values["scaling"] = {}
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3175
        for language in ["FBD", "LD", "SFC"]:
4fb225afddf4 Adding scaling
lbessard
parents: 144
diff changeset
  3176
            values["scaling"][language] = self.Scalings[language].GetScaling()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3177
        return values
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3178
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3179
#-------------------------------------------------------------------------------
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3180
#                          Edit Step Name Dialog
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3181
#-------------------------------------------------------------------------------
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3182
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3183
class DataTypeDialog(wx.TextEntryDialog):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3184
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3185
    if wx.VERSION < (2, 6, 0):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3186
        def Bind(self, event, function, id = None):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3187
            if id is not None:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3188
                event(self, id, function)
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3189
            else:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3190
                event(self, function)
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3191
    
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3192
    def __init__(self, parent, message, caption = _("Please enter text"), defaultValue = "", 
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3193
                       style = wx.OK|wx.CANCEL|wx.CENTRE, pos = wx.DefaultPosition):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3194
        wx.TextEntryDialog.__init__(self, parent, message, caption, defaultValue, style, pos)
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3195
        
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3196
        self.DataTypeNames = []
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3197
        if wx.VERSION >= (2, 8, 0):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3198
            self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.GetSizer().GetItem(2).GetSizer().GetItem(1).GetSizer().GetAffirmativeButton().GetId())
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3199
        elif wx.VERSION >= (2, 6, 0):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3200
            self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.GetSizer().GetItem(3).GetSizer().GetAffirmativeButton().GetId())
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3201
        else:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3202
            self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.GetSizer().GetItem(3).GetSizer().GetChildren()[0].GetSizer().GetChildren()[0].GetWindow().GetId())
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3203
    
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3204
    def OnOK(self, event):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3205
        datatype_name = self.GetSizer().GetItem(1).GetWindow().GetValue()
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3206
        if datatype_name == "":
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3207
            message = wx.MessageDialog(self, _("You must type a name!"), _("Error"), wx.OK|wx.ICON_ERROR)
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3208
            message.ShowModal()
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3209
            message.Destroy()
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3210
        elif not TestIdentifier(datatype_name):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3211
            message = wx.MessageDialog(self, _("\"%s\" is not a valid identifier!")%datatype_name, _("Error"), wx.OK|wx.ICON_ERROR)
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3212
            message.ShowModal()
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3213
            message.Destroy()
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3214
        elif datatype_name.upper() in IEC_KEYWORDS:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3215
            message = wx.MessageDialog(self, _("\"%s\" is a keyword. It can't be used!")%datatype_name, _("Error"), wx.OK|wx.ICON_ERROR)
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3216
            message.ShowModal()
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3217
            message.Destroy()
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3218
        elif datatype_name.upper() in self.DataTypeNames:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3219
            message = wx.MessageDialog(self, _("\"%s\" data type already exists!")%datatype_name, _("Error"), wx.OK|wx.ICON_ERROR)
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3220
            message.ShowModal()
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3221
            message.Destroy()
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3222
        else:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3223
            self.EndModal(wx.ID_OK)
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3224
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3225
    def SetDataTypeNames(self, datatype_names):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3226
        self.DataTypeNames = [datatype_name.upper() for datatype_name in datatype_names]
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3227
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3228
    def GetValue(self):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3229
        return self.GetSizer().GetItem(1).GetWindow().GetValue()
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3230
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 122
diff changeset
  3231
#-------------------------------------------------------------------------------
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3232
#                            Create Pou Dialog
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3233
#-------------------------------------------------------------------------------
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3234
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3235
[ID_POUDIALOG, ID_POUDIALOGPOUNAME, 
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3236
 ID_POUDIALOGPOUTYPE, ID_POUDIALOGLANGUAGE, ID_POUDIALOGSTATICTEXT1,
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3237
 ID_POUDIALOGSTATICTEXT2, ID_POUDIALOGSTATICTEXT3, 
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3238
] = [wx.NewId() for _init_ctrls in range(7)]
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3239
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3240
def GetTransitionLanguages():
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3241
    _ = lambda x : x
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3242
    return [_("IL"), _("ST"), _("LD"), _("FBD")]
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3243
TRANSITION_LANGUAGES_DICT = dict([(_(language), language) for language in GetTransitionLanguages()])
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3244
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3245
def GetPouTypes():
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3246
    _ = lambda x : x
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3247
    return [_("function"), _("functionBlock"), _("program")]
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3248
POU_TYPES_DICT = dict([(_(pou_type), pou_type) for pou_type in GetPouTypes()])
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3249
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3250
def GetPouLanguages():
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3251
    _ = lambda x : x
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3252
    return [_("IL"), _("ST"), _("LD"), _("FBD"), _("SFC")]
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3253
POU_LANGUAGES_DICT = dict([(_(language), language) for language in GetPouLanguages()])
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3254
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3255
class PouDialog(wx.Dialog):
114
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3256
    if wx.VERSION < (2, 6, 0):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3257
        def Bind(self, event, function, id = None):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3258
            if id is not None:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3259
                event(self, id, function)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3260
            else:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3261
                event(self, function)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3262
    
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3263
    def _init_coll_flexGridSizer1_Items(self, parent):
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3264
        parent.AddSizer(self.MainSizer, 0, border=20, flag=wx.GROW|wx.TOP|wx.LEFT|wx.RIGHT)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3265
        parent.AddSizer(self.ButtonSizer, 0, border=20, flag=wx.ALIGN_RIGHT|wx.BOTTOM|wx.LEFT|wx.RIGHT)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3266
        
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3267
    def _init_coll_flexGridSizer1_Growables(self, parent):
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3268
        parent.AddGrowableCol(0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3269
        parent.AddGrowableRow(0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3270
    
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3271
    def _init_coll_MainSizer_Items(self, parent):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3272
        parent.AddWindow(self.staticText1, 0, border=4, flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3273
        parent.AddWindow(self.PouName, 0, border=0, flag=wx.GROW)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3274
        parent.AddWindow(self.staticText2, 0, border=4, flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3275
        parent.AddWindow(self.PouType, 0, border=0, flag=wx.GROW)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3276
        parent.AddWindow(self.staticText3, 0, border=4, flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3277
        parent.AddWindow(self.Language, 0, border=0, flag=wx.GROW)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3278
        
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3279
    def _init_coll_MainSizer_Growables(self, parent):
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3280
        parent.AddGrowableCol(1)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3281
        
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3282
    def _init_sizers(self):
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3283
        self.flexGridSizer1 = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=10)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3284
        self.MainSizer = wx.FlexGridSizer(cols=2, hgap=5, rows=3, vgap=15)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3285
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3286
        self._init_coll_flexGridSizer1_Items(self.flexGridSizer1)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3287
        self._init_coll_flexGridSizer1_Growables(self.flexGridSizer1)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3288
        self._init_coll_MainSizer_Items(self.MainSizer)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3289
        self._init_coll_MainSizer_Growables(self.MainSizer)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3290
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3291
        self.SetSizer(self.flexGridSizer1)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3292
        
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3293
    def _init_ctrls(self, prnt):
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3294
        wx.Dialog.__init__(self, id=ID_POUDIALOG,
534
d506a353b3d3 Fix dialogs positions to stay on the same screen than parent frame
laurent
parents: 518
diff changeset
  3295
              name='PouDialog', parent=prnt,
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3296
              size=wx.Size(300, 200), style=wx.DEFAULT_DIALOG_STYLE,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3297
              title=_('Create a new POU'))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3298
        self.SetClientSize(wx.Size(300, 200))
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3299
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3300
        self.staticText1 = wx.StaticText(id=ID_POUDIALOGSTATICTEXT1,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3301
              label=_('POU Name:'), name='staticText1', parent=self,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3302
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3303
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3304
        self.PouName = wx.TextCtrl(id=ID_POUDIALOGPOUNAME,
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3305
              name='POUName', parent=self, pos=wx.Point(0, 0), 
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3306
              size=wx.Size(0, 24), style=0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3307
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3308
        self.staticText2 = wx.StaticText(id=ID_POUDIALOGSTATICTEXT2,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3309
              label=_('POU Type:'), name='staticText2', parent=self,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3310
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3311
304
2df3d31d8059 Replacing wx.Choice by wx.ComboBox
lbessard
parents: 301
diff changeset
  3312
        self.PouType = wx.ComboBox(id=ID_POUDIALOGPOUTYPE,
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3313
              name='POUType', parent=self, pos=wx.Point(0, 0),
346
66fce4b3f7e2 Fix ComboBox height for display in ubuntu
lbessard
parents: 341
diff changeset
  3314
              size=wx.Size(0, 28), style=wx.CB_READONLY)
304
2df3d31d8059 Replacing wx.Choice by wx.ComboBox
lbessard
parents: 301
diff changeset
  3315
        self.Bind(wx.EVT_COMBOBOX, self.OnTypeChanged, id=ID_POUDIALOGPOUTYPE)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3316
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3317
        self.staticText3 = wx.StaticText(id=ID_POUDIALOGSTATICTEXT3,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3318
              label=_('Language:'), name='staticText3', parent=self,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3319
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3320
304
2df3d31d8059 Replacing wx.Choice by wx.ComboBox
lbessard
parents: 301
diff changeset
  3321
        self.Language = wx.ComboBox(id=ID_POUDIALOGLANGUAGE,
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3322
              name='Language', parent=self, pos=wx.Point(0, 0),
346
66fce4b3f7e2 Fix ComboBox height for display in ubuntu
lbessard
parents: 341
diff changeset
  3323
              size=wx.Size(0, 28), style=wx.CB_READONLY)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3324
        
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3325
        self.ButtonSizer = self.CreateButtonSizer(wx.OK|wx.CANCEL|wx.CENTRE)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3326
        self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.ButtonSizer.GetAffirmativeButton().GetId())
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3327
            
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3328
        self._init_sizers()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3329
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  3330
    def __init__(self, parent, pou_type = None):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3331
        self._init_ctrls(parent)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3332
        
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3333
        for option in GetPouTypes():
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3334
            self.PouType.Append(_(option))
163
e4949f54c5d6 Changing ProjectTree contextual menu and EditMenu
lbessard
parents: 159
diff changeset
  3335
        if pou_type is not None:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3336
            self.PouType.SetStringSelection(_(pou_type))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3337
        self.RefreshLanguage()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3338
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  3339
        self.PouNames = []
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3340
        self.PouElementNames = []
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
  3341
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3342
    def OnOK(self, event):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3343
        error = []
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3344
        pou_name = self.PouName.GetValue()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3345
        if pou_name == "":
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3346
            error.append(_("POU Name"))
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3347
        if self.PouType.GetSelection() == -1:
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3348
            error.append(_("POU Type"))
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3349
        if self.Language.GetSelection() == -1:
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3350
            error.append(_("Language"))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3351
        if len(error) > 0:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3352
            text = ""
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3353
            for i, item in enumerate(error):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3354
                if i == 0:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3355
                    text += item
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3356
                elif i == len(error) - 1:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3357
                    text += _(" and %s")%item
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3358
                else:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3359
                    text += _(", %s")%item 
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3360
            message = wx.MessageDialog(self, _("Form isn't complete. %s must be filled!")%text, _("Error"), wx.OK|wx.ICON_ERROR)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3361
            message.ShowModal()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3362
            message.Destroy()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3363
        elif not TestIdentifier(pou_name):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3364
            message = wx.MessageDialog(self, _("\"%s\" is not a valid identifier!")%pou_name, _("Error"), wx.OK|wx.ICON_ERROR)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3365
            message.ShowModal()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3366
            message.Destroy()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3367
        elif pou_name.upper() in IEC_KEYWORDS:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3368
            message = wx.MessageDialog(self, _("\"%s\" is a keyword. It can't be used!")%pou_name, _("Error"), wx.OK|wx.ICON_ERROR)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3369
            message.ShowModal()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3370
            message.Destroy()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3371
        elif pou_name.upper() in self.PouNames:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3372
            message = wx.MessageDialog(self, _("\"%s\" pou already exists!")%pou_name, _("Error"), wx.OK|wx.ICON_ERROR)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3373
            message.ShowModal()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3374
            message.Destroy()
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3375
        elif pou_name.upper() in self.PouElementNames:
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  3376
            message = wx.MessageDialog(self, _("A POU has an element named \"%s\". This could cause a conflict. Do you wish to continue?")%pou_name, _("Warning"), wx.YES_NO|wx.ICON_EXCLAMATION)
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3377
            result = message.ShowModal()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3378
            message.Destroy()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3379
            if result == wx.ID_YES:
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3380
                self.EndModal(wx.ID_OK)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3381
        else:
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3382
            self.EndModal(wx.ID_OK)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3383
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3384
    def RefreshLanguage(self):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3385
        selection = POU_LANGUAGES_DICT.get(self.Language.GetStringSelection(), "")
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3386
        self.Language.Clear()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3387
        for language in GetPouLanguages():
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3388
            if language != "SFC" or POU_TYPES_DICT[self.PouType.GetStringSelection()] != "function":
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3389
                self.Language.Append(language)
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3390
        if self.Language.FindString(_(selection)) != wx.NOT_FOUND:
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3391
            self.Language.SetStringSelection(_(selection))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3392
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3393
    def OnTypeChanged(self, event):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3394
        self.RefreshLanguage()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3395
        event.Skip()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3396
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3397
    def SetPouNames(self, pou_names):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3398
        self.PouNames = [pou_name.upper() for pou_name in pou_names]
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3399
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3400
    def SetPouElementNames(self, element_names):
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3401
        self.PouElementNames = [element_name.upper() for element_name in element_names]
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3402
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3403
    def SetValues(self, values):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3404
        for item, value in values.items():
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3405
            if item == "pouName":
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3406
                self.PouName.SetValue(value)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3407
            elif item == "pouType":
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3408
                self.PouType.SetStringSelection(_(value))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3409
            elif item == "language":
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3410
                self.Language.SetStringSelection(_(POU_LANGUAGES_DICT))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3411
                
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3412
    def GetValues(self):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3413
        values = {}
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3414
        values["pouName"] = self.PouName.GetValue()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3415
        values["pouType"] = POU_TYPES_DICT[self.PouType.GetStringSelection()]
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3416
        values["language"] = POU_LANGUAGES_DICT[self.Language.GetStringSelection()]
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3417
        return values
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3418
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3419
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3420
#-------------------------------------------------------------------------------
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3421
#                          Create Pou Transition Dialog
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3422
#-------------------------------------------------------------------------------
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3423
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3424
[ID_POUTRANSITIONDIALOG, ID_POUTRANSITIONDIALOGTRANSITIONNAME, 
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3425
 ID_POUTRANSITIONDIALOGLANGUAGE, ID_POUTRANSITIONDIALOGSTATICTEXT1, 
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3426
 ID_POUTRANSITIONDIALOGSTATICTEXT2,
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3427
] = [wx.NewId() for _init_ctrls in range(5)]
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3428
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3429
def GetTransitionLanguages():
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3430
    _ = lambda x : x
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3431
    return [_("IL"), _("ST"), _("LD"), _("FBD")]
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3432
TRANSITION_LANGUAGES_DICT = dict([(_(language), language) for language in GetTransitionLanguages()])
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3433
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3434
class PouTransitionDialog(wx.Dialog):
114
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3435
    if wx.VERSION < (2, 6, 0):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3436
        def Bind(self, event, function, id = None):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3437
            if id is not None:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3438
                event(self, id, function)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3439
            else:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3440
                event(self, function)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3441
    
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3442
    def _init_coll_flexGridSizer1_Items(self, parent):
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3443
        parent.AddSizer(self.MainSizer, 0, border=20, flag=wx.GROW|wx.TOP|wx.LEFT|wx.RIGHT)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3444
        parent.AddSizer(self.ButtonSizer, 0, border=20, flag=wx.ALIGN_RIGHT|wx.BOTTOM|wx.LEFT|wx.RIGHT)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3445
        
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3446
    def _init_coll_flexGridSizer1_Growables(self, parent):
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3447
        parent.AddGrowableCol(0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3448
        parent.AddGrowableRow(0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3449
    
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3450
    def _init_coll_MainSizer_Items(self, parent):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3451
        parent.AddWindow(self.staticText1, 0, border=4, flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3452
        parent.AddWindow(self.TransitionName, 0, border=0, flag=wx.GROW)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3453
        parent.AddWindow(self.staticText2, 0, border=4, flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3454
        parent.AddWindow(self.Language, 0, border=0, flag=wx.GROW)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3455
        
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3456
    def _init_coll_MainSizer_Growables(self, parent):
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3457
        parent.AddGrowableCol(1)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3458
        
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3459
    def _init_sizers(self):
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3460
        self.flexGridSizer1 = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=10)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3461
        self.MainSizer = wx.FlexGridSizer(cols=2, hgap=5, rows=2, vgap=15)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3462
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3463
        self._init_coll_flexGridSizer1_Items(self.flexGridSizer1)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3464
        self._init_coll_flexGridSizer1_Growables(self.flexGridSizer1)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3465
        self._init_coll_MainSizer_Items(self.MainSizer)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3466
        self._init_coll_MainSizer_Growables(self.MainSizer)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3467
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3468
        self.SetSizer(self.flexGridSizer1)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3469
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3470
    def _init_ctrls(self, prnt):
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3471
        wx.Dialog.__init__(self, id=ID_POUTRANSITIONDIALOG,
534
d506a353b3d3 Fix dialogs positions to stay on the same screen than parent frame
laurent
parents: 518
diff changeset
  3472
              name='PouTransitionDialog', parent=prnt,
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3473
              size=wx.Size(350, 200), style=wx.DEFAULT_DIALOG_STYLE,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3474
              title=_('Create a new transition'))
45
42637f721b5b Bugs fixed
lbessard
parents: 42
diff changeset
  3475
        self.SetClientSize(wx.Size(350, 160))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3476
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3477
        self.staticText1 = wx.StaticText(id=ID_POUTRANSITIONDIALOGSTATICTEXT1,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3478
              label=_('Transition Name:'), name='staticText1', parent=self,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3479
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3480
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3481
        self.TransitionName = wx.TextCtrl(id=ID_POUTRANSITIONDIALOGTRANSITIONNAME,
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3482
              name='TransitionName', parent=self, pos=wx.Point(0, 0),
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3483
              size=wx.Size(0, 24), style=0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3484
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3485
        self.staticText2 = wx.StaticText(id=ID_POUTRANSITIONDIALOGSTATICTEXT2,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3486
              label=_('Language:'), name='staticText2', parent=self,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3487
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3488
304
2df3d31d8059 Replacing wx.Choice by wx.ComboBox
lbessard
parents: 301
diff changeset
  3489
        self.Language = wx.ComboBox(id=ID_POUTRANSITIONDIALOGLANGUAGE,
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3490
              name='Language', parent=self, pos=wx.Point(0, 0),
346
66fce4b3f7e2 Fix ComboBox height for display in ubuntu
lbessard
parents: 341
diff changeset
  3491
              size=wx.Size(0, 28), style=wx.CB_READONLY)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3492
        
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3493
        self.ButtonSizer = self.CreateButtonSizer(wx.OK|wx.CANCEL|wx.CENTRE)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3494
        self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.ButtonSizer.GetAffirmativeButton().GetId())
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3495
        
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3496
        self._init_sizers()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3497
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3498
    def __init__(self, parent):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3499
        self._init_ctrls(parent)
45
42637f721b5b Bugs fixed
lbessard
parents: 42
diff changeset
  3500
        
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3501
        for language in GetTransitionLanguages():
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3502
            self.Language.Append(_(language))
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3503
            
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3504
        self.PouNames = []
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3505
        self.PouElementNames = []
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3506
        
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3507
    def OnOK(self, event):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3508
        error = []
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3509
        transition_name = self.TransitionName.GetValue()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3510
        if self.TransitionName.GetValue() == "":
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3511
            error.append(_("Transition Name"))
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3512
        if self.Language.GetSelection() == -1:
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3513
            error.append(_("Language"))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3514
        if len(error) > 0:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3515
            text = ""
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3516
            for i, item in enumerate(error):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3517
                if i == 0:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3518
                    text += item
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3519
                elif i == len(error) - 1:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3520
                    text += _(" and %s")%item
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3521
                else:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3522
                    text += _(", %s")%item 
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3523
            message = wx.MessageDialog(self, _("Form isn't complete. %s must be filled!")%text, _("Error"), wx.OK|wx.ICON_ERROR)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3524
            message.ShowModal()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3525
            message.Destroy()
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3526
        elif not TestIdentifier(transition_name):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3527
            message = wx.MessageDialog(self, _("\"%s\" is not a valid identifier!")%transition_name, _("Error"), wx.OK|wx.ICON_ERROR)
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3528
            message.ShowModal()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3529
            message.Destroy()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3530
        elif transition_name.upper() in IEC_KEYWORDS:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3531
            message = wx.MessageDialog(self, _("\"%s\" is a keyword. It can't be used!")%transition_name, _("Error"), wx.OK|wx.ICON_ERROR)
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3532
            message.ShowModal()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3533
            message.Destroy()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3534
        elif transition_name.upper() in self.PouNames:
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  3535
            message = wx.MessageDialog(self, _("A POU named \"%s\" already exists!")%transition_name, _("Error"), wx.OK|wx.ICON_ERROR)
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3536
            message.ShowModal()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3537
            message.Destroy()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3538
        elif transition_name.upper() in self.PouElementNames:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3539
            message = wx.MessageDialog(self, _("\"%s\" element for this pou already exists!")%transition_name, _("Error"), wx.OK|wx.ICON_ERROR)
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3540
            message.ShowModal()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3541
            message.Destroy()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3542
        else:
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3543
            self.EndModal(wx.ID_OK)
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3544
    
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3545
    def SetPouNames(self, pou_names):
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3546
        self.PouNames = [pou_name.upper() for pou_name in pou_names]
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3547
    
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3548
    def SetPouElementNames(self, pou_names):
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3549
        self.PouElementNames = [pou_name.upper() for pou_name in pou_names]
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3550
    
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3551
    def SetValues(self, values):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3552
        for item, value in values.items():
45
42637f721b5b Bugs fixed
lbessard
parents: 42
diff changeset
  3553
            if item == "transitionName":
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3554
                self.TransitionName.SetValue(value)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3555
            elif item == "language":
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3556
                self.Language.SetSelection(_(value))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3557
                
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3558
    def GetValues(self):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3559
        values = {}
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3560
        values["transitionName"] = self.TransitionName.GetValue()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3561
        values["language"] = TRANSITION_LANGUAGES_DICT[self.Language.GetStringSelection()]
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3562
        return values
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3563
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3564
#-------------------------------------------------------------------------------
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3565
#                          Create Pou Action Dialog
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3566
#-------------------------------------------------------------------------------
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3567
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3568
[ID_POUACTIONDIALOG, ID_POUACTIONDIALOGACTIONNAME, 
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3569
 ID_POUACTIONDIALOGLANGUAGE, ID_POUACTIONDIALOGSTATICTEXT1, 
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3570
 ID_POUACTIONDIALOGSTATICTEXT2, 
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3571
] = [wx.NewId() for _init_ctrls in range(5)]
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3572
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3573
def GetActionLanguages():
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3574
    _ = lambda x : x
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3575
    return [_("IL"), _("ST"), _("LD"), _("FBD")]
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3576
ACTION_LANGUAGES_DICT = dict([(_(language), language) for language in GetActionLanguages()])
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3577
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3578
class PouActionDialog(wx.Dialog):
114
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3579
    if wx.VERSION < (2, 6, 0):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3580
        def Bind(self, event, function, id = None):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3581
            if id is not None:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3582
                event(self, id, function)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3583
            else:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3584
                event(self, function)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3585
    
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3586
    def _init_coll_flexGridSizer1_Items(self, parent):
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3587
        parent.AddSizer(self.MainSizer, 0, border=20, flag=wx.GROW|wx.TOP|wx.LEFT|wx.RIGHT)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3588
        parent.AddSizer(self.ButtonSizer, 0, border=20, flag=wx.ALIGN_RIGHT|wx.BOTTOM|wx.LEFT|wx.RIGHT)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3589
        
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3590
    def _init_coll_flexGridSizer1_Growables(self, parent):
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3591
        parent.AddGrowableCol(0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3592
        parent.AddGrowableRow(0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3593
    
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3594
    def _init_coll_MainSizer_Items(self, parent):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3595
        parent.AddWindow(self.staticText1, 0, border=4, flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3596
        parent.AddWindow(self.ActionName, 0, border=0, flag=wx.GROW)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3597
        parent.AddWindow(self.staticText2, 0, border=4, flag=wx.ALIGN_CENTER_VERTICAL|wx.TOP)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3598
        parent.AddWindow(self.Language, 0, border=0, flag=wx.GROW)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3599
        
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3600
    def _init_coll_MainSizer_Growables(self, parent):
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3601
        parent.AddGrowableCol(1)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3602
        
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3603
    def _init_sizers(self):
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3604
        self.flexGridSizer1 = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=10)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3605
        self.MainSizer = wx.FlexGridSizer(cols=2, hgap=5, rows=2, vgap=15)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3606
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3607
        self._init_coll_flexGridSizer1_Items(self.flexGridSizer1)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3608
        self._init_coll_flexGridSizer1_Growables(self.flexGridSizer1)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3609
        self._init_coll_MainSizer_Items(self.MainSizer)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3610
        self._init_coll_MainSizer_Growables(self.MainSizer)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3611
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3612
        self.SetSizer(self.flexGridSizer1)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3613
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3614
    def _init_ctrls(self, prnt):
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3615
        wx.Dialog.__init__(self, id=ID_POUACTIONDIALOG,
534
d506a353b3d3 Fix dialogs positions to stay on the same screen than parent frame
laurent
parents: 518
diff changeset
  3616
              name='PouActionDialog', parent=prnt,
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3617
              size=wx.Size(320, 200), style=wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3618
              title=_('Create a new action'))
45
42637f721b5b Bugs fixed
lbessard
parents: 42
diff changeset
  3619
        self.SetClientSize(wx.Size(320, 160))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3620
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3621
        self.staticText1 = wx.StaticText(id=ID_POUACTIONDIALOGSTATICTEXT1,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3622
              label=_('Action Name:'), name='staticText1', parent=self,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3623
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3624
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3625
        self.ActionName = wx.TextCtrl(id=ID_POUACTIONDIALOGACTIONNAME,
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3626
              name='ActionName', parent=self, pos=wx.Point(0, 0),
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3627
              size=wx.Size(0, 24), style=0)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3628
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3629
        self.staticText2 = wx.StaticText(id=ID_POUACTIONDIALOGSTATICTEXT2,
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3630
              label=_('Language:'), name='staticText2', parent=self,
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3631
              pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3632
304
2df3d31d8059 Replacing wx.Choice by wx.ComboBox
lbessard
parents: 301
diff changeset
  3633
        self.Language = wx.ComboBox(id=ID_POUACTIONDIALOGLANGUAGE,
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3634
              name='Language', parent=self, pos=wx.Point(0, 0),
346
66fce4b3f7e2 Fix ComboBox height for display in ubuntu
lbessard
parents: 341
diff changeset
  3635
              size=wx.Size(0, 28), style=wx.CB_READONLY)
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3636
        
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3637
        self.ButtonSizer = self.CreateButtonSizer(wx.OK|wx.CANCEL|wx.CENTRE)
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3638
        self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.ButtonSizer.GetAffirmativeButton().GetId())
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3639
        
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3640
        self._init_sizers()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3641
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3642
    def __init__(self, parent):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3643
        self._init_ctrls(parent)
45
42637f721b5b Bugs fixed
lbessard
parents: 42
diff changeset
  3644
        
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3645
        for option in GetActionLanguages():
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3646
            self.Language.Append(_(option))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3647
        
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3648
        self.PouNames = []
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3649
        self.PouElementNames = []
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3650
    
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3651
    def OnOK(self, event):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3652
        error = []
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3653
        action_name = self.ActionName.GetValue()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3654
        if action_name == "":
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3655
            error.append(_("Action Name"))
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3656
        if self.Language.GetSelection() == -1:
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3657
            error.append(_("Language"))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3658
        if len(error) > 0:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3659
            text = ""
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3660
            for i, item in enumerate(error):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3661
                if i == 0:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3662
                    text += item
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3663
                elif i == len(error) - 1:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3664
                    text += _(" and %s")%item
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3665
                else:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3666
                    text += _(", %s")%item 
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3667
            message = wx.MessageDialog(self, _("Form isn't complete. %s must be filled!")%text, _("Error"), wx.OK|wx.ICON_ERROR)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3668
            message.ShowModal()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3669
            message.Destroy()
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3670
        elif not TestIdentifier(action_name):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3671
            message = wx.MessageDialog(self, _("\"%s\" is not a valid identifier!")%action_name, _("Error"), wx.OK|wx.ICON_ERROR)
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3672
            message.ShowModal()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3673
            message.Destroy()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3674
        elif action_name.upper() in IEC_KEYWORDS:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3675
            message = wx.MessageDialog(self, _("\"%s\" is a keyword. It can't be used!")%action_name, _("Error"), wx.OK|wx.ICON_ERROR)
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3676
            message.ShowModal()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3677
            message.Destroy()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3678
        elif action_name.upper() in self.PouNames:
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  3679
            message = wx.MessageDialog(self, _("A POU named \"%s\" already exists!")%action_name, _("Error"), wx.OK|wx.ICON_ERROR)
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3680
            message.ShowModal()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3681
            message.Destroy()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3682
        elif action_name.upper() in self.PouElementNames:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3683
            message = wx.MessageDialog(self, _("\"%s\" element for this pou already exists!")%action_name, _("Error"), wx.OK|wx.ICON_ERROR)
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3684
            message.ShowModal()
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3685
            message.Destroy()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3686
        else:
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  3687
            self.EndModal(wx.ID_OK)
70
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3688
    
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3689
    def SetPouNames(self, pou_names):
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3690
        self.PouNames = [pou_name.upper() for pou_name in pou_names]
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3691
        
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3692
    def SetPouElementNames(self, element_names):
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3693
        self.PouElementNames = [element_name.upper() for element_name in element_names]
0e48629c1e6d Adding support for avoiding name conflicts
lbessard
parents: 68
diff changeset
  3694
        
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3695
    def SetValues(self, values):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3696
        for item, value in values.items():
45
42637f721b5b Bugs fixed
lbessard
parents: 42
diff changeset
  3697
            if item == "actionName":
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3698
                self.ActionName.SetValue(value)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3699
            elif item == "language":
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3700
                self.Language.SetStringSelection(_(value))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3701
                
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3702
    def GetValues(self):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3703
        values = {}
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3704
        values["actionName"] = self.ActionName.GetValue()
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3705
        values["language"] = ACTION_LANGUAGES_DICT[self.Language.GetStringSelection()]
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3706
        return values
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3707
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  3708
#-------------------------------------------------------------------------------
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3709
#                          Configuration Name Dialog
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3710
#-------------------------------------------------------------------------------
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3711
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3712
class ConfigurationNameDialog(wx.TextEntryDialog):
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3713
114
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3714
    if wx.VERSION < (2, 6, 0):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3715
        def Bind(self, event, function, id = None):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3716
            if id is not None:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3717
                event(self, id, function)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3718
            else:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3719
                event(self, function)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3720
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3721
    def __init__(self, parent, message, caption = _("Please enter configuration name"), defaultValue = "", 
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3722
                       style = wx.OK|wx.CANCEL|wx.CENTRE, pos = wx.DefaultPosition):
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3723
        wx.TextEntryDialog.__init__(self, parent, message, caption, defaultValue, style, pos)
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3724
        
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3725
        self.PouNames = []
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3726
        self.PouElementNames = []
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3727
        
144
b67a5de5a24a Adding optimization on Viewer redrawing
lbessard
parents: 138
diff changeset
  3728
        if wx.VERSION >= (2, 8, 0):
b67a5de5a24a Adding optimization on Viewer redrawing
lbessard
parents: 138
diff changeset
  3729
            self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.GetSizer().GetItem(2).GetSizer().GetItem(1).GetSizer().GetAffirmativeButton().GetId())
b67a5de5a24a Adding optimization on Viewer redrawing
lbessard
parents: 138
diff changeset
  3730
        elif wx.VERSION >= (2, 6, 0):
b67a5de5a24a Adding optimization on Viewer redrawing
lbessard
parents: 138
diff changeset
  3731
            self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.GetSizer().GetItem(3).GetSizer().GetAffirmativeButton().GetId())
b67a5de5a24a Adding optimization on Viewer redrawing
lbessard
parents: 138
diff changeset
  3732
        else:
b67a5de5a24a Adding optimization on Viewer redrawing
lbessard
parents: 138
diff changeset
  3733
            self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.GetSizer().GetItem(3).GetSizer().GetChildren()[0].GetSizer().GetChildren()[0].GetWindow().GetId())
b67a5de5a24a Adding optimization on Viewer redrawing
lbessard
parents: 138
diff changeset
  3734
    
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3735
    def OnOK(self, event):
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3736
        config_name = self.GetSizer().GetItem(1).GetWindow().GetValue()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3737
        if config_name == "":
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3738
            message = wx.MessageDialog(self, _("You must type a name!"), _("Error"), wx.OK|wx.ICON_ERROR)
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3739
            message.ShowModal()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3740
            message.Destroy()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3741
        elif not TestIdentifier(config_name):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3742
            message = wx.MessageDialog(self, _("\"%s\" is not a valid identifier!")%config_name, _("Error"), wx.OK|wx.ICON_ERROR)
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3743
            message.ShowModal()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3744
            message.Destroy()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3745
        elif config_name.upper() in IEC_KEYWORDS:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3746
            message = wx.MessageDialog(self, _("\"%s\" is a keyword. It can't be used!")%config_name, _("Error"), wx.OK|wx.ICON_ERROR)
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3747
            message.ShowModal()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3748
            message.Destroy()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3749
        elif config_name.upper() in self.PouNames:
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  3750
            message = wx.MessageDialog(self, _("A POU named \"%s\" already exists!")%config_name, _("Error"), wx.OK|wx.ICON_ERROR)
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3751
            message.ShowModal()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3752
            message.Destroy()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3753
        elif config_name.upper() in self.PouElementNames:
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  3754
            message = wx.MessageDialog(self, _("A POU has an element named \"%s\". This could cause a conflict. Do you wish to continue?")%config_name, _("Warning"), wx.YES_NO|wx.ICON_EXCLAMATION)
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3755
            result = message.ShowModal()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3756
            message.Destroy()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3757
            if result == wx.ID_YES:
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3758
                self.EndModal(wx.ID_OK)
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3759
        else:
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3760
            self.EndModal(wx.ID_OK)
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3761
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3762
    def SetPouNames(self, pou_names):
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3763
        self.PouNames = [pou_name.upper() for pou_name in pou_names]
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3764
    
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3765
    def SetPouElementNames(self, pou_names):
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3766
        self.PouElementNames = [pou_name.upper() for pou_name in pou_names]
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3767
    
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3768
    def GetValue(self):
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3769
        return self.GetSizer().GetItem(1).GetWindow().GetValue()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3770
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3771
#-------------------------------------------------------------------------------
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3772
#                          Resource Name Dialog
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3773
#-------------------------------------------------------------------------------
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3774
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3775
class ResourceNameDialog(wx.TextEntryDialog):
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3776
114
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3777
    if wx.VERSION < (2, 6, 0):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3778
        def Bind(self, event, function, id = None):
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3779
            if id is not None:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3780
                event(self, id, function)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3781
            else:
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3782
                event(self, function)
06454545e5d0 Adding support for block copy and for wxpython 2.4
lbessard
parents: 108
diff changeset
  3783
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3784
    def __init__(self, parent, message, caption = _("Please enter resource name"), defaultValue = "", 
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3785
                       style = wx.OK|wx.CANCEL|wx.CENTRE, pos = wx.DefaultPosition):
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3786
        wx.TextEntryDialog.__init__(self, parent, message, caption, defaultValue, style, pos)
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3787
        
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3788
        self.PouNames = []
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3789
        self.PouElementNames = []
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3790
        
144
b67a5de5a24a Adding optimization on Viewer redrawing
lbessard
parents: 138
diff changeset
  3791
        if wx.VERSION >= (2, 8, 0):
b67a5de5a24a Adding optimization on Viewer redrawing
lbessard
parents: 138
diff changeset
  3792
            self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.GetSizer().GetItem(2).GetSizer().GetItem(1).GetSizer().GetAffirmativeButton().GetId())
b67a5de5a24a Adding optimization on Viewer redrawing
lbessard
parents: 138
diff changeset
  3793
        elif wx.VERSION >= (2, 6, 0):
b67a5de5a24a Adding optimization on Viewer redrawing
lbessard
parents: 138
diff changeset
  3794
            self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.GetSizer().GetItem(3).GetSizer().GetAffirmativeButton().GetId())
b67a5de5a24a Adding optimization on Viewer redrawing
lbessard
parents: 138
diff changeset
  3795
        else:
b67a5de5a24a Adding optimization on Viewer redrawing
lbessard
parents: 138
diff changeset
  3796
            self.Bind(wx.EVT_BUTTON, self.OnOK, id=self.GetSizer().GetItem(3).GetSizer().GetChildren()[0].GetSizer().GetChildren()[0].GetWindow().GetId())
b67a5de5a24a Adding optimization on Viewer redrawing
lbessard
parents: 138
diff changeset
  3797
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3798
    def OnOK(self, event):
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3799
        resource_name = self.GetSizer().GetItem(1).GetWindow().GetValue()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3800
        if resource_name == "":
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3801
            message = wx.MessageDialog(self, _("You must type a name!"), _("Error"), wx.OK|wx.ICON_ERROR)
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3802
            message.ShowModal()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3803
            message.Destroy()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3804
        elif not TestIdentifier(resource_name):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3805
            message = wx.MessageDialog(self, _("\"%s\" is not a valid identifier!")%resource_name, _("Error"), wx.OK|wx.ICON_ERROR)
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3806
            message.ShowModal()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3807
            message.Destroy()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3808
        elif resource_name.upper() in IEC_KEYWORDS:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3809
            message = wx.MessageDialog(self, _("\"%s\" is a keyword. It can't be used!")%resource_name, _("Error"), wx.OK|wx.ICON_ERROR)
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3810
            message.ShowModal()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3811
            message.Destroy()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3812
        elif resource_name.upper() in self.PouNames:
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  3813
            message = wx.MessageDialog(self, _("A POU named \"%s\" already exists!")%resource_name, _("Error"), wx.OK|wx.ICON_ERROR)
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3814
            message.ShowModal()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3815
            message.Destroy()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3816
        elif resource_name.upper() in self.PouElementNames:
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  3817
            message = wx.MessageDialog(self, _("A POU has an element named \"%s\". This could cause a conflict. Do you wish to continue?")%resource_name, _("Warning"), wx.YES_NO|wx.ICON_EXCLAMATION)
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3818
            result = message.ShowModal()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3819
            message.Destroy()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3820
            if result == wx.ID_YES:
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3821
                self.EndModal(wx.ID_OK)
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3822
        else:
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3823
            self.EndModal(wx.ID_OK)
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3824
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3825
    def SetPouNames(self, pou_names):
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3826
        self.PouNames = [pou_name.upper() for pou_name in pou_names]
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3827
    
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3828
    def SetPouElementNames(self, pou_names):
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3829
        self.PouElementNames = [pou_name.upper() for pou_name in pou_names]
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3830
    
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3831
    def GetValue(self):
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3832
        return self.GetSizer().GetItem(1).GetWindow().GetValue()
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3833
c798a68c5560 Lots of bugs fixed
lbessard
parents: 71
diff changeset
  3834
#-------------------------------------------------------------------------------
390
020420ad8914 Adding comments and code improvements
laurent
parents: 384
diff changeset
  3835
#                            Debug Variables Panel
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3836
#-------------------------------------------------------------------------------
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3837
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3838
def GetDebugVariablesTableColnames():
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3839
    _ = lambda x : x
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3840
    return [_("Variable"), _("Value")]
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3841
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 359
diff changeset
  3842
class VariableTableItem(DebugDataConsumer):
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3843
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3844
    def __init__(self, parent, variable, value):
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 359
diff changeset
  3845
        DebugDataConsumer.__init__(self)
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3846
        self.Parent = parent
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3847
        self.Variable = variable
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3848
        self.Value = value
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3849
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3850
    def __del__(self):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3851
        self.Parent = None
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3852
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3853
    def SetVariable(self, variable):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3854
        if self.Parent and self.Variable != variable:
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3855
            self.Variable = variable
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3856
            self.Parent.RefreshGrid()
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3857
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3858
    def GetVariable(self):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3859
        return self.Variable
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3860
    
478
dc403c47af54 Adding colour to graphic element that showing forced values
laurent
parents: 474
diff changeset
  3861
    def SetForced(self, forced):
dc403c47af54 Adding colour to graphic element that showing forced values
laurent
parents: 474
diff changeset
  3862
        if self.Forced != forced:
dc403c47af54 Adding colour to graphic element that showing forced values
laurent
parents: 474
diff changeset
  3863
            self.Forced = forced
dc403c47af54 Adding colour to graphic element that showing forced values
laurent
parents: 474
diff changeset
  3864
            self.Parent.HasNewData = True
dc403c47af54 Adding colour to graphic element that showing forced values
laurent
parents: 474
diff changeset
  3865
    
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3866
    def SetValue(self, value):
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 359
diff changeset
  3867
        if self.Value != value:
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3868
            self.Value = value
372
8cab11dd2325 Bug that fixed Windows in Debug mode fixed
greg
parents: 366
diff changeset
  3869
            self.Parent.HasNewData = True
8cab11dd2325 Bug that fixed Windows in Debug mode fixed
greg
parents: 366
diff changeset
  3870
            
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3871
    def GetValue(self):
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 359
diff changeset
  3872
        return self.Value
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3873
604
5b42b4401e6b Adding support for unifying grid table control elements
laurent
parents: 599
diff changeset
  3874
class DebugVariableTable(CustomTable):
5b42b4401e6b Adding support for unifying grid table control elements
laurent
parents: 599
diff changeset
  3875
    
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3876
    def GetValue(self, row, col):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3877
        if row < self.GetNumberRows():
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3878
            return self.GetValueByName(row, self.GetColLabelValue(col, False))
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3879
        return ""
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3880
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3881
    def SetValue(self, row, col, value):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3882
        if col < len(self.colnames):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3883
            self.SetValueByName(row, self.GetColLabelValue(col, False), value)
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3884
            
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3885
    def GetValueByName(self, row, colname):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3886
        if row < self.GetNumberRows():
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3887
            if colname == "Variable":
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3888
                return self.data[row].GetVariable()
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3889
            elif colname == "Value":
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3890
                return self.data[row].GetValue()
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3891
        return ""
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3892
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3893
    def SetValueByName(self, row, colname, value):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3894
        if row < self.GetNumberRows():
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3895
            if colname == "Variable":
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3896
                self.data[row].SetVariable(value)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3897
            elif colname == "Value":
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3898
                self.data[row].SetValue(value)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3899
    
472
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  3900
    def IsForced(self, row):
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  3901
        if row < self.GetNumberRows():
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  3902
            return self.data[row].IsForced()
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  3903
        return False
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  3904
    
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3905
    def _updateColAttrs(self, grid):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3906
        """
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3907
        wx.grid.Grid -> update the column attributes to add the
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3908
        appropriate renderer given the column name.
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3909
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3910
        Otherwise default to the default renderer.
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3911
        """
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3912
        
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3913
        for row in range(self.GetNumberRows()):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3914
            for col in range(self.GetNumberCols()):
473
9ee851841d28 Adding value colour change in DebugVariablePanel when variable is forced
laurent
parents: 472
diff changeset
  3915
                if self.GetColLabelValue(col, False) == "Value":
9ee851841d28 Adding value colour change in DebugVariablePanel when variable is forced
laurent
parents: 472
diff changeset
  3916
                    if self.IsForced(row):
478
dc403c47af54 Adding colour to graphic element that showing forced values
laurent
parents: 474
diff changeset
  3917
                        grid.SetCellTextColour(row, col, wx.BLUE)
473
9ee851841d28 Adding value colour change in DebugVariablePanel when variable is forced
laurent
parents: 472
diff changeset
  3918
                    else:
474
a07115f79c27 Bug on changing variable value text colour fixed
laurent
parents: 473
diff changeset
  3919
                        grid.SetCellTextColour(row, col, wx.BLACK)
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3920
                grid.SetReadOnly(row, col, True)
604
5b42b4401e6b Adding support for unifying grid table control elements
laurent
parents: 599
diff changeset
  3921
            self.ResizeRow(grid, row)
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3922
                
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3923
    def AppendItem(self, data):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3924
        self.data.append(data)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3925
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3926
    def InsertItem(self, idx, data):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3927
        self.data.insert(idx, data)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3928
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3929
    def RemoveItem(self, idx):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3930
        self.data.pop(idx)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3931
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3932
    def MoveItem(self, idx, new_idx):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3933
        self.data.insert(new_idx, self.data.pop(idx))
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3934
        
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3935
    def GetItem(self, idx):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3936
        return self.data[idx]
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3937
604
5b42b4401e6b Adding support for unifying grid table control elements
laurent
parents: 599
diff changeset
  3938
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3939
class DebugVariableDropTarget(wx.TextDropTarget):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3940
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3941
    def __init__(self, parent):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3942
        wx.TextDropTarget.__init__(self)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3943
        self.ParentWindow = parent
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3944
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3945
    def OnDropText(self, x, y, data):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3946
        x, y = self.ParentWindow.VariablesGrid.CalcUnscrolledPosition(x, y)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3947
        row = self.ParentWindow.VariablesGrid.YToRow(y - self.ParentWindow.VariablesGrid.GetColLabelSize())
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3948
        if row == wx.NOT_FOUND:
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3949
            row = self.ParentWindow.Table.GetNumberRows()
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3950
        message = None
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3951
        try:
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3952
            values = eval(data)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3953
        except:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3954
            message = _("Invalid value \"%s\" for debug variable")%data
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3955
            values = None
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3956
        if not isinstance(values, TupleType):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3957
            message = _("Invalid value \"%s\" for debug variable")%data
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3958
            values = None
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3959
        if values is not None and values[1] == "debug":
479
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  3960
            self.ParentWindow.InsertValue(values[0], row)
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3961
        if message is not None:
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3962
            wx.CallAfter(self.ShowMessage, message)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3963
            
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3964
    def ShowMessage(self, message):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  3965
        message = wx.MessageDialog(self.ParentWindow, message, _("Error"), wx.OK|wx.ICON_ERROR)
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3966
        message.ShowModal()
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3967
        message.Destroy()
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3968
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3969
[ID_DEBUGVARIABLEPANEL, ID_DEBUGVARIABLEPANELVARIABLESGRID, 
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3970
 ID_DEBUGVARIABLEPANELUPBUTTON, ID_DEBUGVARIABLEPANELDOWNBUTTON, 
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 359
diff changeset
  3971
 ID_DEBUGVARIABLEPANELDELETEBUTTON,
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3972
] = [wx.NewId() for _init_ctrls in range(5)]
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3973
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 359
diff changeset
  3974
class DebugVariablePanel(wx.Panel, DebugViewer):
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3975
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3976
    if wx.VERSION < (2, 6, 0):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3977
        def Bind(self, event, function, id = None):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3978
            if id is not None:
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3979
                event(self, id, function)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3980
            else:
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3981
                event(self, function)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3982
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3983
    def _init_coll_MainSizer_Items(self, parent):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3984
        parent.AddSizer(self.ButtonPanelSizer, 0, border=5, flag=wx.ALIGN_RIGHT|wx.ALL)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3985
        parent.AddWindow(self.VariablesGrid, 0, border=0, flag=wx.GROW)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3986
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3987
    def _init_coll_MainSizer_Growables(self, parent):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3988
        parent.AddGrowableCol(0)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3989
        parent.AddGrowableRow(1)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3990
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3991
    def _init_coll_ButtonPanelSizer_Items(self, parent):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3992
        parent.AddWindow(self.UpButton, 0, border=5, flag=wx.RIGHT)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3993
        parent.AddWindow(self.DownButton, 0, border=5, flag=wx.RIGHT)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3994
        parent.AddWindow(self.DeleteButton, 0, border=0, flag=0)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3995
        
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3996
    def _init_sizers(self):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3997
        self.MainSizer = wx.FlexGridSizer(cols=1, hgap=10, rows=2, vgap=0)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3998
        self.ButtonPanelSizer = wx.BoxSizer(wx.HORIZONTAL)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  3999
        
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4000
        self._init_coll_MainSizer_Items(self.MainSizer)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4001
        self._init_coll_MainSizer_Growables(self.MainSizer)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4002
        self._init_coll_ButtonPanelSizer_Items(self.ButtonPanelSizer)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4003
        
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4004
        self.SetSizer(self.MainSizer)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4005
        
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4006
    def _init_ctrls(self, prnt):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4007
        wx.Panel.__init__(self, id=ID_DEBUGVARIABLEPANEL,
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4008
              name='DebugVariablePanel', parent=prnt, pos=wx.Point(0, 0),
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4009
              size=wx.Size(0, 0), style=wx.TAB_TRAVERSAL)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4010
577
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4011
        self.VariablesGrid = CustomGrid(id=ID_DEBUGVARIABLEPANELVARIABLESGRID,
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4012
              name='VariablesGrid', parent=self, pos=wx.Point(0, 0), 
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4013
              size=wx.Size(0, 150), style=wx.VSCROLL)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4014
        self.VariablesGrid.SetDropTarget(DebugVariableDropTarget(self))
497
3db9ffa8d816 Disable buttons in DebugVariablePanel when they aren't useful
laurent
parents: 490
diff changeset
  4015
        if wx.VERSION >= (2, 6, 0):
3db9ffa8d816 Disable buttons in DebugVariablePanel when they aren't useful
laurent
parents: 490
diff changeset
  4016
            self.VariablesGrid.Bind(wx.grid.EVT_GRID_CELL_RIGHT_CLICK, self.OnVariablesGridCellRightClick)
3db9ffa8d816 Disable buttons in DebugVariablePanel when they aren't useful
laurent
parents: 490
diff changeset
  4017
        else:
3db9ffa8d816 Disable buttons in DebugVariablePanel when they aren't useful
laurent
parents: 490
diff changeset
  4018
            wx.grid.EVT_GRID_CELL_RIGHT_CLICK(self.VariablesGrid, self.OnVariablesGridCellRightClick)
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4019
        
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4020
        self.UpButton = wx.Button(id=ID_DEBUGVARIABLEPANELUPBUTTON, label='^',
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4021
              name='UpButton', parent=self, pos=wx.Point(0, 0),
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4022
              size=wx.Size(32, 32), style=0)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4023
        
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4024
        self.DownButton = wx.Button(id=ID_DEBUGVARIABLEPANELDOWNBUTTON, label='v',
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4025
              name='DownButton', parent=self, pos=wx.Point(0, 0),
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4026
              size=wx.Size(32, 32), style=0)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4027
        
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  4028
        self.DeleteButton = wx.Button(id=ID_DEBUGVARIABLEPANELDELETEBUTTON, label=_('Delete'),
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4029
              name='DeleteButton', parent=self, pos=wx.Point(0, 0),
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  4030
              size=wx.DefaultSize, style=0)
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4031
        
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4032
        self._init_sizers()
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4033
    
415
d3d8f8f0b678 controler (PLCControler) and debug data producer (PluginsRoot) are no longer the same thing
b.taylor@willowglen.ca
parents: 412
diff changeset
  4034
    def __init__(self, parent, producer):
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4035
        self._init_ctrls(parent)
415
d3d8f8f0b678 controler (PLCControler) and debug data producer (PluginsRoot) are no longer the same thing
b.taylor@willowglen.ca
parents: 412
diff changeset
  4036
        DebugViewer.__init__(self, producer, True)
372
8cab11dd2325 Bug that fixed Windows in Debug mode fixed
greg
parents: 366
diff changeset
  4037
        self.HasNewData = False
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4038
        
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  4039
        self.Table = DebugVariableTable(self, [], GetDebugVariablesTableColnames())
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4040
        self.VariablesGrid.SetTable(self.Table)
577
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4041
        self.VariablesGrid.SetButtons({"Delete": self.DeleteButton,
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4042
                                       "Up": self.UpButton,
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4043
                                       "Down": self.DownButton})
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4044
        
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4045
        def _AddVariable(new_row):
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4046
            return self.VariablesGrid.GetGridCursorRow()
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4047
        setattr(self.VariablesGrid, "_AddRow", _AddVariable)
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4048
        
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4049
        def _DeleteVariable(row):
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4050
            item = self.Table.GetItem(row)
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4051
            self.RemoveDataConsumer(item)
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4052
            self.Table.RemoveItem(row)
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4053
            self.RefreshGrid()
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4054
        setattr(self.VariablesGrid, "_DeleteRow", _DeleteVariable)
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4055
        
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4056
        def _MoveVariable(row, move):
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4057
            new_row = max(0, min(row + move, self.Table.GetNumberRows() - 1))
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4058
            if new_row != row:
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4059
                self.Table.MoveItem(row, new_row)
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4060
                self.RefreshGrid()
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4061
            return new_row
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4062
        setattr(self.VariablesGrid, "_MoveRow", _MoveVariable)
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4063
        
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4064
        self.VariablesGrid.SetRowLabelSize(0)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4065
        
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4066
        for col in range(self.Table.GetNumberCols()):
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4067
            attr = wx.grid.GridCellAttr()
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4068
            attr.SetAlignment(wx.ALIGN_RIGHT, wx.ALIGN_CENTER)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4069
            self.VariablesGrid.SetColAttr(col, attr)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4070
            self.VariablesGrid.SetColSize(col, 100)
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 359
diff changeset
  4071
        
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4072
        self.Table.ResetView(self.VariablesGrid)
577
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4073
        self.VariablesGrid.RefreshButtons()
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4074
    
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 359
diff changeset
  4075
    def RefreshNewData(self):
372
8cab11dd2325 Bug that fixed Windows in Debug mode fixed
greg
parents: 366
diff changeset
  4076
        if self.HasNewData:
8cab11dd2325 Bug that fixed Windows in Debug mode fixed
greg
parents: 366
diff changeset
  4077
            self.HasNewData = False
8cab11dd2325 Bug that fixed Windows in Debug mode fixed
greg
parents: 366
diff changeset
  4078
            self.RefreshGrid()
8cab11dd2325 Bug that fixed Windows in Debug mode fixed
greg
parents: 366
diff changeset
  4079
        DebugViewer.RefreshNewData(self)
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4080
    
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4081
    def RefreshGrid(self):
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 359
diff changeset
  4082
        self.Freeze()
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4083
        self.Table.ResetView(self.VariablesGrid)
577
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4084
        self.VariablesGrid.RefreshButtons()
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 359
diff changeset
  4085
        self.Thaw()
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4086
    
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  4087
    def ResetGrid(self):
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  4088
        self.DeleteDataConsumers()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  4089
        self.Table.Empty()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  4090
        self.Freeze()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  4091
        self.Table.ResetView(self.VariablesGrid)
577
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4092
        self.VariablesGrid.RefreshButtons()
407
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  4093
        self.Thaw()
0a324a874981 Adding support for integrating PLCOpenEditor in Beremiz frame
laurent
parents: 403
diff changeset
  4094
    
479
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  4095
    def GetForceVariableMenuFunction(self, iec_path, item):
472
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4096
        iec_type = self.GetDataType(iec_path)
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4097
        def ForceVariableFunction(event):
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4098
            if iec_type is not None:
479
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  4099
                dialog = ForceVariableDialog(self, iec_type, str(item.GetValue()))
472
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4100
                if dialog.ShowModal() == wx.ID_OK:
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4101
                    self.ForceDataValue(iec_path, dialog.GetValue())
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4102
        return ForceVariableFunction
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4103
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4104
    def GetReleaseVariableMenuFunction(self, iec_path):
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4105
        def ReleaseVariableFunction(event):
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4106
            self.ReleaseDataValue(iec_path)
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4107
        return ReleaseVariableFunction
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4108
    
497
3db9ffa8d816 Disable buttons in DebugVariablePanel when they aren't useful
laurent
parents: 490
diff changeset
  4109
    def OnVariablesGridCellRightClick(self, event):
472
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4110
        row, col = event.GetRow(), event.GetCol()
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4111
        if self.Table.GetColLabelValue(col, False) == "Value":
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4112
            iec_path = self.Table.GetValueByName(row, "Variable").upper()
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4113
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4114
            menu = wx.Menu(title='')
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4115
            new_id = wx.NewId()
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4116
            AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Force value"))
479
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  4117
            self.Bind(wx.EVT_MENU, self.GetForceVariableMenuFunction(iec_path.upper(), self.Table.GetItem(row)), id=new_id)
472
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4118
            new_id = wx.NewId()
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4119
            AppendMenu(menu, help='', id=new_id, kind=wx.ITEM_NORMAL, text=_("Release value"))
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4120
            self.Bind(wx.EVT_MENU, self.GetReleaseVariableMenuFunction(iec_path.upper()), id=new_id)
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4121
            if self.Table.IsForced(row):
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4122
                menu.Enable(new_id, True)
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4123
            else:
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4124
                menu.Enable(new_id, False)
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4125
            self.PopupMenu(menu)
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4126
        event.Skip()
fecd4f6c01ed Adding support for forcing PLC variable in DebugVariablePanel
laurent
parents: 456
diff changeset
  4127
    
479
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  4128
    def InsertValue(self, iec_path, idx = None):
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  4129
        if idx is None:
2fab0eefa66e Adding support for getting current value in ForceVariableDialog default value and adding variable in DebugVariablePanel when forced
laurent
parents: 478
diff changeset
  4130
            idx = self.Table.GetNumberRows()
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4131
        for item in self.Table.GetData():
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4132
            if iec_path == item.GetVariable():
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4133
                return
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4134
        item = VariableTableItem(self, iec_path, "")
361
62570186dad4 Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents: 359
diff changeset
  4135
        result = self.AddDataConsumer(iec_path.upper(), item)
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4136
        if result is not None:
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4137
            self.Table.InsertItem(idx, item)
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4138
            self.RefreshGrid()
577
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4139
9dbb79722fbc Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents: 575
diff changeset
  4140
        
341
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4141
#-------------------------------------------------------------------------------
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4142
#                               Viewer Printout
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4143
#-------------------------------------------------------------------------------
88030497e29e Bug with AUINotebook double click
lbessard
parents: 337
diff changeset
  4144
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4145
UPPER_DIV = lambda x, y: (x / y) + {True : 0, False : 1}[(x % y) == 0]
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4146
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4147
class GraphicPrintout(wx.Printout):
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4148
    def __init__(self, viewer, page_size, margins, preview = False):
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4149
        wx.Printout.__init__(self)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4150
        self.Viewer = viewer
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4151
        self.PageSize = page_size
221
25f2b4924347 Bugs with printing fixed
lbessard
parents: 220
diff changeset
  4152
        if self.PageSize[0] == 0 or self.PageSize[1] == 0:
25f2b4924347 Bugs with printing fixed
lbessard
parents: 220
diff changeset
  4153
            self.PageSize = (1050, 1485)
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4154
        self.Preview = preview
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4155
        self.Margins = margins
221
25f2b4924347 Bugs with printing fixed
lbessard
parents: 220
diff changeset
  4156
        self.FontSize = 5
25f2b4924347 Bugs with printing fixed
lbessard
parents: 220
diff changeset
  4157
        self.TextMargin = 3
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4158
        
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4159
        maxx, maxy = viewer.GetMaxSize()
221
25f2b4924347 Bugs with printing fixed
lbessard
parents: 220
diff changeset
  4160
        self.PageGrid = (UPPER_DIV(maxx, self.PageSize[0]), 
25f2b4924347 Bugs with printing fixed
lbessard
parents: 220
diff changeset
  4161
                         UPPER_DIV(maxy, self.PageSize[1]))
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4162
        
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4163
    def GetPageNumber(self):
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4164
        return self.PageGrid[0] * self.PageGrid[1]
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4165
    
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4166
    def HasPage(self, page):
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4167
        return page <= self.GetPageNumber()
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4168
        
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4169
    def GetPageInfo(self):
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4170
        page_number = self.GetPageNumber()
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4171
        return (1, page_number, 1, page_number)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4172
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4173
    def OnBeginDocument(self, startPage, endPage):
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4174
        dc = self.GetDC()
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4175
        if not self.Preview and isinstance(dc, wx.PostScriptDC):
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4176
            dc.SetResolution(720)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4177
        super(GraphicPrintout, self).OnBeginDocument(startPage, endPage)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4178
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4179
    def OnPrintPage(self, page):
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4180
        dc = self.GetDC()
221
25f2b4924347 Bugs with printing fixed
lbessard
parents: 220
diff changeset
  4181
        dc.SetUserScale(1.0, 1.0)
25f2b4924347 Bugs with printing fixed
lbessard
parents: 220
diff changeset
  4182
        dc.SetDeviceOrigin(0, 0)
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4183
        dc.printing = not self.Preview
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4184
        
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4185
        # Get the size of the DC in pixels
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4186
        ppiPrinterX, ppiPrinterY = self.GetPPIPrinter()
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4187
        ppiScreenX, ppiScreenY = self.GetPPIScreen()
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4188
        pw, ph = self.GetPageSizePixels()
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4189
        dw, dh = dc.GetSizeTuple()
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4190
        Xscale = (float(dw) * float(ppiPrinterX)) / (float(pw) * 25.4)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4191
        Yscale = (float(dh) * float(ppiPrinterY)) / (float(ph) * 25.4)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4192
        
221
25f2b4924347 Bugs with printing fixed
lbessard
parents: 220
diff changeset
  4193
        fontsize = self.FontSize * Yscale
25f2b4924347 Bugs with printing fixed
lbessard
parents: 220
diff changeset
  4194
        text_margin = self.TextMargin * Yscale
25f2b4924347 Bugs with printing fixed
lbessard
parents: 220
diff changeset
  4195
        
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4196
        margin_left = self.Margins[0].x * Xscale
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4197
        margin_top = self.Margins[0].y * Yscale
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4198
        area_width = dw - self.Margins[1].x * Xscale - margin_left
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4199
        area_height = dh - self.Margins[1].y * Yscale - margin_top
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4200
        
563
3f92a5e18804 - Fixing editing graphic element (handles, rubberband and highlight) in graphic editor in order to make them keep the same size whatever the zoom factor applied to graphic editor
laurent
parents: 562
diff changeset
  4201
        dc.SetPen(MiterPen(wx.BLACK))
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4202
        dc.SetBrush(wx.TRANSPARENT_BRUSH)    
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4203
        dc.DrawRectangle(margin_left, margin_top, area_width, area_height)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4204
        
221
25f2b4924347 Bugs with printing fixed
lbessard
parents: 220
diff changeset
  4205
        dc.SetFont(wx.Font(fontsize, wx.DEFAULT, wx.NORMAL, wx.NORMAL))
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4206
        dc.SetTextForeground(wx.BLACK)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4207
        block_name = " - ".join(self.Viewer.GetTagName().split("::")[1:])
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4208
        text_width, text_height = dc.GetTextExtent(block_name)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4209
        dc.DrawText(block_name, margin_left, margin_top - text_height - self.TextMargin)
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  4210
        dc.DrawText(_("Page: %d") % page, margin_left, margin_top + area_height + self.TextMargin)
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4211
        
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4212
        # Calculate the position on the DC for centering the graphic
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4213
        posX = area_width * ((page - 1) % self.PageGrid[0])
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4214
        posY = area_height * ((page - 1) / self.PageGrid[0])
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4215
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4216
        scaleX = float(area_width) / float(self.PageSize[0])
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4217
        scaleY = float(area_height) / float(self.PageSize[1])
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4218
        scale = min(scaleX, scaleY)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4219
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4220
        # Set the scale and origin
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4221
        dc.SetDeviceOrigin(-posX + margin_left, -posY + margin_top)
221
25f2b4924347 Bugs with printing fixed
lbessard
parents: 220
diff changeset
  4222
        dc.SetClippingRegion(posX, posY, self.PageSize[0] * scale, self.PageSize[1] * scale)
213
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4223
        dc.SetUserScale(scale, scale)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4224
        
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4225
        #-------------------------------------------
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4226
        
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4227
        self.Viewer.DoDrawing(dc, True)
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4228
        
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4229
        return True
4931959ea256 Adding support for printing graphical languages
lbessard
parents: 212
diff changeset
  4230
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4231
#-------------------------------------------------------------------------------
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4232
#                               Exception Handler
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4233
#-------------------------------------------------------------------------------
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4234
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4235
Max_Traceback_List_Size = 20
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4236
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4237
def Display_Exception_Dialog(e_type,e_value,e_tb):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4238
    trcbck_lst = []
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4239
    for i,line in enumerate(traceback.extract_tb(e_tb)):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  4240
        trcbck = " " + str(i+1) + _(". ")
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4241
        if line[0].find(os.getcwd()) == -1:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  4242
            trcbck += _("file : ") + str(line[0]) + _(",   ")
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  4243
        else:
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  4244
            trcbck += _("file : ") + str(line[0][len(os.getcwd()):]) + _(",   ")
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  4245
        trcbck += _("line : ") + str(line[1]) + _(",   ") + _("function : ") + str(line[2])
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4246
        trcbck_lst.append(trcbck)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4247
        
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4248
    # Allow clicking....
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4249
    cap = wx.Window_GetCapture()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4250
    if cap:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4251
        cap.ReleaseMouse()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4252
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4253
    dlg = wx.SingleChoiceDialog(None, 
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  4254
        _("""
427
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  4255
An error has occurred.
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  4256
22d16c457d87 improved English spelling & grammar
b.taylor@willowglen.ca
parents: 423
diff changeset
  4257
Click OK to save an error report.
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4258
454
762497a95b7a Replace \"lolitech\" contact by \"edouard\" contact
greg
parents: 447
diff changeset
  4259
Please be kind enough to send this file to:
762497a95b7a Replace \"lolitech\" contact by \"edouard\" contact
greg
parents: 447
diff changeset
  4260
edouard.tisserant@gmail.com
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4261
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4262
Error:
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  4263
""") +
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  4264
        str(e_type) + _(" : ") + str(e_value), 
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  4265
        _("Error"),
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4266
        trcbck_lst)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4267
    try:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4268
        res = (dlg.ShowModal() == wx.ID_OK)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4269
    finally:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4270
        dlg.Destroy()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4271
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4272
    return res
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4273
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4274
def Display_Error_Dialog(e_value):
391
07447ee3538e Adding support for internationalization
laurent
parents: 390
diff changeset
  4275
    message = wx.MessageDialog(None, str(e_value), _("Error"), wx.OK|wx.ICON_ERROR)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4276
    message.ShowModal()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4277
    message.Destroy()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4278
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4279
def get_last_traceback(tb):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4280
    while tb.tb_next:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4281
        tb = tb.tb_next
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4282
    return tb
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4283
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4284
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4285
def format_namespace(d, indent='    '):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4286
    return '\n'.join(['%s%s: %s' % (indent, k, repr(v)[:10000]) for k, v in d.iteritems()])
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4287
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4288
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4289
ignored_exceptions = [] # a problem with a line in a module is only reported once per session
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4290
65
cb6bed0720f0 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 64
diff changeset
  4291
def AddExceptHook(path, app_version='[No version]'):#, ignored_exceptions=[]):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4292
    
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4293
    def handle_exception(e_type, e_value, e_traceback):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4294
        traceback.print_exception(e_type, e_value, e_traceback) # this is very helpful when there's an exception in the rest of this func
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4295
        last_tb = get_last_traceback(e_traceback)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4296
        ex = (last_tb.tb_frame.f_code.co_filename, last_tb.tb_frame.f_lineno)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4297
        if str(e_value).startswith("!!!"):
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4298
            Display_Error_Dialog(e_value)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4299
        elif ex not in ignored_exceptions:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4300
            result = Display_Exception_Dialog(e_type,e_value,e_traceback)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4301
            if result:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4302
                ignored_exceptions.append(ex)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4303
                info = {
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4304
                    'app-title' : wx.GetApp().GetAppName(), # app_title
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4305
                    'app-version' : app_version,
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4306
                    'wx-version' : wx.VERSION_STRING,
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4307
                    'wx-platform' : wx.Platform,
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4308
                    'python-version' : platform.python_version(), #sys.version.split()[0],
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4309
                    'platform' : platform.platform(),
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4310
                    'e-type' : e_type,
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4311
                    'e-value' : e_value,
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4312
                    'date' : time.ctime(),
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4313
                    'cwd' : os.getcwd(),
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4314
                    }
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4315
                if e_traceback:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4316
                    info['traceback'] = ''.join(traceback.format_tb(e_traceback)) + '%s: %s' % (e_type, e_value)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4317
                    last_tb = get_last_traceback(e_traceback)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4318
                    exception_locals = last_tb.tb_frame.f_locals # the locals at the level of the stack trace where the exception actually occurred
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4319
                    info['locals'] = format_namespace(exception_locals)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4320
                    if 'self' in exception_locals:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4321
                        info['self'] = format_namespace(exception_locals['self'].__dict__)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4322
                
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4323
                output = open(path+os.sep+"bug_report_"+info['date'].replace(':','-').replace(' ','_')+".txt",'w')
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4324
                lst = info.keys()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4325
                lst.sort()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4326
                for a in lst:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4327
                    output.write(a+":\n"+str(info[a])+"\n\n")
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4328
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4329
    #sys.excepthook = lambda *args: wx.CallAfter(handle_exception, *args)
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4330
    sys.excepthook = handle_exception
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4331
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4332
if __name__ == '__main__':
64
dd6f693e46a1 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 58
diff changeset
  4333
    wx.InitAllImageHandlers()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4334
    
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4335
    # Install a exception handle for bug reports
65
cb6bed0720f0 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 64
diff changeset
  4336
    AddExceptHook(os.getcwd(),__version__)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4337
    
92
76d5001393df Adding support for refreshing PLCOpenEditor block list
lbessard
parents: 90
diff changeset
  4338
    frame = PLCOpenEditor(None, fileOpen=fileOpen)
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4339
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4340
    frame.Show()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4341
    app.MainLoop()
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  4342