Beremiz.py
author laurent
Thu, 15 Oct 2009 10:11:07 +0200
changeset 417 a895ae50b737
parent 413 88ee3d7bd4eb
child 422 76aebe92fd5f
permissions -rw-r--r--
Adding support for declaring PluginRoot outside of Beremiz
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
     1
#!/usr/bin/env python
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
     2
# -*- coding: utf-8 -*-
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
     3
3
6d8728efcdec Adding validity verifications on project folders opened
lbessard
parents: 2
diff changeset
     4
#This file is part of Beremiz, a Integrated Development Environment for
6d8728efcdec Adding validity verifications on project folders opened
lbessard
parents: 2
diff changeset
     5
#programming IEC 61131-3 automates supporting plcopen standard and CanFestival. 
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
     6
#
3
6d8728efcdec Adding validity verifications on project folders opened
lbessard
parents: 2
diff changeset
     7
#Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
     8
#
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
     9
#See COPYING file for copyrights details.
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
    10
#
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
    11
#This library is free software; you can redistribute it and/or
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
    12
#modify it under the terms of the GNU General Public
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
    13
#License as published by the Free Software Foundation; either
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
    14
#version 2.1 of the License, or (at your option) any later version.
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
    15
#
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
    16
#This library is distributed in the hope that it will be useful,
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
    17
#but WITHOUT ANY WARRANTY; without even the implied warranty of
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
    18
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
3
6d8728efcdec Adding validity verifications on project folders opened
lbessard
parents: 2
diff changeset
    19
#General Public License for more details.
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
    20
#
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
    21
#You should have received a copy of the GNU General Public
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
    22
#License along with this library; if not, write to the Free Software
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
    23
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
    24
13
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    25
__version__ = "$Revision$"
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    26
117
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    27
import os, sys, getopt, wx
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
    28
import tempfile
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
    29
import shutil
227
48c13b84505c - Some improovements in debug data feedback data
etisserant
parents: 224
diff changeset
    30
import random
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
    31
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    32
CWD = os.path.split(os.path.realpath(__file__))[0]
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    33
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
    34
def Bpath(*args):
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    35
    return os.path.join(CWD,*args)
117
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    36
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    37
if __name__ == '__main__':
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    38
    def usage():
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    39
        print "\nUsage of Beremiz.py :"
256
1da137b99948 add buildpath parameter for beremiz
greg
parents: 249
diff changeset
    40
        print "\n   %s [Projectpath] [Buildpath]\n"%sys.argv[0]
117
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    41
    
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    42
    try:
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    43
        opts, args = getopt.getopt(sys.argv[1:], "h", ["help"])
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    44
    except getopt.GetoptError:
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    45
        # print help information and exit:
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    46
        usage()
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    47
        sys.exit(2)
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    48
    
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    49
    for o, a in opts:
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    50
        if o in ("-h", "--help"):
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    51
            usage()
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    52
            sys.exit()
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    53
    
256
1da137b99948 add buildpath parameter for beremiz
greg
parents: 249
diff changeset
    54
    if len(args) > 2:
117
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    55
        usage()
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    56
        sys.exit()
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    57
    elif len(args) == 1:
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    58
        projectOpen = args[0]
260
038eff285e00 add docutils in svgui plugins to launch inkscape
greg
parents: 258
diff changeset
    59
        buildpath = None
256
1da137b99948 add buildpath parameter for beremiz
greg
parents: 249
diff changeset
    60
    elif len(args) == 2:
1da137b99948 add buildpath parameter for beremiz
greg
parents: 249
diff changeset
    61
        projectOpen = args[0]
1da137b99948 add buildpath parameter for beremiz
greg
parents: 249
diff changeset
    62
        buildpath = args[1]
117
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    63
    else:
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    64
        projectOpen = None
256
1da137b99948 add buildpath parameter for beremiz
greg
parents: 249
diff changeset
    65
        buildpath = None
117
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    66
    
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    67
    app = wx.PySimpleApp()
257
a4b01f57069a remove workspace test
greg
parents: 256
diff changeset
    68
    app.SetAppName('beremiz')
117
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    69
    wx.InitAllImageHandlers()
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    70
    
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
    71
    bmp = wx.Image(Bpath("images","splash.png")).ConvertToBitmap()
117
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    72
    splash=wx.SplashScreen(bmp,wx.SPLASH_CENTRE_ON_SCREEN, 1000, None)
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    73
    wx.Yield()
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
    74
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    75
# Import module for internationalization
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    76
import gettext
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    77
import __builtin__
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    78
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    79
# Get folder containing translation files
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    80
localedir = os.path.join(CWD,"locale")
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    81
# Get the default language
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    82
langid = wx.LANGUAGE_DEFAULT
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    83
# Define translation domain (name of translation files)
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    84
domain = "Beremiz"
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    85
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    86
# Define locale for wx
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    87
loc = __builtin__.__dict__.get('loc', None)
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    88
if loc is None:
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    89
    loc = wx.Locale(langid)
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    90
    __builtin__.__dict__['loc'] = loc
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    91
# Define location for searching translation files
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    92
loc.AddCatalogLookupPathPrefix(localedir)
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    93
# Define locale domain
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    94
loc.AddCatalog(domain)
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    95
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    96
def unicode_translation(message):
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    97
    return wx.GetTranslation(message).encode("utf-8")
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    98
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
    99
if __name__ == '__main__':
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   100
    __builtin__.__dict__['_'] = wx.GetTranslation#unicode_translation
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   101
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   102
#Quick hack to be able to find Beremiz IEC tools. Should be config params.
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   103
base_folder = os.path.split(sys.path[0])[0]
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   104
sys.path.append(base_folder)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   105
sys.path.append(os.path.join(base_folder, "plcopeneditor"))
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   106
sys.path.append(os.path.join(base_folder, "docutils"))
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   107
134
517db40c30b7 docutils is now used for displaying pdf and html
greg
parents: 133
diff changeset
   108
import wx.lib.buttons, wx.lib.statbmp
268
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
   109
import TextCtrlAutoComplete, cPickle
117
32099ee16154 Added splash screen. Moved icons to /images
etisserant
parents: 116
diff changeset
   110
import types, time, re, platform, time, traceback, commands
356
e9698d0ee5f3 Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents: 337
diff changeset
   111
from plugger import PluginsRoot, MATIEC_ERROR_MODEL
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   112
from wxPopen import ProcessLogger
122
7676dba61281 use docclass for opening pdf on win32 or linux
greg
parents: 121
diff changeset
   113
136
f49f586a0a43 import all docutils in 1 time
greg
parents: 134
diff changeset
   114
from docutils import *
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   115
from PLCOpenEditor import IDEFrame, Viewer, AppendMenu, TITLE, TOOLBAR, FILEMENU, EDITMENU, DISPLAYMENU, TYPESTREE, INSTANCESTREE, LIBRARYTREE, SCALING
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   116
from PLCControler import LOCATION_PLUGIN, LOCATION_MODULE, LOCATION_GROUP, LOCATION_VAR_INPUT, LOCATION_VAR_OUTPUT, LOCATION_VAR_MEMORY
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
   117
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   118
SCROLLBAR_UNIT = 10
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   119
WINDOW_COLOUR = wx.Colour(240,240,240)
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   120
TITLE_COLOUR = wx.Colour(200,200,220)
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   121
CHANGED_TITLE_COLOUR = wx.Colour(220,200,220)
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   122
CHANGED_WINDOW_COLOUR = wx.Colour(255,240,240)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   123
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   124
if wx.Platform == '__WXMSW__':
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   125
    faces = { 'times': 'Times New Roman',
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   126
              'mono' : 'Courier New',
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   127
              'helv' : 'Arial',
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   128
              'other': 'Comic Sans MS',
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   129
              'size' : 16,
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   130
             }
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   131
else:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   132
    faces = { 'times': 'Times',
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   133
              'mono' : 'Courier',
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   134
              'helv' : 'Helvetica',
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   135
              'other': 'new century schoolbook',
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   136
              'size' : 18,
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   137
             }
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   138
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   139
# Some helpers to tweak GenBitmapTextButtons
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   140
# TODO: declare customized classes instead.
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   141
gen_mini_GetBackgroundBrush = lambda obj:lambda dc: wx.Brush(obj.GetParent().GetBackgroundColour(), wx.SOLID)
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   142
gen_textbutton_GetLabelSize = lambda obj:lambda:(wx.lib.buttons.GenButton._GetLabelSize(obj)[:-1] + (False,))
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   143
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   144
def make_genbitmaptogglebutton_flat(button):
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   145
    button.GetBackgroundBrush = gen_mini_GetBackgroundBrush(button)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   146
    button.labelDelta = 0
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   147
    button.SetBezelWidth(0)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   148
    button.SetUseFocusIndicator(False)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   149
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   150
# Patch wx.lib.imageutils so that gray is supported on alpha images
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   151
import wx.lib.imageutils
110
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
   152
from wx.lib.imageutils import grayOut as old_grayOut
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   153
def grayOut(anImage):
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   154
    if anImage.HasAlpha():
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   155
        AlphaData = anImage.GetAlphaData()
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   156
    else :
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   157
        AlphaData = None
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   158
110
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
   159
    old_grayOut(anImage)
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   160
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   161
    if AlphaData is not None:
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   162
        anImage.SetAlphaData(AlphaData)
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   163
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   164
wx.lib.imageutils.grayOut = grayOut
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   165
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   166
class GenBitmapTextButton(wx.lib.buttons.GenBitmapTextButton):
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   167
    def _GetLabelSize(self):
230
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   168
        """ used internally """
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   169
        w, h = self.GetTextExtent(self.GetLabel())
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   170
        if not self.bmpLabel:
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   171
            return w, h, False       # if there isn't a bitmap use the size of the text
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   172
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   173
        w_bmp = self.bmpLabel.GetWidth()+2
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   174
        h_bmp = self.bmpLabel.GetHeight()+2
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   175
        height = h + h_bmp
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   176
        if w_bmp > w:
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   177
            width = w_bmp
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   178
        else:
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   179
            width = w
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   180
        return width, height, False
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   181
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   182
    def DrawLabel(self, dc, width, height, dw=0, dy=0):
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   183
        bmp = self.bmpLabel
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   184
        if bmp != None:     # if the bitmap is used
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   185
            if self.bmpDisabled and not self.IsEnabled():
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   186
                bmp = self.bmpDisabled
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   187
            if self.bmpFocus and self.hasFocus:
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   188
                bmp = self.bmpFocus
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   189
            if self.bmpSelected and not self.up:
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   190
                bmp = self.bmpSelected
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   191
            bw,bh = bmp.GetWidth(), bmp.GetHeight()
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   192
            if not self.up:
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   193
                dw = dy = self.labelDelta
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   194
            hasMask = bmp.GetMask() != None
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   195
        else:
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   196
            bw = bh = 0     # no bitmap -> size is zero
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   197
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   198
        dc.SetFont(self.GetFont())
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   199
        if self.IsEnabled():
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   200
            dc.SetTextForeground(self.GetForegroundColour())
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   201
        else:
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   202
            dc.SetTextForeground(wx.SystemSettings.GetColour(wx.SYS_COLOUR_GRAYTEXT))
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   203
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   204
        label = self.GetLabel()
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   205
        tw, th = dc.GetTextExtent(label)        # size of text
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   206
        if not self.up:
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   207
            dw = dy = self.labelDelta
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   208
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   209
        pos_x = (width-bw)/2+dw      # adjust for bitmap and text to centre
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   210
        pos_y = (height-bh-th)/2+dy
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   211
        if bmp !=None:
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   212
            dc.DrawBitmap(bmp, pos_x, pos_y, hasMask) # draw bitmap if available
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   213
            pos_x = (width-tw)/2+dw      # adjust for bitmap and text to centre
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   214
            pos_y += bh + 2
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   215
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   216
        dc.DrawText(label, pos_x, pos_y)      # draw the text
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   217
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   218
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   219
class GenStaticBitmap(wx.lib.statbmp.GenStaticBitmap):
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   220
    """ Customized GenStaticBitmap, fix transparency redraw bug on wx2.8/win32, 
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   221
    and accept image name as __init__ parameter, fail silently if file do not exist"""
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   222
    def __init__(self, parent, ID, bitmapname,
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   223
                 pos = wx.DefaultPosition, size = wx.DefaultSize,
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   224
                 style = 0,
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   225
                 name = "genstatbmp"):
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   226
        
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   227
        bitmappath = Bpath( "images", bitmapname)
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   228
        if os.path.isfile(bitmappath):
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   229
            bitmap = wx.Bitmap(bitmappath)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   230
        else:
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   231
            bitmap = None
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   232
        wx.lib.statbmp.GenStaticBitmap.__init__(self, parent, ID, bitmap,
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   233
                 pos, size,
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   234
                 style,
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   235
                 name)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   236
        
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   237
    def OnPaint(self, event):
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   238
        dc = wx.PaintDC(self)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   239
        colour = self.GetParent().GetBackgroundColour()
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   240
        dc.SetPen(wx.Pen(colour))
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   241
        dc.SetBrush(wx.Brush(colour ))
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   242
        dc.DrawRectangle(0, 0, *dc.GetSizeTuple())
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   243
        if self._bitmap:
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   244
            dc.DrawBitmap(self._bitmap, 0, 0, True)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   245
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   246
                        
1
6e9f24fd1b98 Adding Build Method for PLC program generating
lbessard
parents: 0
diff changeset
   247
class LogPseudoFile:
6e9f24fd1b98 Adding Build Method for PLC program generating
lbessard
parents: 0
diff changeset
   248
    """ Base class for file like objects to facilitate StdOut for the Shell."""
110
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
   249
    def __init__(self, output):
7
e20fa7257d41 Added stdout/stderr separation limitation and coloration
etisserant
parents: 6
diff changeset
   250
        self.red_white = wx.TextAttr("RED", "WHITE")
e20fa7257d41 Added stdout/stderr separation limitation and coloration
etisserant
parents: 6
diff changeset
   251
        self.red_yellow = wx.TextAttr("RED", "YELLOW")
e20fa7257d41 Added stdout/stderr separation limitation and coloration
etisserant
parents: 6
diff changeset
   252
        self.black_white = wx.TextAttr("BLACK", "WHITE")
e20fa7257d41 Added stdout/stderr separation limitation and coloration
etisserant
parents: 6
diff changeset
   253
        self.default_style = None
1
6e9f24fd1b98 Adding Build Method for PLC program generating
lbessard
parents: 0
diff changeset
   254
        self.output = output
6e9f24fd1b98 Adding Build Method for PLC program generating
lbessard
parents: 0
diff changeset
   255
22
9a0c535c3272 Pleliminary build process -- C code generation
etisserant
parents: 21
diff changeset
   256
    def write(self, s, style = None):
110
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
   257
        if style is None : style=self.black_white
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
   258
        self.output.Freeze(); 
22
9a0c535c3272 Pleliminary build process -- C code generation
etisserant
parents: 21
diff changeset
   259
        if self.default_style != style: 
9a0c535c3272 Pleliminary build process -- C code generation
etisserant
parents: 21
diff changeset
   260
            self.output.SetDefaultStyle(style)
9a0c535c3272 Pleliminary build process -- C code generation
etisserant
parents: 21
diff changeset
   261
            self.default_style = style
110
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
   262
        self.output.AppendText(s)
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
   263
        self.output.ScrollLines(s.count('\n')+1)
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
   264
        self.output.ShowPosition(self.output.GetLastPosition())
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
   265
        self.output.Thaw()
7
e20fa7257d41 Added stdout/stderr separation limitation and coloration
etisserant
parents: 6
diff changeset
   266
e20fa7257d41 Added stdout/stderr separation limitation and coloration
etisserant
parents: 6
diff changeset
   267
    def write_warning(self, s):
22
9a0c535c3272 Pleliminary build process -- C code generation
etisserant
parents: 21
diff changeset
   268
        self.write(s,self.red_white)
7
e20fa7257d41 Added stdout/stderr separation limitation and coloration
etisserant
parents: 6
diff changeset
   269
e20fa7257d41 Added stdout/stderr separation limitation and coloration
etisserant
parents: 6
diff changeset
   270
    def write_error(self, s):
22
9a0c535c3272 Pleliminary build process -- C code generation
etisserant
parents: 21
diff changeset
   271
        self.write(s,self.red_yellow)
1
6e9f24fd1b98 Adding Build Method for PLC program generating
lbessard
parents: 0
diff changeset
   272
6e9f24fd1b98 Adding Build Method for PLC program generating
lbessard
parents: 0
diff changeset
   273
    def flush(self):
6e9f24fd1b98 Adding Build Method for PLC program generating
lbessard
parents: 0
diff changeset
   274
        self.output.SetValue("")
6e9f24fd1b98 Adding Build Method for PLC program generating
lbessard
parents: 0
diff changeset
   275
    
6e9f24fd1b98 Adding Build Method for PLC program generating
lbessard
parents: 0
diff changeset
   276
    def isatty(self):
6e9f24fd1b98 Adding Build Method for PLC program generating
lbessard
parents: 0
diff changeset
   277
        return false
6e9f24fd1b98 Adding Build Method for PLC program generating
lbessard
parents: 0
diff changeset
   278
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
   279
[ID_BEREMIZ, ID_BEREMIZMAINSPLITTER, 
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   280
 ID_BEREMIZPLCCONFIG, ID_BEREMIZLOGCONSOLE, 
121
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   281
 ID_BEREMIZINSPECTOR] = [wx.NewId() for _init_ctrls in range(5)]
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
   282
127
36bb6be88a3b Adding icons to Beremiz menus
lbessard
parents: 126
diff changeset
   283
[ID_BEREMIZRUNMENUBUILD, ID_BEREMIZRUNMENUSIMULATE, 
36bb6be88a3b Adding icons to Beremiz menus
lbessard
parents: 126
diff changeset
   284
 ID_BEREMIZRUNMENURUN, ID_BEREMIZRUNMENUSAVELOG, 
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
   285
] = [wx.NewId() for _init_coll_EditMenu_Items in range(4)]
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
   286
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   287
class Beremiz(IDEFrame):
120
8c3150858dd3 create doc directory and add about.html + manual_beremiz.pdf
greg
parents: 119
diff changeset
   288
	
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
   289
    def _init_coll_FileMenu_Items(self, parent):
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   290
        AppendMenu(parent, help='', id=wx.ID_NEW,
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   291
              kind=wx.ITEM_NORMAL, text=_(u'New\tCTRL+N'))
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   292
        AppendMenu(parent, help='', id=wx.ID_OPEN,
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   293
              kind=wx.ITEM_NORMAL, text=_(u'Open\tCTRL+O'))
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   294
        AppendMenu(parent, help='', id=wx.ID_SAVE,
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   295
              kind=wx.ITEM_NORMAL, text=_(u'Save\tCTRL+S'))
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   296
        AppendMenu(parent, help='', id=wx.ID_CLOSE,
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   297
              kind=wx.ITEM_NORMAL, text=_(u'Close Tab\tCTRL+W'))
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   298
        AppendMenu(parent, help='', id=wx.ID_CLOSE_ALL,
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   299
              kind=wx.ITEM_NORMAL, text=_(u'Close Project'))
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
   300
        parent.AppendSeparator()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   301
        AppendMenu(parent, help='', id=wx.ID_PAGE_SETUP,
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   302
              kind=wx.ITEM_NORMAL, text=_(u'Page Setup'))
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   303
        AppendMenu(parent, help='', id=wx.ID_PREVIEW,
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   304
              kind=wx.ITEM_NORMAL, text=_(u'Preview'))
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   305
        AppendMenu(parent, help='', id=wx.ID_PRINT,
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   306
              kind=wx.ITEM_NORMAL, text=_(u'Print'))
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   307
        parent.AppendSeparator()
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   308
        AppendMenu(parent, help='', id=wx.ID_PROPERTIES,
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   309
              kind=wx.ITEM_NORMAL, text=_(u'Properties'))
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
   310
        parent.AppendSeparator()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   311
        AppendMenu(parent, help='', id=wx.ID_EXIT,
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   312
              kind=wx.ITEM_NORMAL, text=_(u'Quit\tCTRL+Q'))
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   313
        
127
36bb6be88a3b Adding icons to Beremiz menus
lbessard
parents: 126
diff changeset
   314
        self.Bind(wx.EVT_MENU, self.OnNewProjectMenu, id=wx.ID_NEW)
36bb6be88a3b Adding icons to Beremiz menus
lbessard
parents: 126
diff changeset
   315
        self.Bind(wx.EVT_MENU, self.OnOpenProjectMenu, id=wx.ID_OPEN)
36bb6be88a3b Adding icons to Beremiz menus
lbessard
parents: 126
diff changeset
   316
        self.Bind(wx.EVT_MENU, self.OnSaveProjectMenu, id=wx.ID_SAVE)
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   317
        self.Bind(wx.EVT_MENU, self.OnCloseTabMenu, id=wx.ID_CLOSE)
242
fc6d1988e4da Bug closing project in Beremiz when closing tab in PLCOpenEditor fixed
lbessard
parents: 235
diff changeset
   318
        self.Bind(wx.EVT_MENU, self.OnCloseProjectMenu, id=wx.ID_CLOSE_ALL)
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   319
        self.Bind(wx.EVT_MENU, self.OnPageSetupMenu, id=wx.ID_PAGE_SETUP)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   320
        self.Bind(wx.EVT_MENU, self.OnPreviewMenu, id=wx.ID_PREVIEW)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   321
        self.Bind(wx.EVT_MENU, self.OnPrintMenu, id=wx.ID_PRINT)
127
36bb6be88a3b Adding icons to Beremiz menus
lbessard
parents: 126
diff changeset
   322
        self.Bind(wx.EVT_MENU, self.OnPropertiesMenu, id=wx.ID_PROPERTIES)
36bb6be88a3b Adding icons to Beremiz menus
lbessard
parents: 126
diff changeset
   323
        self.Bind(wx.EVT_MENU, self.OnQuitMenu, id=wx.ID_EXIT)
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
   324
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
   325
    def _init_coll_HelpMenu_Items(self, parent):
127
36bb6be88a3b Adding icons to Beremiz menus
lbessard
parents: 126
diff changeset
   326
        parent.Append(help='', id=wx.ID_HELP,
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   327
              kind=wx.ITEM_NORMAL, text=_(u'Beremiz\tF1'))
127
36bb6be88a3b Adding icons to Beremiz menus
lbessard
parents: 126
diff changeset
   328
        parent.Append(help='', id=wx.ID_ABOUT,
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   329
              kind=wx.ITEM_NORMAL, text=_(u'About'))
127
36bb6be88a3b Adding icons to Beremiz menus
lbessard
parents: 126
diff changeset
   330
        self.Bind(wx.EVT_MENU, self.OnBeremizMenu, id=wx.ID_HELP)
36bb6be88a3b Adding icons to Beremiz menus
lbessard
parents: 126
diff changeset
   331
        self.Bind(wx.EVT_MENU, self.OnAboutMenu, id=wx.ID_ABOUT)
36bb6be88a3b Adding icons to Beremiz menus
lbessard
parents: 126
diff changeset
   332
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   333
    def _init_coll_PLCConfigMainSizer_Items(self, parent):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   334
        parent.AddSizer(self.PLCParamsSizer, 0, border=10, flag=wx.GROW|wx.TOP|wx.LEFT|wx.RIGHT)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   335
        parent.AddSizer(self.PluginTreeSizer, 0, border=10, flag=wx.BOTTOM|wx.LEFT|wx.RIGHT)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   336
        
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   337
    def _init_coll_PLCConfigMainSizer_Growables(self, parent):
67
862da764c5b5 Layout changed for making buttons at top of the frame always visible
lbessard
parents: 65
diff changeset
   338
        parent.AddGrowableCol(0)
862da764c5b5 Layout changed for making buttons at top of the frame always visible
lbessard
parents: 65
diff changeset
   339
        parent.AddGrowableRow(1)
862da764c5b5 Layout changed for making buttons at top of the frame always visible
lbessard
parents: 65
diff changeset
   340
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   341
    def _init_coll_PluginTreeSizer_Growables(self, parent):
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
   342
        parent.AddGrowableCol(0)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   343
        parent.AddGrowableCol(1)
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
   344
        
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   345
    def _init_beremiz_sizers(self):
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   346
        self.PLCConfigMainSizer = wx.FlexGridSizer(cols=1, hgap=2, rows=2, vgap=2)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   347
        self.PLCParamsSizer = wx.BoxSizer(wx.VERTICAL)
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   348
        #self.PluginTreeSizer = wx.FlexGridSizer(cols=3, hgap=0, rows=0, vgap=2)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   349
        self.PluginTreeSizer = wx.FlexGridSizer(cols=2, hgap=0, rows=0, vgap=2)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   350
        
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   351
        self._init_coll_PLCConfigMainSizer_Items(self.PLCConfigMainSizer)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   352
        self._init_coll_PLCConfigMainSizer_Growables(self.PLCConfigMainSizer)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   353
        self._init_coll_PluginTreeSizer_Growables(self.PluginTreeSizer)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   354
        
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   355
        self.PLCConfig.SetSizer(self.PLCConfigMainSizer)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   356
        
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
   357
    def _init_ctrls(self, prnt):
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   358
        IDEFrame._init_ctrls(self, prnt)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   359
        
121
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   360
        self.Bind(wx.EVT_MENU, self.OnOpenWidgetInspector, id=ID_BEREMIZINSPECTOR)
200
009fc5850157 Change shortcut for wx-inspector now ctrl-alt-i
etisserant
parents: 199
diff changeset
   361
        accel = wx.AcceleratorTable([wx.AcceleratorEntry(wx.ACCEL_CTRL|wx.ACCEL_ALT, ord('I'), ID_BEREMIZINSPECTOR)])
121
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   362
        self.SetAcceleratorTable(accel)
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
   363
        
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   364
        self.PLCConfig = wx.ScrolledWindow(id=ID_BEREMIZPLCCONFIG,
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   365
              name='PLCConfig', parent=self.LeftNoteBook, pos=wx.Point(0, 0),
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   366
              size=wx.Size(-1, -1), style=wx.TAB_TRAVERSAL|wx.SUNKEN_BORDER|wx.HSCROLL|wx.VSCROLL)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   367
        self.PLCConfig.SetBackgroundColour(wx.WHITE)
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   368
        self.PLCConfig.Bind(wx.EVT_LEFT_DOWN, self.OnPanelLeftDown)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   369
        self.PLCConfig.Bind(wx.EVT_SIZE, self.OnMoveWindow)
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   370
        self.BottomNoteBook.InsertPage(0, self.PLCConfig, _("Topology"), True)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   371
        
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   372
        self.LogConsole = wx.TextCtrl(id=ID_BEREMIZLOGCONSOLE, value='',
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   373
                  name='LogConsole', parent=self.BottomNoteBook, pos=wx.Point(0, 0),
71
e0bb49781b80 Improving Beremiz for using wx2.8 AUI
lbessard
parents: 69
diff changeset
   374
                  size=wx.Size(0, 0), style=wx.TE_MULTILINE|wx.TE_RICH2)
201
520d2416ff4d Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents: 200
diff changeset
   375
        self.LogConsole.Bind(wx.EVT_LEFT_DCLICK, self.OnLogConsoleDClick)
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   376
        self.BottomNoteBook.AddPage(self.LogConsole, _("Log Console"))
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   377
        
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   378
        self._init_beremiz_sizers()
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   379
417
a895ae50b737 Adding support for declaring PluginRoot outside of Beremiz
laurent
parents: 413
diff changeset
   380
    def __init__(self, parent, projectOpen=None, buildpath=None, plugin_root=None, debug=True):
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   381
        IDEFrame.__init__(self, parent, debug)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   382
        self.Config = wx.ConfigBase.Get()
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
   383
        
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
   384
        self.Log = LogPseudoFile(self.LogConsole)
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   385
        
290
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   386
        self.local_runtime = None
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   387
        self.runtime_port = None
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   388
        self.local_runtime_tmpdir = None
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   389
        
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
   390
        self.DisableEvents = False
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
   391
        
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   392
        self.PluginInfos = {}
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   393
        
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   394
        if projectOpen is not None and os.path.isdir(projectOpen):
290
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   395
            self.PluginRoot = PluginsRoot(self, self.Log)
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   396
            self.Controler = self.PluginRoot
408
6eaa1908507d Bug on DebugVariablePanel when opening project at start fixed
laurent
parents: 406
diff changeset
   397
            result = self.PluginRoot.LoadProject(projectOpen, buildpath)
6eaa1908507d Bug on DebugVariablePanel when opening project at start fixed
laurent
parents: 406
diff changeset
   398
            if not result:
6eaa1908507d Bug on DebugVariablePanel when opening project at start fixed
laurent
parents: 406
diff changeset
   399
                self.DebugVariablePanel.SetDataProducer(self.PluginRoot)
6eaa1908507d Bug on DebugVariablePanel when opening project at start fixed
laurent
parents: 406
diff changeset
   400
                self._Refresh(TYPESTREE, INSTANCESTREE, LIBRARYTREE)
6eaa1908507d Bug on DebugVariablePanel when opening project at start fixed
laurent
parents: 406
diff changeset
   401
                self.RefreshAll()
6eaa1908507d Bug on DebugVariablePanel when opening project at start fixed
laurent
parents: 406
diff changeset
   402
            else:
6eaa1908507d Bug on DebugVariablePanel when opening project at start fixed
laurent
parents: 406
diff changeset
   403
                self.ResetView()
6eaa1908507d Bug on DebugVariablePanel when opening project at start fixed
laurent
parents: 406
diff changeset
   404
                self.ShowErrorMessage(result)
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   405
        else:
417
a895ae50b737 Adding support for declaring PluginRoot outside of Beremiz
laurent
parents: 413
diff changeset
   406
            self.PluginRoot = plugin_root
a895ae50b737 Adding support for declaring PluginRoot outside of Beremiz
laurent
parents: 413
diff changeset
   407
            self.Controler = plugin_root
a895ae50b737 Adding support for declaring PluginRoot outside of Beremiz
laurent
parents: 413
diff changeset
   408
            if plugin_root is not None:
a895ae50b737 Adding support for declaring PluginRoot outside of Beremiz
laurent
parents: 413
diff changeset
   409
                self._Refresh(TYPESTREE, INSTANCESTREE, LIBRARYTREE)
a895ae50b737 Adding support for declaring PluginRoot outside of Beremiz
laurent
parents: 413
diff changeset
   410
                self.RefreshAll()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   411
        
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   412
        # Add beremiz's icon in top left corner of the frame
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   413
        self.SetIcon(wx.Icon(Bpath( "images", "brz.ico"), wx.BITMAP_TYPE_ICO))
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   414
        
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   415
        self.Bind(wx.EVT_CLOSE, self.OnCloseFrame)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   416
        
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   417
        self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU, DISPLAYMENU)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   418
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   419
    def RefreshTitle(self):
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   420
        name = _("Beremiz")
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   421
        if self.PluginRoot is not None:
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
   422
            projectname = self.PluginRoot.GetProjectName()
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
   423
            if self.PluginRoot.PlugTestModified():
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
   424
                projectname = "~%s~" % projectname
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
   425
            self.SetTitle("%s - %s" % (name, projectname))
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   426
        else:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   427
            self.SetTitle(name)
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   428
290
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   429
    def StartLocalRuntime(self, taskbaricon = True):
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   430
        if self.local_runtime is None or self.local_runtime.finished:
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   431
            # create temporary directory for runtime working directory
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   432
            self.local_runtime_tmpdir = tempfile.mkdtemp()
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   433
            # choose an arbitrary random port for runtime
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   434
            self.runtime_port = int(random.random() * 1000) + 61131
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   435
            # launch local runtime
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   436
            self.local_runtime = ProcessLogger(self.Log,
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   437
                                               "\"%s\" \"%s\" -p %s -i localhost %s %s"%(sys.executable,
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   438
                                                           Bpath("Beremiz_service.py"),
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   439
                                                           self.runtime_port,
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   440
                                                           {False : "-x 0", True :"-x 1"}[taskbaricon],
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   441
                                                           self.local_runtime_tmpdir),
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   442
                                                           no_gui=False)
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   443
            self.local_runtime.spin(timeout=500, keyword = "working", kill_it = False)
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   444
        return self.runtime_port
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   445
    
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   446
    def KillLocalRuntime(self):
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   447
        if self.local_runtime is not None:
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   448
            # shutdown local runtime
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   449
            self.local_runtime.kill(gently=False)
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   450
            # clear temp dir
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   451
            shutil.rmtree(self.local_runtime_tmpdir)
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   452
121
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   453
    def OnOpenWidgetInspector(self, evt):
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   454
        # Activate the widget inspection tool
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   455
        from wx.lib.inspection import InspectionTool
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   456
        if not InspectionTool().initialized:
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   457
            InspectionTool().Init()
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   458
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   459
        # Find a widget to be selected in the tree.  Use either the
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   460
        # one under the cursor, if any, or this frame.
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   461
        wnd = wx.FindWindowAtPointer()
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   462
        if not wnd:
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   463
            wnd = self
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   464
        InspectionTool().Show(wnd, True)
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   465
201
520d2416ff4d Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents: 200
diff changeset
   466
    def OnLogConsoleDClick(self, event):
520d2416ff4d Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents: 200
diff changeset
   467
        wx.CallAfter(self.SearchLineForError)
520d2416ff4d Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents: 200
diff changeset
   468
        event.Skip()
520d2416ff4d Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents: 200
diff changeset
   469
520d2416ff4d Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents: 200
diff changeset
   470
    def SearchLineForError(self):
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   471
        if self.PluginRoot is not None:
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   472
            text = self.LogConsole.GetRange(0, self.LogConsole.GetInsertionPoint())
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   473
            line = self.LogConsole.GetLineText(len(text.splitlines()) - 1)
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   474
            result = MATIEC_ERROR_MODEL.match(line)
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   475
            if result is not None:
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   476
                first_line, first_column, last_line, last_column, error = result.groups()
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   477
                infos = self.PluginRoot.ShowError(self.Log,
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   478
                                                  (int(first_line), int(first_column)), 
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   479
                                                  (int(last_line), int(last_column)))
201
520d2416ff4d Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents: 200
diff changeset
   480
		
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   481
    def OnCloseFrame(self, event):
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   482
        if self.PluginRoot is not None:
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   483
            if self.PluginRoot.ProjectTestModified():
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   484
                dialog = wx.MessageDialog(self,
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   485
                                          _("Save changes ?"),
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   486
                                          _("Close Application"), 
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   487
                                          wx.YES_NO|wx.CANCEL|wx.ICON_QUESTION)
119
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   488
                answer = dialog.ShowModal()
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   489
                dialog.Destroy()
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   490
                if answer == wx.ID_YES:
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   491
                    self.PluginRoot.SaveProject()
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   492
                    event.Skip()
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   493
                elif answer == wx.ID_NO:
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   494
                    event.Skip()
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   495
                    return
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   496
                else:
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   497
                    event.Veto()
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   498
                    return
220
ad3292145fc2 Fixed local PLC runtime kill on aborted quit attempt.
etisserant
parents: 218
diff changeset
   499
290
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   500
        self.KillLocalRuntime()
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   501
        
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   502
        event.Skip()
62
ddf0cdd71558 Adding support for refresh block list where beremiz loose focus
lbessard
parents: 60
diff changeset
   503
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   504
    def OnMoveWindow(self, event):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   505
        self.GetBestSize()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   506
        self.RefreshScrollBars()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   507
        event.Skip()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   508
    
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   509
    def OnPanelLeftDown(self, event):
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   510
        focused = self.FindFocus()
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   511
        if isinstance(focused, TextCtrlAutoComplete.TextCtrlAutoComplete):
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   512
            focused._showDropDown(False)
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   513
        event.Skip()
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   514
    
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   515
    def RefreshFileMenu(self):
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   516
        if self.PluginRoot is not None:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   517
            selected = self.TabsOpened.GetSelection()
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   518
            if selected >= 0:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   519
                graphic_viewer = isinstance(self.TabsOpened.GetPage(selected), Viewer)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   520
            else:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   521
                graphic_viewer = False
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   522
            if self.TabsOpened.GetPageCount() > 0:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   523
                self.FileMenu.Enable(wx.ID_CLOSE, True)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   524
                if graphic_viewer:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   525
                    self.FileMenu.Enable(wx.ID_PREVIEW, True)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   526
                    self.FileMenu.Enable(wx.ID_PRINT, True)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   527
                else:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   528
                    self.FileMenu.Enable(wx.ID_PREVIEW, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   529
                    self.FileMenu.Enable(wx.ID_PRINT, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   530
            else:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   531
                self.FileMenu.Enable(wx.ID_CLOSE, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   532
                self.FileMenu.Enable(wx.ID_PREVIEW, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   533
                self.FileMenu.Enable(wx.ID_PRINT, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   534
            self.FileMenu.Enable(wx.ID_PAGE_SETUP, True)
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   535
            self.FileMenu.Enable(wx.ID_SAVE, True)
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   536
            self.FileMenu.Enable(wx.ID_PROPERTIES, True)
249
a770187273e9 Bug with Open, Reopen and Close Project fixed
lbessard
parents: 248
diff changeset
   537
            self.FileMenu.Enable(wx.ID_CLOSE_ALL, True)
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   538
        else:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   539
            self.FileMenu.Enable(wx.ID_CLOSE, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   540
            self.FileMenu.Enable(wx.ID_PAGE_SETUP, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   541
            self.FileMenu.Enable(wx.ID_PREVIEW, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   542
            self.FileMenu.Enable(wx.ID_PRINT, False)
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   543
            self.FileMenu.Enable(wx.ID_SAVE, False)
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   544
            self.FileMenu.Enable(wx.ID_PROPERTIES, False)
249
a770187273e9 Bug with Open, Reopen and Close Project fixed
lbessard
parents: 248
diff changeset
   545
            self.FileMenu.Enable(wx.ID_CLOSE_ALL, False)
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   546
        
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   547
    def RefreshScrollBars(self):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   548
        xstart, ystart = self.PLCConfig.GetViewStart()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   549
        window_size = self.PLCConfig.GetClientSize()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   550
        sizer = self.PLCConfig.GetSizer()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   551
        if sizer:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   552
            maxx, maxy = sizer.GetMinSize()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   553
            self.PLCConfig.SetScrollbars(SCROLLBAR_UNIT, SCROLLBAR_UNIT, 
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
   554
                maxx / SCROLLBAR_UNIT, maxy / SCROLLBAR_UNIT, 
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
   555
                max(0, min(xstart, (maxx - window_size[0]) / SCROLLBAR_UNIT)), 
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
   556
                max(0, min(ystart, (maxy - window_size[1]) / SCROLLBAR_UNIT)))
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   557
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   558
    def RefreshPLCParams(self):
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   559
        self.Freeze()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   560
        self.ClearSizer(self.PLCParamsSizer)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   561
        
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   562
        if self.PluginRoot is not None:    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   563
            plcwindow = wx.Panel(self.PLCConfig, -1, size=wx.Size(-1, -1))
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   564
            if self.PluginRoot.PlugTestModified():
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   565
                bkgdclr = CHANGED_TITLE_COLOUR
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   566
            else:
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   567
                bkgdclr = TITLE_COLOUR
129
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
   568
                
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
   569
            if self.PluginRoot not in self.PluginInfos:
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   570
                self.PluginInfos[self.PluginRoot] = {"right_visible" : False}
129
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
   571
            
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   572
            plcwindow.SetBackgroundColour(TITLE_COLOUR)
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   573
            plcwindow.Bind(wx.EVT_LEFT_DOWN, self.OnPanelLeftDown)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   574
            self.PLCParamsSizer.AddWindow(plcwindow, 0, border=0, flag=wx.GROW)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   575
            
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   576
            plcwindowsizer = wx.BoxSizer(wx.HORIZONTAL)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   577
            plcwindow.SetSizer(plcwindowsizer)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   578
            
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   579
            st = wx.StaticText(plcwindow, -1)
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   580
            st.SetFont(wx.Font(faces["size"], wx.DEFAULT, wx.NORMAL, wx.BOLD, faceName = faces["helv"]))
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   581
            st.SetLabel(self.PluginRoot.GetProjectName())
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   582
            plcwindowsizer.AddWindow(st, 0, border=5, flag=wx.ALL|wx.ALIGN_CENTER)
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   583
            
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   584
            addbutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   585
            addbutton = wx.lib.buttons.GenBitmapButton(id=addbutton_id, bitmap=wx.Bitmap(Bpath( 'images', 'Add.png')),
197
a50b5fa04c57 SVG/Inkscape based icon generation script + SVG drawing.
etisserant
parents: 193
diff changeset
   586
                  name='AddPluginButton', parent=plcwindow, pos=wx.Point(0, 0),
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   587
                  size=wx.Size(16, 16), style=wx.NO_BORDER)
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   588
            addbutton.SetToolTipString(_("Add a sub plugin"))
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   589
            addbutton.Bind(wx.EVT_BUTTON, self.Gen_AddPluginMenu(self.PluginRoot), id=addbutton_id)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   590
            plcwindowsizer.AddWindow(addbutton, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   591
    
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   592
            plcwindowmainsizer = wx.BoxSizer(wx.VERTICAL)
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   593
            plcwindowsizer.AddSizer(plcwindowmainsizer, 0, border=5, flag=wx.ALL)
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   594
            
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   595
            plcwindowbuttonsizer = wx.BoxSizer(wx.HORIZONTAL)
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   596
            plcwindowmainsizer.AddSizer(plcwindowbuttonsizer, 0, border=0, flag=wx.ALIGN_CENTER)
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   597
            
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   598
            msizer = self.GenerateMethodButtonSizer(self.PluginRoot, plcwindow, not self.PluginInfos[self.PluginRoot]["right_visible"])
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   599
            plcwindowbuttonsizer.AddSizer(msizer, 0, border=0, flag=wx.GROW)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   600
            
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   601
            paramswindow = wx.Panel(plcwindow, -1, size=wx.Size(-1, -1), style=wx.TAB_TRAVERSAL)
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   602
            paramswindow.SetBackgroundColour(TITLE_COLOUR)
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   603
            paramswindow.Bind(wx.EVT_LEFT_DOWN, self.OnPanelLeftDown)
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   604
            plcwindowbuttonsizer.AddWindow(paramswindow, 0, border=0, flag=0)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   605
            
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   606
            psizer = wx.BoxSizer(wx.HORIZONTAL)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   607
            paramswindow.SetSizer(psizer)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   608
            
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   609
            plugin_infos = self.PluginRoot.GetParamsAttributes()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   610
            self.RefreshSizerElement(paramswindow, psizer, self.PluginRoot, plugin_infos, None, False)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   611
            
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   612
            if not self.PluginInfos[self.PluginRoot]["right_visible"]:
129
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
   613
                paramswindow.Hide()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   614
            
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   615
            minimizebutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   616
            minimizebutton = wx.lib.buttons.GenBitmapToggleButton(id=minimizebutton_id, bitmap=wx.Bitmap(Bpath( 'images', 'Maximize.png')),
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   617
                  name='MinimizeButton', parent=plcwindow, pos=wx.Point(0, 0),
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   618
                  size=wx.Size(24, 24), style=wx.NO_BORDER)
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   619
            make_genbitmaptogglebutton_flat(minimizebutton)
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   620
            minimizebutton.SetBitmapSelected(wx.Bitmap(Bpath( 'images', 'Minimize.png')))
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   621
            minimizebutton.SetToggle(self.PluginInfos[self.PluginRoot]["right_visible"])
99
e5e9cb0f027f Beremiz layout improved
lbessard
parents: 98
diff changeset
   622
            plcwindowbuttonsizer.AddWindow(minimizebutton, 0, border=5, flag=wx.ALL)
e5e9cb0f027f Beremiz layout improved
lbessard
parents: 98
diff changeset
   623
            
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   624
            def togglewindow(event):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   625
                if minimizebutton.GetToggle():
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   626
                    paramswindow.Show()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   627
                    msizer.SetCols(1)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   628
                else:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   629
                    paramswindow.Hide()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   630
                    msizer.SetCols(len(self.PluginRoot.PluginMethods))
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   631
                self.PluginInfos[self.PluginRoot]["right_visible"] = minimizebutton.GetToggle()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   632
                self.PLCConfigMainSizer.Layout()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   633
                self.RefreshScrollBars()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   634
                event.Skip()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   635
            minimizebutton.Bind(wx.EVT_BUTTON, togglewindow, id=minimizebutton_id)
101
93e487ccee14 Display bugs on Windows fixed
lbessard
parents: 99
diff changeset
   636
        
129
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
   637
            self.PluginInfos[self.PluginRoot]["main"] = plcwindow
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
   638
            self.PluginInfos[self.PluginRoot]["params"] = paramswindow
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   639
            
101
93e487ccee14 Display bugs on Windows fixed
lbessard
parents: 99
diff changeset
   640
        self.PLCConfigMainSizer.Layout()
93e487ccee14 Display bugs on Windows fixed
lbessard
parents: 99
diff changeset
   641
        self.RefreshScrollBars()
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   642
        self.Thaw()
99
e5e9cb0f027f Beremiz layout improved
lbessard
parents: 98
diff changeset
   643
314
ad4db7099355 Bug with fonts on some systems fixed
lbessard
parents: 308
diff changeset
   644
    normal_bt_font=wx.Font(faces["size"] / 3, wx.DEFAULT, wx.NORMAL, wx.NORMAL, faceName = faces["helv"])
ad4db7099355 Bug with fonts on some systems fixed
lbessard
parents: 308
diff changeset
   645
    mouseover_bt_font=wx.Font(faces["size"] / 3, wx.DEFAULT, wx.NORMAL, wx.NORMAL, underline=True, faceName = faces["helv"])
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   646
    def GenerateMethodButtonSizer(self, plugin, parent, horizontal = True):
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   647
        if horizontal:
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   648
            msizer = wx.FlexGridSizer(cols=len(plugin.PluginMethods))
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   649
        else:
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   650
            msizer = wx.FlexGridSizer(cols=1)
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   651
        for plugin_method in plugin.PluginMethods:
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
   652
            if "method" in plugin_method and plugin_method.get("shown",True):
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   653
                id = wx.NewId()
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   654
                label = plugin_method["name"]
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   655
                button = GenBitmapTextButton(id=id, parent=parent,
230
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   656
                    bitmap=wx.Bitmap(Bpath( "%s.png"%plugin_method.get("bitmap", os.path.join("images", "Unknown")))), label=label, 
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   657
                    name=label, pos=wx.DefaultPosition, style=wx.NO_BORDER)
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   658
                button.SetFont(self.normal_bt_font)
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   659
                button.SetToolTipString(plugin_method["tooltip"])
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   660
                button.Bind(wx.EVT_BUTTON, self.GetButtonCallBackFunction(plugin, plugin_method["method"]), id=id)
230
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   661
                # a fancy underline on mouseover
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   662
                def setFontStyle(b, s):
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   663
                    def fn(event):
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   664
                        b.SetFont(s)
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   665
                        b.Refresh()
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   666
                        event.Skip()
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   667
                    return fn
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   668
                button.Bind(wx.EVT_ENTER_WINDOW, setFontStyle(button, self.mouseover_bt_font))
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   669
                button.Bind(wx.EVT_LEAVE_WINDOW, setFontStyle(button, self.normal_bt_font))
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   670
                #hack to force size to mini
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   671
                if not plugin_method.get("enabled",True):
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   672
                    button.Disable()
230
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   673
                msizer.AddWindow(button, 0, border=0, flag=wx.ALIGN_CENTER)
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   674
        return msizer
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   675
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
   676
    def RefreshPluginTree(self):
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   677
        self.Freeze()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   678
        self.ClearSizer(self.PluginTreeSizer)
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   679
        if self.PluginRoot is not None:
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   680
            for child in self.PluginRoot.IECSortedChilds():
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   681
                self.GenerateTreeBranch(child)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   682
                if not self.PluginInfos[child]["expanded"]:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   683
                    self.CollapsePlugin(child)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   684
        self.PLCConfigMainSizer.Layout()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   685
        self.RefreshScrollBars()
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   686
        self.Thaw()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   687
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   688
    def SetPluginParamsAttribute(self, plugin, *args, **kwargs):
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   689
        res, StructChanged = plugin.SetParamsAttribute(*args, **kwargs)
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   690
        if StructChanged:
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   691
            wx.CallAfter(self.RefreshPluginTree)
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   692
        else:
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   693
            if plugin == self.PluginRoot:
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   694
                bkgdclr = CHANGED_TITLE_COLOUR
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   695
                items = ["main", "params"]
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   696
            else:
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   697
                bkgdclr = CHANGED_WINDOW_COLOUR
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   698
                items = ["left", "right", "params"]
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   699
            for i in items:
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   700
                self.PluginInfos[plugin][i].SetBackgroundColour(bkgdclr)
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   701
                self.PluginInfos[plugin][i].Refresh()
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   702
        return res
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   703
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   704
    def ExpandPlugin(self, plugin, force = False):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   705
        for child in self.PluginInfos[plugin]["children"]:
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   706
            self.PluginInfos[child]["left"].Show()
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   707
            self.PluginInfos[child]["right"].Show()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   708
            if force or not self.PluginInfos[child]["expanded"]:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   709
                self.ExpandPlugin(child, force)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   710
                if force:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   711
                    self.PluginInfos[child]["expanded"] = True
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   712
        locations_infos = self.PluginInfos[plugin].get("locations_infos", None)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   713
        if locations_infos is not None:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   714
            if force or locations_infos["root"]["expanded"]:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   715
                self.ExpandLocation(locations_infos, "root", force)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   716
                if force:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   717
                    locations_infos["root"]["expanded"] = True
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   718
                
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   719
    
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   720
    def CollapsePlugin(self, plugin, force = False):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   721
        for child in self.PluginInfos[plugin]["children"]:
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   722
            self.PluginInfos[child]["left"].Hide()
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   723
            self.PluginInfos[child]["right"].Hide()
405
7bbbcddb72db Bugs when expanded and collapsing plugin tree and location tree fixed
laurent
parents: 404
diff changeset
   724
            self.CollapsePlugin(child, force)
7bbbcddb72db Bugs when expanded and collapsing plugin tree and location tree fixed
laurent
parents: 404
diff changeset
   725
            if force:
7bbbcddb72db Bugs when expanded and collapsing plugin tree and location tree fixed
laurent
parents: 404
diff changeset
   726
                self.PluginInfos[child]["expanded"] = False
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   727
        locations_infos = self.PluginInfos[plugin].get("locations_infos", None)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   728
        if locations_infos is not None:
405
7bbbcddb72db Bugs when expanded and collapsing plugin tree and location tree fixed
laurent
parents: 404
diff changeset
   729
            self.CollapseLocation(locations_infos, "root", force)
7bbbcddb72db Bugs when expanded and collapsing plugin tree and location tree fixed
laurent
parents: 404
diff changeset
   730
            if force:
7bbbcddb72db Bugs when expanded and collapsing plugin tree and location tree fixed
laurent
parents: 404
diff changeset
   731
                locations_infos["root"]["expanded"] = False
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   732
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   733
    def ExpandLocation(self, locations_infos, group, force = False):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   734
        for child in locations_infos[group]["children"]:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   735
            locations_infos[child]["left"].Show()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   736
            locations_infos[child]["right"].Show()
405
7bbbcddb72db Bugs when expanded and collapsing plugin tree and location tree fixed
laurent
parents: 404
diff changeset
   737
            if force or locations_infos[child]["expanded"]:
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   738
                self.ExpandLocation(locations_infos, child, force)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   739
                if force:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   740
                    locations_infos[child]["expanded"] = True
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   741
    
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   742
    def CollapseLocation(self, locations_infos, group, force = False):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   743
        for child in locations_infos[group]["children"]:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   744
            locations_infos[child]["left"].Hide()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   745
            locations_infos[child]["right"].Hide()
405
7bbbcddb72db Bugs when expanded and collapsing plugin tree and location tree fixed
laurent
parents: 404
diff changeset
   746
            self.CollapseLocation(locations_infos, child, force)
7bbbcddb72db Bugs when expanded and collapsing plugin tree and location tree fixed
laurent
parents: 404
diff changeset
   747
            if force:
7bbbcddb72db Bugs when expanded and collapsing plugin tree and location tree fixed
laurent
parents: 404
diff changeset
   748
                locations_infos[child]["expanded"] = False
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   749
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   750
    def GenerateTreeBranch(self, plugin):
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   751
        leftwindow = wx.Panel(self.PLCConfig, -1, size=wx.Size(-1, -1))
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   752
        if plugin.PlugTestModified():
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   753
            bkgdclr=CHANGED_WINDOW_COLOUR
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   754
        else:
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   755
            bkgdclr=WINDOW_COLOUR
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   756
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   757
        leftwindow.SetBackgroundColour(bkgdclr)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   758
        
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   759
        if not self.PluginInfos.has_key(plugin):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   760
            self.PluginInfos[plugin] = {"expanded" : False, "right_visible" : False}
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   761
            
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   762
        self.PluginInfos[plugin]["children"] = plugin.IECSortedChilds()
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   763
        plugin_locations = []
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   764
        if len(self.PluginInfos[plugin]["children"]) == 0:
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   765
            plugin_locations = plugin.GetVariableLocationTree()["children"]
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   766
            if not self.PluginInfos[plugin].has_key("locations_infos"):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   767
                self.PluginInfos[plugin]["locations_infos"] = {"root": {"expanded" : False}}
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   768
                
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   769
            self.PluginInfos[plugin]["locations_infos"]["root"]["children"] = []
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   770
        
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   771
        self.PluginTreeSizer.AddWindow(leftwindow, 0, border=0, flag=wx.GROW)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   772
        
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   773
        leftwindowsizer = wx.FlexGridSizer(cols=1, rows=2)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   774
        leftwindowsizer.AddGrowableCol(0)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   775
        leftwindow.SetSizer(leftwindowsizer)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   776
        
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   777
        leftbuttonmainsizer = wx.FlexGridSizer(cols=3, rows=1)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   778
        leftbuttonmainsizer.AddGrowableCol(0)
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   779
        leftwindowsizer.AddSizer(leftbuttonmainsizer, 0, border=5, flag=wx.GROW|wx.LEFT|wx.RIGHT) #|wx.TOP
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   780
        
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   781
        leftbuttonsizer = wx.BoxSizer(wx.HORIZONTAL)
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   782
        leftbuttonmainsizer.AddSizer(leftbuttonsizer, 0, border=5, flag=wx.GROW|wx.RIGHT)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   783
        
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   784
        leftsizer = wx.BoxSizer(wx.VERTICAL)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   785
        leftbuttonsizer.AddSizer(leftsizer, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER_VERTICAL)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   786
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   787
        rolesizer = wx.BoxSizer(wx.HORIZONTAL)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   788
        leftsizer.AddSizer(rolesizer, 0, border=0, flag=wx.GROW|wx.RIGHT)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   789
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   790
        enablebutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   791
        enablebutton = wx.lib.buttons.GenBitmapToggleButton(id=enablebutton_id, bitmap=wx.Bitmap(Bpath( 'images', 'Disabled.png')),
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   792
              name='EnableButton', parent=leftwindow, size=wx.Size(16, 16), pos=wx.Point(0, 0), style=0)#wx.NO_BORDER)
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   793
        enablebutton.SetToolTipString(_("Enable/Disable this plugin"))
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   794
        make_genbitmaptogglebutton_flat(enablebutton)
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   795
        enablebutton.SetBitmapSelected(wx.Bitmap(Bpath( 'images', 'Enabled.png')))
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   796
        enablebutton.SetToggle(plugin.MandatoryParams[1].getEnabled())
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   797
        def toggleenablebutton(event):
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
   798
            res = self.SetPluginParamsAttribute(plugin, "BaseParams.Enabled", enablebutton.GetToggle())
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   799
            enablebutton.SetToggle(res)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   800
            event.Skip()
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   801
        enablebutton.Bind(wx.EVT_BUTTON, toggleenablebutton, id=enablebutton_id)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   802
        rolesizer.AddWindow(enablebutton, 0, border=0, flag=wx.RIGHT|wx.ALIGN_CENTER_VERTICAL)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   803
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   804
        roletext = wx.StaticText(leftwindow, -1)
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   805
        roletext.SetLabel(plugin.PlugHelp)
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
   806
        rolesizer.AddWindow(roletext, 0, border=5, flag=wx.RIGHT|wx.ALIGN_LEFT)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   807
        
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   808
        plugin_IECChannel = plugin.BaseParams.getIEC_Channel()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   809
        
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   810
        iecsizer = wx.BoxSizer(wx.HORIZONTAL)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   811
        leftsizer.AddSizer(iecsizer, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER_VERTICAL)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   812
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   813
        st = wx.StaticText(leftwindow, -1)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   814
        st.SetFont(wx.Font(faces["size"], wx.DEFAULT, wx.NORMAL, wx.BOLD, faceName = faces["helv"]))
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   815
        st.SetLabel(plugin.GetFullIEC_Channel())
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   816
        iecsizer.AddWindow(st, 0, border=0, flag=0)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   817
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   818
        updownsizer = wx.BoxSizer(wx.VERTICAL)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   819
        iecsizer.AddSizer(updownsizer, 0, border=5, flag=wx.LEFT|wx.ALIGN_CENTER_VERTICAL)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   820
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   821
        if plugin_IECChannel > 0:
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   822
            ieccdownbutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   823
            ieccdownbutton = wx.lib.buttons.GenBitmapButton(id=ieccdownbutton_id, bitmap=wx.Bitmap(Bpath( 'images', 'IECCDown.png')),
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   824
                  name='IECCDownButton', parent=leftwindow, pos=wx.Point(0, 0),
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   825
                  size=wx.Size(16, 16), style=wx.NO_BORDER)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   826
            ieccdownbutton.Bind(wx.EVT_BUTTON, self.GetItemChannelChangedFunction(plugin, plugin_IECChannel - 1), id=ieccdownbutton_id)
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   827
            updownsizer.AddWindow(ieccdownbutton, 0, border=0, flag=wx.ALIGN_LEFT)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   828
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   829
        ieccupbutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   830
        ieccupbutton = wx.lib.buttons.GenBitmapTextButton(id=ieccupbutton_id, bitmap=wx.Bitmap(Bpath( 'images', 'IECCUp.png')),
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   831
              name='IECCUpButton', parent=leftwindow, pos=wx.Point(0, 0),
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   832
              size=wx.Size(16, 16), style=wx.NO_BORDER)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   833
        ieccupbutton.Bind(wx.EVT_BUTTON, self.GetItemChannelChangedFunction(plugin, plugin_IECChannel + 1), id=ieccupbutton_id)
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   834
        updownsizer.AddWindow(ieccupbutton, 0, border=0, flag=wx.ALIGN_LEFT)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   835
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   836
        adddeletesizer = wx.BoxSizer(wx.VERTICAL)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   837
        iecsizer.AddSizer(adddeletesizer, 0, border=5, flag=wx.LEFT|wx.ALIGN_CENTER_VERTICAL)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   838
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   839
        deletebutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   840
        deletebutton = wx.lib.buttons.GenBitmapButton(id=deletebutton_id, bitmap=wx.Bitmap(Bpath( 'images', 'Delete.png')),
197
a50b5fa04c57 SVG/Inkscape based icon generation script + SVG drawing.
etisserant
parents: 193
diff changeset
   841
              name='DeletePluginButton', parent=leftwindow, pos=wx.Point(0, 0),
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   842
              size=wx.Size(16, 16), style=wx.NO_BORDER)
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   843
        deletebutton.SetToolTipString(_("Delete this plugin"))
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   844
        deletebutton.Bind(wx.EVT_BUTTON, self.GetDeleteButtonFunction(plugin), id=deletebutton_id)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   845
        adddeletesizer.AddWindow(deletebutton, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   846
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   847
        if len(plugin.PlugChildsTypes) > 0:
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   848
            addbutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   849
            addbutton = wx.lib.buttons.GenBitmapButton(id=addbutton_id, bitmap=wx.Bitmap(Bpath( 'images', 'Add.png')),
197
a50b5fa04c57 SVG/Inkscape based icon generation script + SVG drawing.
etisserant
parents: 193
diff changeset
   850
                  name='AddPluginButton', parent=leftwindow, pos=wx.Point(0, 0),
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   851
                  size=wx.Size(16, 16), style=wx.NO_BORDER)
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   852
            addbutton.SetToolTipString(_("Add a sub plugin"))
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   853
            addbutton.Bind(wx.EVT_BUTTON, self.Gen_AddPluginMenu(plugin), id=addbutton_id)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   854
            adddeletesizer.AddWindow(addbutton, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   855
        
199
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   856
        expandbutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   857
        expandbutton = wx.lib.buttons.GenBitmapToggleButton(id=expandbutton_id, bitmap=wx.Bitmap(Bpath( 'images', 'plus.png')),
199
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   858
              name='ExpandButton', parent=leftwindow, pos=wx.Point(0, 0),
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   859
              size=wx.Size(13, 13), style=wx.NO_BORDER)
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   860
        expandbutton.labelDelta = 0
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   861
        expandbutton.SetBezelWidth(0)
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   862
        expandbutton.SetUseFocusIndicator(False)
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   863
        expandbutton.SetBitmapSelected(wx.Bitmap(Bpath( 'images', 'minus.png')))
199
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   864
            
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   865
        if len(self.PluginInfos[plugin]["children"]) > 0:
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   866
            expandbutton.SetToggle(self.PluginInfos[plugin]["expanded"])
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   867
            def togglebutton(event):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   868
                if expandbutton.GetToggle():
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   869
                    self.ExpandPlugin(plugin)
89
0ab2868c6aa6 Added right aligment of parameteres blocks
etisserant
parents: 88
diff changeset
   870
                else:
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   871
                    self.CollapsePlugin(plugin)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   872
                self.PluginInfos[plugin]["expanded"] = expandbutton.GetToggle()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   873
                self.PLCConfigMainSizer.Layout()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   874
                self.RefreshScrollBars()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   875
                event.Skip()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   876
            expandbutton.Bind(wx.EVT_BUTTON, togglebutton, id=expandbutton_id)
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   877
        elif len(plugin_locations) > 0:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   878
            locations_infos = self.PluginInfos[plugin]["locations_infos"]
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   879
            expandbutton.SetToggle(locations_infos["root"]["expanded"])
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   880
            def togglebutton(event):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   881
                if expandbutton.GetToggle():
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   882
                    self.ExpandLocation(locations_infos, "root")
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   883
                else:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   884
                    self.CollapseLocation(locations_infos, "root")
406
18811cff50e6 Bug when expanded and collapsing plugin tree fixed
laurent
parents: 405
diff changeset
   885
                self.PluginInfos[plugin]["expanded"] = expandbutton.GetToggle()
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   886
                locations_infos["root"]["expanded"] = expandbutton.GetToggle()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   887
                self.PLCConfigMainSizer.Layout()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   888
                self.RefreshScrollBars()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   889
                event.Skip()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   890
            expandbutton.Bind(wx.EVT_BUTTON, togglebutton, id=expandbutton_id)
199
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   891
        else:
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   892
            expandbutton.Enable(False)
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   893
        iecsizer.AddWindow(expandbutton, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER_VERTICAL)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   894
        
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   895
        tc_id = wx.NewId()
199
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   896
        tc = wx.TextCtrl(leftwindow, tc_id, size=wx.Size(150, 25), style=wx.NO_BORDER)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   897
        tc.SetFont(wx.Font(faces["size"] * 0.75, wx.DEFAULT, wx.NORMAL, wx.BOLD, faceName = faces["helv"]))
214
b4531bf9bdb3 Modification in catched wxTextCtrl events
lbessard
parents: 203
diff changeset
   898
        tc.ChangeValue(plugin.MandatoryParams[1].getName())
b4531bf9bdb3 Modification in catched wxTextCtrl events
lbessard
parents: 203
diff changeset
   899
        tc.Bind(wx.EVT_TEXT, self.GetTextCtrlCallBackFunction(tc, plugin, "BaseParams.Name"), id=tc_id)
199
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   900
        iecsizer.AddWindow(tc, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER_VERTICAL)
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   901
       
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   902
        rightwindow = wx.Panel(self.PLCConfig, -1, size=wx.Size(-1, -1))
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   903
        rightwindow.SetBackgroundColour(bkgdclr)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   904
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   905
        self.PluginTreeSizer.AddWindow(rightwindow, 0, border=0, flag=wx.GROW)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   906
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   907
        rightwindowmainsizer = wx.BoxSizer(wx.VERTICAL)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   908
        rightwindow.SetSizer(rightwindowmainsizer)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   909
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   910
        rightwindowsizer = wx.FlexGridSizer(cols=2, rows=1)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   911
        rightwindowsizer.AddGrowableCol(1)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   912
        rightwindowsizer.AddGrowableRow(0)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   913
        rightwindowmainsizer.AddSizer(rightwindowsizer, 0, border=8, flag=wx.TOP|wx.GROW)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   914
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   915
        msizer = self.GenerateMethodButtonSizer(plugin, rightwindow, not self.PluginInfos[plugin]["right_visible"])
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   916
        rightwindowsizer.AddSizer(msizer, 0, border=0, flag=wx.GROW)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   917
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   918
        rightparamssizer = wx.BoxSizer(wx.HORIZONTAL)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   919
        rightwindowsizer.AddSizer(rightparamssizer, 0, border=0, flag=wx.ALIGN_RIGHT)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   920
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   921
        paramswindow = wx.Panel(rightwindow, -1, size=wx.Size(-1, -1))
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   922
        paramswindow.SetBackgroundColour(bkgdclr)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   923
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   924
        psizer = wx.BoxSizer(wx.HORIZONTAL)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   925
        paramswindow.SetSizer(psizer)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   926
        self.PluginInfos[plugin]["params"] = paramswindow
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   927
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   928
        rightparamssizer.AddWindow(paramswindow, 0, border=5, flag=wx.ALL)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   929
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   930
        plugin_infos = plugin.GetParamsAttributes()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   931
        self.RefreshSizerElement(paramswindow, psizer, plugin, plugin_infos, None, False)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   932
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   933
        if not self.PluginInfos[plugin]["right_visible"]:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   934
            paramswindow.Hide()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   935
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   936
        rightminimizebutton_id = wx.NewId()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   937
        rightminimizebutton = wx.lib.buttons.GenBitmapToggleButton(id=rightminimizebutton_id, bitmap=wx.Bitmap(Bpath( 'images', 'Maximize.png')),
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   938
              name='MinimizeButton', parent=rightwindow, pos=wx.Point(0, 0),
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   939
              size=wx.Size(24, 24), style=wx.NO_BORDER)
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   940
        make_genbitmaptogglebutton_flat(rightminimizebutton)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   941
        rightminimizebutton.SetBitmapSelected(wx.Bitmap(Bpath( 'images', 'Minimize.png')))
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   942
        rightminimizebutton.SetToggle(self.PluginInfos[plugin]["right_visible"])
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   943
        rightparamssizer.AddWindow(rightminimizebutton, 0, border=5, flag=wx.ALL)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   944
                    
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   945
        def togglerightwindow(event):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   946
            if rightminimizebutton.GetToggle():
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   947
                rightparamssizer.Show(0)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   948
                msizer.SetCols(1)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   949
            else:
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   950
                rightparamssizer.Hide(0)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   951
                msizer.SetCols(len(plugin.PluginMethods))
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   952
            self.PluginInfos[plugin]["right_visible"] = rightminimizebutton.GetToggle()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   953
            self.PLCConfigMainSizer.Layout()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   954
            self.RefreshScrollBars()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   955
            event.Skip()
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   956
        rightminimizebutton.Bind(wx.EVT_BUTTON, togglerightwindow, id=rightminimizebutton_id)
99
e5e9cb0f027f Beremiz layout improved
lbessard
parents: 98
diff changeset
   957
        
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   958
        self.PluginInfos[plugin]["left"] = leftwindow
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   959
        self.PluginInfos[plugin]["right"] = rightwindow
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   960
        for child in self.PluginInfos[plugin]["children"]:
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   961
            self.GenerateTreeBranch(child)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   962
            if not self.PluginInfos[child]["expanded"]:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   963
                self.CollapsePlugin(child)
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   964
        if len(plugin_locations) > 0:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   965
            locations_infos = self.PluginInfos[plugin]["locations_infos"]
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   966
            for location in plugin_locations:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   967
                locations_infos["root"]["children"].append("root.%s" % location["name"])
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   968
                self.GenerateLocationTreeBranch(locations_infos, "root", location)
404
dbe88e319bdf Bugs when expanded and collapsing location tree fixed
laurent
parents: 403
diff changeset
   969
            if not locations_infos["root"]["expanded"]:
dbe88e319bdf Bugs when expanded and collapsing location tree fixed
laurent
parents: 403
diff changeset
   970
                self.CollapseLocation(locations_infos, "root")
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   971
        
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   972
    LOCATION_BITMAP = {LOCATION_PLUGIN: "CONFIGURATION",
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   973
                       LOCATION_MODULE: "RESOURCE",
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   974
                       LOCATION_GROUP: "PROGRAM",
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   975
                       LOCATION_VAR_INPUT: "VAR_INPUT",
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   976
                       LOCATION_VAR_OUTPUT: "VAR_OUTPUT",
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   977
                       LOCATION_VAR_MEMORY: "VAR_LOCAL"}
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   978
    
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   979
    def GenerateLocationTreeBranch(self, locations_infos, parent, location):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   980
        leftwindow = wx.Panel(self.PLCConfig, -1, size=wx.Size(-1, -1))
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   981
        self.PluginTreeSizer.AddWindow(leftwindow, 0, border=0, flag=wx.GROW)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   982
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   983
        leftwindowsizer = wx.BoxSizer(wx.HORIZONTAL)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   984
        leftwindow.SetSizer(leftwindowsizer)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   985
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   986
        rightwindow = wx.Panel(self.PLCConfig, -1, size=wx.Size(-1, -1))
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   987
        self.PluginTreeSizer.AddWindow(rightwindow, 0, border=0, flag=wx.GROW)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   988
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   989
        location_name = "%s.%s" % (parent, location["name"])
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   990
        if not locations_infos.has_key(location_name):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   991
            locations_infos[location_name] = {"expanded" : False}
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   992
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   993
        if location["type"] in [LOCATION_PLUGIN, LOCATION_MODULE, LOCATION_GROUP]:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   994
            leftwindow.SetBackgroundColour(WINDOW_COLOUR)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   995
            rightwindow.SetBackgroundColour(WINDOW_COLOUR)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   996
                    
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   997
            st = wx.StaticText(leftwindow, -1)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   998
            st.SetFont(wx.Font(faces["size"], wx.DEFAULT, wx.NORMAL, wx.BOLD, faceName = faces["helv"]))
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   999
            st.SetLabel(location["location"])
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1000
            leftwindowsizer.AddWindow(st, 0, border=5, flag=wx.RIGHT)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1001
            
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1002
            expandbutton_id = wx.NewId()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1003
            expandbutton = wx.lib.buttons.GenBitmapToggleButton(id=expandbutton_id, bitmap=wx.Bitmap(Bpath( 'images', 'plus.png')),
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1004
                  name='ExpandButton', parent=leftwindow, pos=wx.Point(0, 0),
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1005
                  size=wx.Size(13, 13), style=wx.NO_BORDER)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1006
            expandbutton.labelDelta = 0
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1007
            expandbutton.SetBezelWidth(0)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1008
            expandbutton.SetUseFocusIndicator(False)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1009
            expandbutton.SetBitmapSelected(wx.Bitmap(Bpath( 'images', 'minus.png')))
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1010
            expandbutton.SetToggle(locations_infos[location_name]["expanded"])
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1011
                
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1012
            if len(location["children"]) > 0:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1013
                def togglebutton(event):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1014
                    if expandbutton.GetToggle():
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1015
                        self.ExpandLocation(locations_infos, location_name)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1016
                    else:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1017
                        self.CollapseLocation(locations_infos, location_name)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1018
                    locations_infos[location_name]["expanded"] = expandbutton.GetToggle()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1019
                    self.PLCConfigMainSizer.Layout()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1020
                    self.RefreshScrollBars()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1021
                    event.Skip()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1022
                expandbutton.Bind(wx.EVT_BUTTON, togglebutton, id=expandbutton_id)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1023
            else:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1024
                expandbutton.Enable(False)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1025
            leftwindowsizer.AddWindow(expandbutton, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER_VERTICAL)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1026
            
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1027
        else:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1028
            leftwindow.SetBackgroundColour(wx.WHITE)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1029
            rightwindow.SetBackgroundColour(wx.WHITE)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1030
            
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1031
            leftwindowsizer.Add(wx.Size(20, 16), 0)
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1032
            
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1033
        sb = wx.StaticBitmap(leftwindow, -1)
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1034
        sb.SetBitmap(wx.Bitmap(os.path.join(base_folder, "plcopeneditor", 'Images', '%s.png' % self.LOCATION_BITMAP[location["type"]])))
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1035
        leftwindowsizer.AddWindow(sb, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER_VERTICAL)
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1036
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1037
        st_id = wx.NewId()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1038
        st = wx.StaticText(leftwindow, st_id, size=wx.DefaultSize, style=wx.NO_BORDER)
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1039
        label = location["name"]
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1040
        if location["type"] in [LOCATION_VAR_INPUT, LOCATION_VAR_OUTPUT, LOCATION_VAR_MEMORY]:
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1041
            label += " (%s)" % location["location"]
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1042
            infos = location.copy()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1043
            infos.pop("children")
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1044
            st.SetFont(wx.Font(faces["size"] * 0.5, wx.DEFAULT, wx.NORMAL, wx.NORMAL, faceName = faces["helv"]))
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1045
            st.Bind(wx.EVT_LEFT_DOWN, self.GenerateLocationLeftDownFunction(infos))
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1046
        else:
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1047
            st.SetFont(wx.Font(faces["size"] * 0.75, wx.DEFAULT, wx.NORMAL, wx.BOLD, faceName = faces["helv"]))
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1048
        st.SetLabel(label)
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1049
        leftwindowsizer.AddWindow(st, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER_VERTICAL)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1050
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1051
        locations_infos[location_name]["left"] = leftwindow
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1052
        locations_infos[location_name]["right"] = rightwindow
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1053
        locations_infos[location_name]["children"] = []
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1054
        for child in location["children"]:
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1055
            child_name = "%s.%s" % (location_name, child["name"])
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1056
            locations_infos[location_name]["children"].append(child_name)
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1057
            self.GenerateLocationTreeBranch(locations_infos, location_name, child)
404
dbe88e319bdf Bugs when expanded and collapsing location tree fixed
laurent
parents: 403
diff changeset
  1058
        if not locations_infos[location_name]["expanded"]:
dbe88e319bdf Bugs when expanded and collapsing location tree fixed
laurent
parents: 403
diff changeset
  1059
            self.CollapseLocation(locations_infos, location_name)
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1060
    
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1061
    def GenerateLocationLeftDownFunction(self, infos):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1062
        def OnLocationLeftDownFunction(event):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1063
            data = wx.TextDataObject(str((infos["location"], "location", infos["IEC_type"], infos["name"], infos["description"])))
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1064
            dragSource = wx.DropSource(self)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1065
            dragSource.SetData(data)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1066
            dragSource.DoDragDrop()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1067
            event.Skip()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1068
        return OnLocationLeftDownFunction
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1069
    
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1070
    def RefreshAll(self):
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1071
        self.RefreshPLCParams()
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1072
        self.RefreshPluginTree()
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1073
        
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1074
    def GetItemChannelChangedFunction(self, plugin, value):
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1075
        def OnPluginTreeItemChannelChanged(event):
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1076
            res = self.SetPluginParamsAttribute(plugin, "BaseParams.IEC_Channel", value)
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1077
            event.Skip()
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1078
        return OnPluginTreeItemChannelChanged
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1079
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1080
    def _GetAddPluginFunction(self, name, plugin):
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1081
        def OnPluginMenu(event):
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
  1082
            wx.CallAfter(self.AddPlugin, name, plugin)
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1083
        return OnPluginMenu
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1084
    
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
  1085
    def Gen_AddPluginMenu(self, plugin):
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
  1086
        def AddPluginMenu(event):
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1087
            main_menu = wx.Menu(title='')
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1088
            if len(plugin.PlugChildsTypes) > 0:
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
  1089
                for name, XSDClass, help in plugin.PlugChildsTypes:
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1090
                    new_id = wx.NewId()
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1091
                    main_menu.Append(help=help, id=new_id, kind=wx.ITEM_NORMAL, text=_("Append ")+help)
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
  1092
                    self.Bind(wx.EVT_MENU, self._GetAddPluginFunction(name, plugin), id=new_id)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
  1093
            self.PopupMenuXY(main_menu)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
  1094
        return AddPluginMenu
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1095
    
21
bded6d31365c Adding buttons for plugins
lbessard
parents: 20
diff changeset
  1096
    def GetButtonCallBackFunction(self, plugin, method):
110
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
  1097
        """ Generate the callbackfunc for a given plugin method"""
21
bded6d31365c Adding buttons for plugins
lbessard
parents: 20
diff changeset
  1098
        def OnButtonClick(event):
110
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
  1099
            # Disable button to prevent re-entrant call 
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
  1100
            event.GetEventObject().Disable()
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
  1101
            # Call
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1102
            getattr(plugin,method)()
110
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
  1103
            # Re-enable button 
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
  1104
            event.GetEventObject().Enable()
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
  1105
            # Trigger refresh on Idle
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1106
            wx.CallAfter(self.RefreshAll)
21
bded6d31365c Adding buttons for plugins
lbessard
parents: 20
diff changeset
  1107
            event.Skip()
bded6d31365c Adding buttons for plugins
lbessard
parents: 20
diff changeset
  1108
        return OnButtonClick
bded6d31365c Adding buttons for plugins
lbessard
parents: 20
diff changeset
  1109
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1110
    def GetChoiceCallBackFunction(self, choicectrl, plugin, path):
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1111
        def OnChoiceChanged(event):
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1112
            res = self.SetPluginParamsAttribute(plugin, path, choicectrl.GetStringSelection())
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1113
            choicectrl.SetStringSelection(res)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1114
            event.Skip()
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1115
        return OnChoiceChanged
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1116
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1117
    def GetChoiceContentCallBackFunction(self, choicectrl, staticboxsizer, plugin, path):
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1118
        def OnChoiceContentChanged(event):
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1119
            res = self.SetPluginParamsAttribute(plugin, path, choicectrl.GetStringSelection())
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1120
            if wx.VERSION < (2, 8, 0):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1121
                self.ParamsPanel.Freeze()
129
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
  1122
                choicectrl.SetStringSelection(res)
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
  1123
                infos = self.PluginRoot.GetParamsAttributes(path)
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
  1124
                staticbox = staticboxsizer.GetStaticBox()
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
  1125
                staticbox.SetLabel("%(name)s - %(value)s"%infos)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1126
                self.RefreshSizerElement(self.ParamsPanel, staticboxsizer, infos["children"], "%s.%s"%(path, infos["name"]), selected=selected)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1127
                self.ParamsPanelMainSizer.Layout()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1128
                self.ParamsPanel.Thaw()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1129
                self.ParamsPanel.Refresh()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1130
            else:
129
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
  1131
                wx.CallAfter(self.RefreshAll)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1132
            event.Skip()
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1133
        return OnChoiceContentChanged
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1134
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1135
    def GetTextCtrlCallBackFunction(self, textctrl, plugin, path):
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1136
        def OnTextCtrlChanged(event):
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1137
            res = self.SetPluginParamsAttribute(plugin, path, textctrl.GetValue())
214
b4531bf9bdb3 Modification in catched wxTextCtrl events
lbessard
parents: 203
diff changeset
  1138
            if res != textctrl.GetValue():
b4531bf9bdb3 Modification in catched wxTextCtrl events
lbessard
parents: 203
diff changeset
  1139
                textctrl.ChangeValue(res)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1140
            event.Skip()
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1141
        return OnTextCtrlChanged
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1142
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1143
    def GetCheckBoxCallBackFunction(self, chkbx, plugin, path):
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1144
        def OnCheckBoxChanged(event):
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1145
            res = self.SetPluginParamsAttribute(plugin, path, chkbx.IsChecked())
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1146
            chkbx.SetValue(res)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1147
            event.Skip()
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1148
        return OnCheckBoxChanged
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1149
    
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1150
    def ClearSizer(self, sizer):
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1151
        staticboxes = []
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1152
        for item in sizer.GetChildren():
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1153
            if item.IsSizer():
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1154
                item_sizer = item.GetSizer()
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1155
                self.ClearSizer(item_sizer)
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1156
                if isinstance(item_sizer, wx.StaticBoxSizer):
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1157
                    staticboxes.append(item_sizer.GetStaticBox())
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1158
        sizer.Clear(True)
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1159
        for staticbox in staticboxes:
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1160
            staticbox.Destroy()
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1161
                
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1162
    def RefreshSizerElement(self, parent, sizer, plugin, elements, path, clean = True):
25
fa7503684c28 Adding support for using Networkedit et PLCOpenEditor in Beremiz
lbessard
parents: 24
diff changeset
  1163
        if clean:
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1164
            if wx.VERSION < (2, 8, 0):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1165
                self.ClearSizer(sizer)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1166
            else:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1167
                sizer.Clear(True)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1168
        first = True
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1169
        for element_infos in elements:
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1170
            if path:
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1171
                element_path = "%s.%s"%(path, element_infos["name"])
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1172
            else:
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1173
                element_path = element_infos["name"]
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1174
            if element_infos["type"] == "element":
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1175
                label = element_infos["name"]
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1176
                staticbox = wx.StaticBox(id=-1, label=_(label), 
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1177
                    name='%s_staticbox'%element_infos["name"], parent=parent,
193
ca6ad333aa80 Warning with StaticBoxSizer fixed
lbessard
parents: 188
diff changeset
  1178
                    pos=wx.Point(0, 0), size=wx.Size(10, 0), style=0)
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1179
                staticboxsizer = wx.StaticBoxSizer(staticbox, wx.VERTICAL)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1180
                if first:
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1181
                    sizer.AddSizer(staticboxsizer, 0, border=0, flag=wx.GROW|wx.TOP)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1182
                else:
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1183
                    sizer.AddSizer(staticboxsizer, 0, border=0, flag=wx.GROW)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1184
                self.RefreshSizerElement(parent, staticboxsizer, plugin, element_infos["children"], element_path)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1185
            else:
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1186
                boxsizer = wx.FlexGridSizer(cols=3, rows=1)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1187
                boxsizer.AddGrowableCol(1)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1188
                if first:
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1189
                    sizer.AddSizer(boxsizer, 0, border=5, flag=wx.GROW|wx.ALL)
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1190
                else:
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1191
                    sizer.AddSizer(boxsizer, 0, border=5, flag=wx.GROW|wx.LEFT|wx.RIGHT|wx.BOTTOM)
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
  1192
                staticbitmap = GenStaticBitmap(ID=-1, bitmapname="%s.png"%element_infos["name"],
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
  1193
                    name="%s_bitmap"%element_infos["name"], parent=parent,
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
  1194
                    pos=wx.Point(0, 0), size=wx.Size(24, 24), style=0)
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
  1195
                boxsizer.AddWindow(staticbitmap, 0, border=5, flag=wx.RIGHT)
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1196
                label = element_infos["name"]
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1197
                statictext = wx.StaticText(id=-1, label="%s:"%_(label), 
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1198
                    name="%s_label"%element_infos["name"], parent=parent, 
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1199
                    pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1200
                boxsizer.AddWindow(statictext, 0, border=5, flag=wx.ALIGN_CENTER_VERTICAL|wx.RIGHT)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1201
                id = wx.NewId()
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1202
                if isinstance(element_infos["type"], types.ListType):
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1203
                    combobox = wx.ComboBox(id=id, name=element_infos["name"], parent=parent, 
317
5378fe2fb4bc Fix size of ComboBoxes
lbessard
parents: 314
diff changeset
  1204
                        pos=wx.Point(0, 0), size=wx.Size(150, 28), style=wx.CB_READONLY)
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1205
                    boxsizer.AddWindow(combobox, 0, border=0, flag=0)
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1206
                    if element_infos["use"] == "optional":
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1207
                        combobox.Append("")
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1208
                    if len(element_infos["type"]) > 0 and isinstance(element_infos["type"][0], types.TupleType):
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1209
                        for choice, xsdclass in element_infos["type"]:
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1210
                            combobox.Append(choice)
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1211
                        name = element_infos["name"]
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1212
                        value = element_infos["value"]
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1213
                        staticbox = wx.StaticBox(id=-1, label="%s - %s"%(_(name), _(value)), 
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1214
                            name='%s_staticbox'%element_infos["name"], parent=parent,
193
ca6ad333aa80 Warning with StaticBoxSizer fixed
lbessard
parents: 188
diff changeset
  1215
                            pos=wx.Point(0, 0), size=wx.Size(10, 0), style=0)
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1216
                        staticboxsizer = wx.StaticBoxSizer(staticbox, wx.VERTICAL)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1217
                        sizer.AddSizer(staticboxsizer, 0, border=5, flag=wx.GROW|wx.BOTTOM)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1218
                        self.RefreshSizerElement(parent, staticboxsizer, plugin, element_infos["children"], element_path)
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1219
                        callback = self.GetChoiceContentCallBackFunction(combobox, staticboxsizer, plugin, element_path)
23
e007d9d466d7 minor fixes
etisserant
parents: 22
diff changeset
  1220
                    else:
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1221
                        for choice in element_infos["type"]:
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1222
                            combobox.Append(choice)
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1223
                        callback = self.GetChoiceCallBackFunction(combobox, plugin, element_path)
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1224
                    if element_infos["value"] is None:
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1225
                        combobox.SetStringSelection("")
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1226
                    else:
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1227
                        combobox.SetStringSelection(element_infos["value"])
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1228
                    combobox.Bind(wx.EVT_COMBOBOX, callback, id=id)
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1229
                elif isinstance(element_infos["type"], types.DictType):
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1230
                    scmin = -(2**31)
23
e007d9d466d7 minor fixes
etisserant
parents: 22
diff changeset
  1231
                    scmax = 2**31-1
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1232
                    if "min" in element_infos["type"]:
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1233
                        scmin = element_infos["type"]["min"]
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1234
                    if "max" in element_infos["type"]:
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1235
                        scmax = element_infos["type"]["max"]
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1236
                    spinctrl = wx.SpinCtrl(id=id, name=element_infos["name"], parent=parent, 
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1237
                        pos=wx.Point(0, 0), size=wx.Size(150, 25), style=wx.SP_ARROW_KEYS|wx.ALIGN_RIGHT)
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1238
                    spinctrl.SetRange(scmin,scmax)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1239
                    boxsizer.AddWindow(spinctrl, 0, border=0, flag=0)
28
848ce4b1f9e4 Disabled unused run/edit menu, fixed some event/refresh machanisms
etisserant
parents: 25
diff changeset
  1240
                    spinctrl.SetValue(element_infos["value"])
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1241
                    spinctrl.Bind(wx.EVT_SPINCTRL, self.GetTextCtrlCallBackFunction(spinctrl, plugin, element_path), id=id)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1242
                else:
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1243
                    if element_infos["type"] == "boolean":
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1244
                        checkbox = wx.CheckBox(id=id, name=element_infos["name"], parent=parent, 
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1245
                            pos=wx.Point(0, 0), size=wx.Size(17, 25), style=0)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1246
                        boxsizer.AddWindow(checkbox, 0, border=0, flag=0)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1247
                        checkbox.SetValue(element_infos["value"])
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1248
                        checkbox.Bind(wx.EVT_CHECKBOX, self.GetCheckBoxCallBackFunction(checkbox, plugin, element_path), id=id)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1249
                    elif element_infos["type"] in ["unsignedLong", "long","integer"]:
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1250
                        if element_infos["type"].startswith("unsigned"):
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1251
                            scmin = 0
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1252
                        else:
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1253
                            scmin = -(2**31)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1254
                        scmax = 2**31-1
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1255
                        spinctrl = wx.SpinCtrl(id=id, name=element_infos["name"], parent=parent, 
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1256
                            pos=wx.Point(0, 0), size=wx.Size(150, 25), style=wx.SP_ARROW_KEYS|wx.ALIGN_RIGHT)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1257
                        spinctrl.SetRange(scmin, scmax)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1258
                        boxsizer.AddWindow(spinctrl, 0, border=0, flag=0)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1259
                        spinctrl.SetValue(element_infos["value"])
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1260
                        spinctrl.Bind(wx.EVT_SPINCTRL, self.GetTextCtrlCallBackFunction(spinctrl, plugin, element_path), id=id)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1261
                    else:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1262
                        choices = cPickle.loads(str(self.Config.Read(element_path, cPickle.dumps([""]))))                           
268
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1263
                        textctrl = TextCtrlAutoComplete.TextCtrlAutoComplete(id=id, 
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1264
                                                                     name=element_infos["name"], 
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1265
                                                                     parent=parent, 
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1266
                                                                     choices=choices, 
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1267
                                                                     element_path=element_path,
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1268
                                                                     pos=wx.Point(0, 0), 
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1269
                                                                     size=wx.Size(150, 25), 
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1270
                                                                     style=0)
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1271
                        
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1272
                        boxsizer.AddWindow(textctrl, 0, border=0, flag=0)
214
b4531bf9bdb3 Modification in catched wxTextCtrl events
lbessard
parents: 203
diff changeset
  1273
                        textctrl.ChangeValue(str(element_infos["value"]))
b4531bf9bdb3 Modification in catched wxTextCtrl events
lbessard
parents: 203
diff changeset
  1274
                        textctrl.Bind(wx.EVT_TEXT, self.GetTextCtrlCallBackFunction(textctrl, plugin, element_path))
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1275
            first = False
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1276
    
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1277
    def ResetView(self):
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1278
        IDEFrame.ResetView(self)
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1279
        self.PluginInfos = {}
403
ae4a85291441 Removing memory leak while closing PluginsRoot
laurent
parents: 402
diff changeset
  1280
        if self.PluginRoot is not None:
ae4a85291441 Removing memory leak while closing PluginsRoot
laurent
parents: 402
diff changeset
  1281
            self.PluginRoot.CloseProject()
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1282
        self.PluginRoot = None
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1283
        self.Log.flush()
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1284
        self.DebugVariablePanel.SetDataProducer(None)
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1285
    
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1286
    def OnNewProjectMenu(self, event):
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1287
        if not self.Config.HasEntry("lastopenedfolder"):
257
a4b01f57069a remove workspace test
greg
parents: 256
diff changeset
  1288
            defaultpath = os.path.expanduser("~")
a4b01f57069a remove workspace test
greg
parents: 256
diff changeset
  1289
        else:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1290
            defaultpath = self.Config.Read("lastopenedfolder")
256
1da137b99948 add buildpath parameter for beremiz
greg
parents: 249
diff changeset
  1291
        
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1292
        dialog = wx.DirDialog(self , _("Choose a project"), defaultpath, wx.DD_NEW_DIR_BUTTON)
4
e9d061c23e83 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 3
diff changeset
  1293
        if dialog.ShowModal() == wx.ID_OK:
258
54c02b82da5f fixed bug with config
greg
parents: 257
diff changeset
  1294
            projectpath = dialog.GetPath()
54c02b82da5f fixed bug with config
greg
parents: 257
diff changeset
  1295
            dialog.Destroy()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1296
            self.Config.Write("lastopenedfolder", os.path.dirname(projectpath))
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1297
            self.Config.Flush()
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1298
            self.ResetView()
308
d7b0b2d8854c remove arg : self.runtime when create pluginroot instance in OnOpenProject and OnNewProject method from beremiz class
greg
parents: 296
diff changeset
  1299
            self.PluginRoot = PluginsRoot(self, self.Log)
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1300
            self.Controler = self.PluginRoot
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1301
            result = self.PluginRoot.NewProject(projectpath)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1302
            if not result:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1303
                self.DebugVariablePanel.SetDataProducer(self.PluginRoot)
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1304
                self._Refresh(TYPESTREE, INSTANCESTREE, LIBRARYTREE)
268
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1305
                self.RefreshAll()
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1306
            else:
408
6eaa1908507d Bug on DebugVariablePanel when opening project at start fixed
laurent
parents: 406
diff changeset
  1307
                self.ResetView()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1308
                self.ShowErrorMessage(result)
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1309
            self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU)
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1310
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1311
    def OnOpenProjectMenu(self, event):
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1312
        if not self.Config.HasEntry("lastopenedfolder"):
257
a4b01f57069a remove workspace test
greg
parents: 256
diff changeset
  1313
            defaultpath = os.path.expanduser("~")
a4b01f57069a remove workspace test
greg
parents: 256
diff changeset
  1314
        else:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1315
            defaultpath = self.Config.Read("lastopenedfolder")
256
1da137b99948 add buildpath parameter for beremiz
greg
parents: 249
diff changeset
  1316
        
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1317
        dialog = wx.DirDialog(self , _("Choose a project"), defaultpath, wx.DD_NEW_DIR_BUTTON)
4
e9d061c23e83 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 3
diff changeset
  1318
        if dialog.ShowModal() == wx.ID_OK:
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1319
            projectpath = dialog.GetPath()
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1320
            if os.path.isdir(projectpath):
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1321
                self.Config.Write("lastopenedfolder", os.path.dirname(projectpath))
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1322
                self.Config.Flush()
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1323
                self.ResetView()
308
d7b0b2d8854c remove arg : self.runtime when create pluginroot instance in OnOpenProject and OnNewProject method from beremiz class
greg
parents: 296
diff changeset
  1324
                self.PluginRoot = PluginsRoot(self, self.Log)
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1325
                self.Controler = self.PluginRoot
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1326
                result = self.PluginRoot.LoadProject(projectpath)
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1327
                if not result:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1328
                    self.DebugVariablePanel.SetDataProducer(self.PluginRoot)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1329
                    self._Refresh(TYPESTREE, INSTANCESTREE, LIBRARYTREE)
268
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1330
                    self.RefreshAll()
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1331
                else:
408
6eaa1908507d Bug on DebugVariablePanel when opening project at start fixed
laurent
parents: 406
diff changeset
  1332
                    self.ResetView()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1333
                    self.ShowErrorMessage(result)
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1334
            else:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1335
                self.ShowErrorMessage(_("\"%s\" folder is not a valid Beremiz project\n") % projectpath)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1336
            self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU)
383
9ae15ab058f3 Fix non-destroyed dialog in 'OnOpenProject' if 'Cancel' selected
laurent
parents: 382
diff changeset
  1337
        dialog.Destroy()
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1338
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1339
    def OnCloseProjectMenu(self, event):
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1340
        if self.PluginRoot is not None:
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1341
            if self.PluginRoot.ProjectTestModified():
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1342
                dialog = wx.MessageDialog(self,
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1343
                                          _("Save changes ?"),
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1344
                                          _("Close Application"), 
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1345
                                          wx.YES_NO|wx.CANCEL|wx.ICON_QUESTION)
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1346
                answer = dialog.ShowModal()
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1347
                dialog.Destroy()
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1348
                if answer == wx.ID_YES:
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1349
                    self.PluginRoot.SaveProject()
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1350
                elif answer == wx.ID_CANCEL:
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1351
                    return
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1352
            self.ResetView()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1353
            self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU)
268
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1354
            self.RefreshAll()
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1355
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1356
    def OnSaveProjectMenu(self, event):
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1357
        if self.PluginRoot is not None:
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1358
            self.PluginRoot.SaveProject()
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
  1359
            self.RefreshAll()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1360
            self.RefreshTitle()
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1361
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1362
    def OnPropertiesMenu(self, event):
413
88ee3d7bd4eb Removing superfluous event.Skip() in MenuEvent callback functions
laurent
parents: 408
diff changeset
  1363
        self.ShowProperties()
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1364
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1365
    def OnQuitMenu(self, event):
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1366
        self.Close()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1367
        
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1368
    def OnBeremizMenu(self, event):
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
  1369
        open_pdf(Bpath( "doc", "manual_beremiz.pdf"))
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1370
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1371
    def OnAboutMenu(self, event):
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1372
        OpenHtmlFrame(self,_("About Beremiz"), Bpath("doc","about.html"), wx.Size(550, 500))
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1373
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1374
    def GetAddButtonFunction(self, plugin, window):
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1375
        def AddButtonFunction(event):
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1376
            if plugin and len(plugin.PlugChildsTypes) > 0:
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1377
                plugin_menu = wx.Menu(title='')
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
  1378
                for name, XSDClass, help in plugin.PlugChildsTypes:
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1379
                    new_id = wx.NewId()
106
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
  1380
                    plugin_menu.Append(help=help, id=new_id, kind=wx.ITEM_NORMAL, text=name)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1381
                    self.Bind(wx.EVT_MENU, self._GetAddPluginFunction(name, plugin), id=new_id)
87
4de868955ee4 Bug on ToolBar and AddButton Menu popup fixed
lbessard
parents: 84
diff changeset
  1382
                window_pos = window.GetPosition()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1383
                wx.CallAfter(self.PLCConfig.PopupMenu, plugin_menu)
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1384
            event.Skip()
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1385
        return AddButtonFunction
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1386
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1387
    def GetDeleteButtonFunction(self, plugin):
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1388
        def DeleteButtonFunction(event):
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1389
            wx.CallAfter(self.DeletePlugin, plugin)
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1390
            event.Skip()
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1391
        return DeleteButtonFunction
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1392
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1393
    def AddPlugin(self, PluginType, plugin):
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1394
        dialog = wx.TextEntryDialog(self, _("Please enter a name for plugin:"), _("Add Plugin"), "", wx.OK|wx.CANCEL)
4
e9d061c23e83 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 3
diff changeset
  1395
        if dialog.ShowModal() == wx.ID_OK:
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1396
            PluginName = dialog.GetValue()
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1397
            plugin.PlugAddChild(PluginName, PluginType)
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1398
            self.RefreshPluginTree()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1399
            self.PluginRoot.RefreshPluginsBlockLists()
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1400
        dialog.Destroy()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1401
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1402
    def DeletePlugin(self, plugin):
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1403
        dialog = wx.MessageDialog(self, _("Really delete plugin ?"), _("Remove plugin"), wx.YES_NO|wx.NO_DEFAULT)
50
447b7706a5b6 Added plugin deletion
etisserant
parents: 49
diff changeset
  1404
        if dialog.ShowModal() == wx.ID_YES:
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1405
            self.PluginInfos.pop(plugin)
50
447b7706a5b6 Added plugin deletion
etisserant
parents: 49
diff changeset
  1406
            plugin.PlugRemove()
447b7706a5b6 Added plugin deletion
etisserant
parents: 49
diff changeset
  1407
            del plugin
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1408
            self.PluginRoot.RefreshPluginsBlockLists()
50
447b7706a5b6 Added plugin deletion
etisserant
parents: 49
diff changeset
  1409
            self.RefreshPluginTree()
447b7706a5b6 Added plugin deletion
etisserant
parents: 49
diff changeset
  1410
        dialog.Destroy()
7
e20fa7257d41 Added stdout/stderr separation limitation and coloration
etisserant
parents: 6
diff changeset
  1411
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1412
#-------------------------------------------------------------------------------
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1413
#                               Exception Handler
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1414
#-------------------------------------------------------------------------------
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1415
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1416
Max_Traceback_List_Size = 20
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1417
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1418
def Display_Exception_Dialog(e_type, e_value, e_tb, bug_report_path):
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1419
    trcbck_lst = []
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1420
    for i,line in enumerate(traceback.extract_tb(e_tb)):
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1421
        trcbck = " " + str(i+1) + _(". ")
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1422
        if line[0].find(os.getcwd()) == -1:
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1423
            trcbck += _("file : ") + str(line[0]) + _(",   ")
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1424
        else:
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1425
            trcbck += _("file : ") + str(line[0][len(os.getcwd()):]) + _(",   ")
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1426
        trcbck += _("line : ") + str(line[1]) + _(",   ") + _("function : ") + str(line[2])
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1427
        trcbck_lst.append(trcbck)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1428
        
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1429
    # Allow clicking....
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1430
    cap = wx.Window_GetCapture()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1431
    if cap:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1432
        cap.ReleaseMouse()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1433
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1434
    dlg = wx.SingleChoiceDialog(None, 
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1435
        _("""
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1436
An unhandled exception (bug) occured. Bug report saved at :
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1437
(%s)
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1438
337
9d1d9323374a Add LoliTech phone number in bug report
greg
parents: 324
diff changeset
  1439
Please contact LOLITech at:
9d1d9323374a Add LoliTech phone number in bug report
greg
parents: 324
diff changeset
  1440
+33 (0)3 29 57 60 42
9d1d9323374a Add LoliTech phone number in bug report
greg
parents: 324
diff changeset
  1441
or please be kind enough to send this file to:
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1442
bugs_beremiz@lolitech.fr
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1443
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1444
You should now restart Beremiz.
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1445
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1446
Traceback:
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1447
""") % bug_report_path +
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1448
        str(e_type) + " : " + str(e_value), 
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1449
        _("Error"),
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1450
        trcbck_lst)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1451
    try:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1452
        res = (dlg.ShowModal() == wx.ID_OK)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1453
    finally:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1454
        dlg.Destroy()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1455
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1456
    return res
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1457
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1458
def Display_Error_Dialog(e_value):
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1459
    message = wxMessageDialog(None, str(e_value), _("Error"), wxOK|wxICON_ERROR)
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1460
    message.ShowModal()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1461
    message.Destroy()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1462
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1463
def get_last_traceback(tb):
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1464
    while tb.tb_next:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1465
        tb = tb.tb_next
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1466
    return tb
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1467
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1468
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1469
def format_namespace(d, indent='    '):
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1470
    return '\n'.join(['%s%s: %s' % (indent, k, repr(v)[:10000]) for k, v in d.iteritems()])
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1471
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1472
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1473
ignored_exceptions = [] # a problem with a line in a module is only reported once per session
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1474
5
9565bb5facf7 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 4
diff changeset
  1475
def AddExceptHook(path, app_version='[No version]'):#, ignored_exceptions=[]):
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1476
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1477
    def handle_exception(e_type, e_value, e_traceback):
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1478
        traceback.print_exception(e_type, e_value, e_traceback) # this is very helpful when there's an exception in the rest of this func
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1479
        last_tb = get_last_traceback(e_traceback)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1480
        ex = (last_tb.tb_frame.f_code.co_filename, last_tb.tb_frame.f_lineno)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1481
        if str(e_value).startswith("!!!"):
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1482
            Display_Error_Dialog(e_value)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1483
        elif ex not in ignored_exceptions:
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1484
            date = time.ctime()
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1485
            bug_report_path = path+os.sep+"bug_report_"+date.replace(':','-').replace(' ','_')+".txt"
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1486
            result = Display_Exception_Dialog(e_type,e_value,e_traceback,bug_report_path)
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1487
            if result:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1488
                ignored_exceptions.append(ex)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1489
                info = {
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1490
                    'app-title' : wx.GetApp().GetAppName(), # app_title
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1491
                    'app-version' : app_version,
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1492
                    'wx-version' : wx.VERSION_STRING,
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1493
                    'wx-platform' : wx.Platform,
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1494
                    'python-version' : platform.python_version(), #sys.version.split()[0],
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1495
                    'platform' : platform.platform(),
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1496
                    'e-type' : e_type,
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1497
                    'e-value' : e_value,
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1498
                    'date' : date,
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1499
                    'cwd' : os.getcwd(),
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1500
                    }
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1501
                if e_traceback:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1502
                    info['traceback'] = ''.join(traceback.format_tb(e_traceback)) + '%s: %s' % (e_type, e_value)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1503
                    last_tb = get_last_traceback(e_traceback)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1504
                    exception_locals = last_tb.tb_frame.f_locals # the locals at the level of the stack trace where the exception actually occurred
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1505
                    info['locals'] = format_namespace(exception_locals)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1506
                    if 'self' in exception_locals:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1507
                        info['self'] = format_namespace(exception_locals['self'].__dict__)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1508
                
109
f27ca37b6e7a Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents: 106
diff changeset
  1509
                output = open(bug_report_path,'w')
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1510
                lst = info.keys()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1511
                lst.sort()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1512
                for a in lst:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1513
                    output.write(a+":\n"+str(info[a])+"\n\n")
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1514
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1515
    #sys.excepthook = lambda *args: wx.CallAfter(handle_exception, *args)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1516
    sys.excepthook = handle_exception
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1517
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1518
if __name__ == '__main__':
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1519
    # Install a exception handle for bug reports
5
9565bb5facf7 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 4
diff changeset
  1520
    AddExceptHook(os.getcwd(),__version__)
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1521
    
256
1da137b99948 add buildpath parameter for beremiz
greg
parents: 249
diff changeset
  1522
    frame = Beremiz(None, projectOpen, buildpath)
103
05b58747ca5d fix bzr.ico -> icon for windows installer
greg
parents: 102
diff changeset
  1523
    frame.Show()
133
d85b937cdac3 change splash.Hide() with splash.Close()
greg
parents: 129
diff changeset
  1524
    splash.Close()
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1525
    app.MainLoop()