Beremiz.py
author laurent
Sat, 26 Sep 2009 18:44:25 +0200
changeset 402 984e238e63d0
parent 401 8106a853a7c7
child 403 ae4a85291441
permissions -rw-r--r--
Bugs on displaying plugin available variables in PluginTree fixed
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
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   380
    def __init__(self, parent, projectOpen, buildpath, debug=True):
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
256
1da137b99948 add buildpath parameter for beremiz
greg
parents: 249
diff changeset
   397
            self.PluginRoot.LoadProject(projectOpen, buildpath)
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   398
            self._Refresh(TYPESTREE, INSTANCESTREE, LIBRARYTREE)
268
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
   399
            self.RefreshAll()
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   400
        else:
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   401
            self.PluginRoot = None
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   402
            self.Controler = None
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   403
        
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   404
        # Add beremiz's icon in top left corner of the frame
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   405
        self.SetIcon(wx.Icon(Bpath( "images", "brz.ico"), wx.BITMAP_TYPE_ICO))
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   406
        
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   407
        self.Bind(wx.EVT_CLOSE, self.OnCloseFrame)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   408
        
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   409
        self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU, DISPLAYMENU)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   410
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   411
    def RefreshTitle(self):
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   412
        name = _("Beremiz")
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   413
        if self.PluginRoot is not None:
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
   414
            projectname = self.PluginRoot.GetProjectName()
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
   415
            if self.PluginRoot.PlugTestModified():
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
   416
                projectname = "~%s~" % projectname
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
   417
            self.SetTitle("%s - %s" % (name, projectname))
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   418
        else:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   419
            self.SetTitle(name)
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   420
290
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   421
    def StartLocalRuntime(self, taskbaricon = True):
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   422
        if self.local_runtime is None or self.local_runtime.finished:
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   423
            # create temporary directory for runtime working directory
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   424
            self.local_runtime_tmpdir = tempfile.mkdtemp()
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   425
            # choose an arbitrary random port for runtime
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   426
            self.runtime_port = int(random.random() * 1000) + 61131
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   427
            # launch local runtime
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   428
            self.local_runtime = ProcessLogger(self.Log,
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   429
                                               "\"%s\" \"%s\" -p %s -i localhost %s %s"%(sys.executable,
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   430
                                                           Bpath("Beremiz_service.py"),
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   431
                                                           self.runtime_port,
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   432
                                                           {False : "-x 0", True :"-x 1"}[taskbaricon],
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   433
                                                           self.local_runtime_tmpdir),
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   434
                                                           no_gui=False)
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   435
            self.local_runtime.spin(timeout=500, keyword = "working", kill_it = False)
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   436
        return self.runtime_port
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   437
    
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   438
    def KillLocalRuntime(self):
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   439
        if self.local_runtime is not None:
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   440
            # shutdown local runtime
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   441
            self.local_runtime.kill(gently=False)
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   442
            # clear temp dir
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   443
            shutil.rmtree(self.local_runtime_tmpdir)
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   444
121
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   445
    def OnOpenWidgetInspector(self, evt):
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   446
        # Activate the widget inspection tool
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   447
        from wx.lib.inspection import InspectionTool
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   448
        if not InspectionTool().initialized:
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   449
            InspectionTool().Init()
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   450
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   451
        # 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
   452
        # one under the cursor, if any, or this frame.
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   453
        wnd = wx.FindWindowAtPointer()
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   454
        if not wnd:
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   455
            wnd = self
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   456
        InspectionTool().Show(wnd, True)
ccb1812f8323 Added ctrl+f12 wxpython inspector shortcut for debuging
etisserant
parents: 120
diff changeset
   457
201
520d2416ff4d Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents: 200
diff changeset
   458
    def OnLogConsoleDClick(self, event):
520d2416ff4d Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents: 200
diff changeset
   459
        wx.CallAfter(self.SearchLineForError)
520d2416ff4d Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents: 200
diff changeset
   460
        event.Skip()
520d2416ff4d Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents: 200
diff changeset
   461
520d2416ff4d Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents: 200
diff changeset
   462
    def SearchLineForError(self):
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   463
        if self.PluginRoot is not None:
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   464
            text = self.LogConsole.GetRange(0, self.LogConsole.GetInsertionPoint())
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   465
            line = self.LogConsole.GetLineText(len(text.splitlines()) - 1)
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   466
            result = MATIEC_ERROR_MODEL.match(line)
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   467
            if result is not None:
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   468
                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
   469
                infos = self.PluginRoot.ShowError(self.Log,
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   470
                                                  (int(first_line), int(first_column)), 
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   471
                                                  (int(last_line), int(last_column)))
201
520d2416ff4d Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents: 200
diff changeset
   472
		
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   473
    def OnCloseFrame(self, event):
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   474
        if self.PluginRoot is not None:
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   475
            if self.PluginRoot.ProjectTestModified():
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   476
                dialog = wx.MessageDialog(self,
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   477
                                          _("Save changes ?"),
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   478
                                          _("Close Application"), 
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   479
                                          wx.YES_NO|wx.CANCEL|wx.ICON_QUESTION)
119
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   480
                answer = dialog.ShowModal()
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   481
                dialog.Destroy()
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   482
                if answer == wx.ID_YES:
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   483
                    self.PluginRoot.SaveProject()
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   484
                    event.Skip()
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   485
                elif answer == wx.ID_NO:
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   486
                    event.Skip()
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   487
                    return
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   488
                else:
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   489
                    event.Veto()
f3819d2e8eff Added question dialog for unsaved close
etisserant
parents: 118
diff changeset
   490
                    return
220
ad3292145fc2 Fixed local PLC runtime kill on aborted quit attempt.
etisserant
parents: 218
diff changeset
   491
290
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   492
        self.KillLocalRuntime()
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 271
diff changeset
   493
        
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   494
        event.Skip()
62
ddf0cdd71558 Adding support for refresh block list where beremiz loose focus
lbessard
parents: 60
diff changeset
   495
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   496
    def OnMoveWindow(self, event):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   497
        self.GetBestSize()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   498
        self.RefreshScrollBars()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   499
        event.Skip()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   500
    
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   501
    def OnPanelLeftDown(self, event):
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   502
        focused = self.FindFocus()
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   503
        if isinstance(focused, TextCtrlAutoComplete.TextCtrlAutoComplete):
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   504
            focused._showDropDown(False)
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   505
        event.Skip()
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   506
    
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   507
    def RefreshFileMenu(self):
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   508
        if self.PluginRoot is not None:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   509
            selected = self.TabsOpened.GetSelection()
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   510
            if selected >= 0:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   511
                graphic_viewer = isinstance(self.TabsOpened.GetPage(selected), Viewer)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   512
            else:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   513
                graphic_viewer = False
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   514
            if self.TabsOpened.GetPageCount() > 0:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   515
                self.FileMenu.Enable(wx.ID_CLOSE, True)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   516
                if graphic_viewer:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   517
                    self.FileMenu.Enable(wx.ID_PREVIEW, True)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   518
                    self.FileMenu.Enable(wx.ID_PRINT, True)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   519
                else:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   520
                    self.FileMenu.Enable(wx.ID_PREVIEW, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   521
                    self.FileMenu.Enable(wx.ID_PRINT, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   522
            else:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   523
                self.FileMenu.Enable(wx.ID_CLOSE, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   524
                self.FileMenu.Enable(wx.ID_PREVIEW, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   525
                self.FileMenu.Enable(wx.ID_PRINT, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   526
            self.FileMenu.Enable(wx.ID_PAGE_SETUP, True)
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   527
            self.FileMenu.Enable(wx.ID_SAVE, True)
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   528
            self.FileMenu.Enable(wx.ID_PROPERTIES, True)
249
a770187273e9 Bug with Open, Reopen and Close Project fixed
lbessard
parents: 248
diff changeset
   529
            self.FileMenu.Enable(wx.ID_CLOSE_ALL, True)
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   530
        else:
395
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_PAGE_SETUP, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   533
            self.FileMenu.Enable(wx.ID_PREVIEW, False)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   534
            self.FileMenu.Enable(wx.ID_PRINT, False)
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   535
            self.FileMenu.Enable(wx.ID_SAVE, False)
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
   536
            self.FileMenu.Enable(wx.ID_PROPERTIES, False)
249
a770187273e9 Bug with Open, Reopen and Close Project fixed
lbessard
parents: 248
diff changeset
   537
            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
   538
        
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   539
    def RefreshScrollBars(self):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   540
        xstart, ystart = self.PLCConfig.GetViewStart()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   541
        window_size = self.PLCConfig.GetClientSize()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   542
        sizer = self.PLCConfig.GetSizer()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   543
        if sizer:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   544
            maxx, maxy = sizer.GetMinSize()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   545
            self.PLCConfig.SetScrollbars(SCROLLBAR_UNIT, SCROLLBAR_UNIT, 
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
   546
                maxx / SCROLLBAR_UNIT, maxy / SCROLLBAR_UNIT, 
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
   547
                max(0, min(xstart, (maxx - window_size[0]) / SCROLLBAR_UNIT)), 
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
   548
                max(0, min(ystart, (maxy - window_size[1]) / SCROLLBAR_UNIT)))
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   549
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   550
    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
   551
        self.Freeze()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   552
        self.ClearSizer(self.PLCParamsSizer)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   553
        
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   554
        if self.PluginRoot is not None:    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   555
            plcwindow = wx.Panel(self.PLCConfig, -1, size=wx.Size(-1, -1))
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   556
            if self.PluginRoot.PlugTestModified():
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   557
                bkgdclr = CHANGED_TITLE_COLOUR
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   558
            else:
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   559
                bkgdclr = TITLE_COLOUR
129
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
   560
                
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
   561
            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
   562
                self.PluginInfos[self.PluginRoot] = {"right_visible" : False}
129
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
   563
            
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
   564
            plcwindow.SetBackgroundColour(TITLE_COLOUR)
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   565
            plcwindow.Bind(wx.EVT_LEFT_DOWN, self.OnPanelLeftDown)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   566
            self.PLCParamsSizer.AddWindow(plcwindow, 0, border=0, flag=wx.GROW)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   567
            
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   568
            plcwindowsizer = wx.BoxSizer(wx.HORIZONTAL)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   569
            plcwindow.SetSizer(plcwindowsizer)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   570
            
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   571
            st = wx.StaticText(plcwindow, -1)
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   572
            st.SetFont(wx.Font(faces["size"], wx.DEFAULT, wx.NORMAL, wx.BOLD, faceName = faces["helv"]))
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   573
            st.SetLabel(self.PluginRoot.GetProjectName())
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   574
            plcwindowsizer.AddWindow(st, 0, border=5, flag=wx.ALL|wx.ALIGN_CENTER)
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   575
            
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
   576
            addbutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   577
            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
   578
                  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
   579
                  size=wx.Size(16, 16), style=wx.NO_BORDER)
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   580
            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
   581
            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
   582
            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
   583
    
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   584
            plcwindowmainsizer = wx.BoxSizer(wx.VERTICAL)
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   585
            plcwindowsizer.AddSizer(plcwindowmainsizer, 0, border=5, flag=wx.ALL)
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   586
            
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   587
            plcwindowbuttonsizer = wx.BoxSizer(wx.HORIZONTAL)
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   588
            plcwindowmainsizer.AddSizer(plcwindowbuttonsizer, 0, border=0, flag=wx.ALIGN_CENTER)
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   589
            
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   590
            msizer = self.GenerateMethodButtonSizer(self.PluginRoot, plcwindow, not self.PluginInfos[self.PluginRoot]["right_visible"])
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   591
            plcwindowbuttonsizer.AddSizer(msizer, 0, border=0, flag=wx.GROW)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   592
            
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   593
            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
   594
            paramswindow.SetBackgroundColour(TITLE_COLOUR)
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
   595
            paramswindow.Bind(wx.EVT_LEFT_DOWN, self.OnPanelLeftDown)
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   596
            plcwindowbuttonsizer.AddWindow(paramswindow, 0, border=0, flag=0)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   597
            
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   598
            psizer = wx.BoxSizer(wx.HORIZONTAL)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   599
            paramswindow.SetSizer(psizer)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   600
            
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   601
            plugin_infos = self.PluginRoot.GetParamsAttributes()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   602
            self.RefreshSizerElement(paramswindow, psizer, self.PluginRoot, plugin_infos, None, False)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   603
            
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   604
            if not self.PluginInfos[self.PluginRoot]["right_visible"]:
129
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
   605
                paramswindow.Hide()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   606
            
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   607
            minimizebutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   608
            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
   609
                  name='MinimizeButton', parent=plcwindow, pos=wx.Point(0, 0),
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   610
                  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
   611
            make_genbitmaptogglebutton_flat(minimizebutton)
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   612
            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
   613
            minimizebutton.SetToggle(self.PluginInfos[self.PluginRoot]["right_visible"])
99
e5e9cb0f027f Beremiz layout improved
lbessard
parents: 98
diff changeset
   614
            plcwindowbuttonsizer.AddWindow(minimizebutton, 0, border=5, flag=wx.ALL)
e5e9cb0f027f Beremiz layout improved
lbessard
parents: 98
diff changeset
   615
            
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   616
            def togglewindow(event):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   617
                if minimizebutton.GetToggle():
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   618
                    paramswindow.Show()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   619
                    msizer.SetCols(1)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   620
                else:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   621
                    paramswindow.Hide()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   622
                    msizer.SetCols(len(self.PluginRoot.PluginMethods))
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   623
                self.PluginInfos[self.PluginRoot]["right_visible"] = minimizebutton.GetToggle()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   624
                self.PLCConfigMainSizer.Layout()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   625
                self.RefreshScrollBars()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   626
                event.Skip()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   627
            minimizebutton.Bind(wx.EVT_BUTTON, togglewindow, id=minimizebutton_id)
101
93e487ccee14 Display bugs on Windows fixed
lbessard
parents: 99
diff changeset
   628
        
129
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
   629
            self.PluginInfos[self.PluginRoot]["main"] = plcwindow
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
   630
            self.PluginInfos[self.PluginRoot]["params"] = paramswindow
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   631
            
101
93e487ccee14 Display bugs on Windows fixed
lbessard
parents: 99
diff changeset
   632
        self.PLCConfigMainSizer.Layout()
93e487ccee14 Display bugs on Windows fixed
lbessard
parents: 99
diff changeset
   633
        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
   634
        self.Thaw()
99
e5e9cb0f027f Beremiz layout improved
lbessard
parents: 98
diff changeset
   635
314
ad4db7099355 Bug with fonts on some systems fixed
lbessard
parents: 308
diff changeset
   636
    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
   637
    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
   638
    def GenerateMethodButtonSizer(self, plugin, parent, horizontal = True):
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   639
        if horizontal:
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   640
            msizer = wx.FlexGridSizer(cols=len(plugin.PluginMethods))
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   641
        else:
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   642
            msizer = wx.FlexGridSizer(cols=1)
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   643
        for plugin_method in plugin.PluginMethods:
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
   644
            if "method" in plugin_method and plugin_method.get("shown",True):
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   645
                id = wx.NewId()
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   646
                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
   647
                button = GenBitmapTextButton(id=id, parent=parent,
230
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   648
                    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
   649
                    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
   650
                button.SetFont(self.normal_bt_font)
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   651
                button.SetToolTipString(plugin_method["tooltip"])
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   652
                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
   653
                # a fancy underline on mouseover
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   654
                def setFontStyle(b, s):
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   655
                    def fn(event):
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   656
                        b.SetFont(s)
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   657
                        b.Refresh()
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   658
                        event.Skip()
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   659
                    return fn
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   660
                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
   661
                button.Bind(wx.EVT_LEAVE_WINDOW, setFontStyle(button, self.normal_bt_font))
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   662
                #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
   663
                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
   664
                    button.Disable()
230
38feaca5f06b Some GUI enhancement. Beremiz now comes with its own GenBitmapTextButton
etisserant
parents: 229
diff changeset
   665
                msizer.AddWindow(button, 0, border=0, flag=wx.ALIGN_CENTER)
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   666
        return msizer
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   667
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
   668
    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
   669
        self.Freeze()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   670
        self.ClearSizer(self.PluginTreeSizer)
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
   671
        if self.PluginRoot is not None:
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   672
            for child in self.PluginRoot.IECSortedChilds():
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   673
                self.GenerateTreeBranch(child)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   674
                if not self.PluginInfos[child]["expanded"]:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   675
                    self.CollapsePlugin(child)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   676
        self.PLCConfigMainSizer.Layout()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   677
        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
   678
        self.Thaw()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   679
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   680
    def SetPluginParamsAttribute(self, plugin, *args, **kwargs):
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   681
        res, StructChanged = plugin.SetParamsAttribute(*args, **kwargs)
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   682
        if StructChanged:
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   683
            wx.CallAfter(self.RefreshPluginTree)
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   684
        else:
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   685
            if plugin == self.PluginRoot:
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   686
                bkgdclr = CHANGED_TITLE_COLOUR
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   687
                items = ["main", "params"]
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   688
            else:
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   689
                bkgdclr = CHANGED_WINDOW_COLOUR
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   690
                items = ["left", "right", "params"]
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   691
            for i in items:
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   692
                self.PluginInfos[plugin][i].SetBackgroundColour(bkgdclr)
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   693
                self.PluginInfos[plugin][i].Refresh()
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   694
        return res
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   695
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   696
    def ExpandPlugin(self, plugin, force = False):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   697
        for child in self.PluginInfos[plugin]["children"]:
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   698
            self.PluginInfos[child]["left"].Show()
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   699
            self.PluginInfos[child]["right"].Show()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   700
            if force or not self.PluginInfos[child]["expanded"]:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   701
                self.ExpandPlugin(child, force)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   702
                if force:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   703
                    self.PluginInfos[child]["expanded"] = True
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   704
        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
   705
        if locations_infos is not None:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   706
            if force or locations_infos["root"]["expanded"]:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   707
                self.ExpandLocation(locations_infos, "root", force)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   708
                if force:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   709
                    locations_infos["root"]["expanded"] = True
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   710
                
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   711
    
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   712
    def CollapsePlugin(self, plugin, force = False):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   713
        for child in self.PluginInfos[plugin]["children"]:
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   714
            self.PluginInfos[child]["left"].Hide()
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   715
            self.PluginInfos[child]["right"].Hide()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   716
            if force or self.PluginInfos[child]["expanded"]:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   717
                self.CollapsePlugin(child, force)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   718
                if force:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   719
                    self.PluginInfos[child]["expanded"] = False
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   720
        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
   721
        if locations_infos is not None:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   722
            if force or not locations_infos["root"]["expanded"]:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   723
                self.CollapseLocation(locations_infos, "root", force)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   724
                if force:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   725
                    locations_infos["root"]["expanded"] = False
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   726
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   727
    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
   728
        for child in locations_infos[group]["children"]:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   729
            locations_infos[child]["left"].Show()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   730
            locations_infos[child]["right"].Show()
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   731
            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
   732
                self.ExpandLocation(locations_infos, child, force)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   733
                if force:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   734
                    locations_infos[child]["expanded"] = True
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   735
    
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   736
    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
   737
        for child in locations_infos[group]["children"]:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   738
            locations_infos[child]["left"].Hide()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   739
            locations_infos[child]["right"].Hide()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   740
            if force or not locations_infos[child]["expanded"]:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   741
                self.CollapseLocation(locations_infos, child, force)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   742
                if force:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   743
                    locations_infos[child]["expanded"] = False
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   744
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   745
    def GenerateTreeBranch(self, plugin):
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   746
        leftwindow = wx.Panel(self.PLCConfig, -1, size=wx.Size(-1, -1))
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   747
        if plugin.PlugTestModified():
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   748
            bkgdclr=CHANGED_WINDOW_COLOUR
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   749
        else:
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   750
            bkgdclr=WINDOW_COLOUR
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   751
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   752
        leftwindow.SetBackgroundColour(bkgdclr)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   753
        
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   754
        if not self.PluginInfos.has_key(plugin):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   755
            self.PluginInfos[plugin] = {"expanded" : False, "right_visible" : False}
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   756
            
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   757
        self.PluginInfos[plugin]["children"] = plugin.IECSortedChilds()
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   758
        plugin_locations = []
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   759
        if len(self.PluginInfos[plugin]["children"]) == 0:
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   760
            plugin_locations = plugin.GetVariableLocationTree()["children"]
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   761
            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
   762
                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
   763
                
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   764
            self.PluginInfos[plugin]["locations_infos"]["root"]["children"] = []
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   765
        
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   766
        self.PluginTreeSizer.AddWindow(leftwindow, 0, border=0, flag=wx.GROW)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   767
        
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   768
        leftwindowsizer = wx.FlexGridSizer(cols=1, rows=2)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   769
        leftwindowsizer.AddGrowableCol(0)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   770
        leftwindow.SetSizer(leftwindowsizer)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   771
        
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   772
        leftbuttonmainsizer = wx.FlexGridSizer(cols=3, rows=1)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   773
        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
   774
        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
   775
        
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   776
        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
   777
        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
   778
        
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
        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
   780
        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
   781
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
        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
   783
        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
   784
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
        enablebutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   786
        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
   787
              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
   788
        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
   789
        make_genbitmaptogglebutton_flat(enablebutton)
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   790
        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
   791
        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
   792
        def toggleenablebutton(event):
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
   793
            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
   794
            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
   795
            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
   796
        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
   797
        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
   798
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
   799
        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
   800
        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
   801
        rolesizer.AddWindow(roletext, 0, border=5, flag=wx.RIGHT|wx.ALIGN_LEFT)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   802
        
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   803
        plugin_IECChannel = plugin.BaseParams.getIEC_Channel()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   804
        
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
   805
        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
   806
        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
   807
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   808
        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
   809
        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
   810
        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
   811
        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
   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
        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
   814
        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
   815
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   816
        if plugin_IECChannel > 0:
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   817
            ieccdownbutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   818
            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
   819
                  name='IECCDownButton', parent=leftwindow, pos=wx.Point(0, 0),
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
   820
                  size=wx.Size(16, 16), style=wx.NO_BORDER)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   821
            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
   822
            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
   823
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   824
        ieccupbutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   825
        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
   826
              name='IECCUpButton', parent=leftwindow, pos=wx.Point(0, 0),
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   827
              size=wx.Size(16, 16), style=wx.NO_BORDER)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   828
        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
   829
        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
   830
9810689febb0 Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents: 105
diff changeset
   831
        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
   832
        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
   833
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
        deletebutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   835
        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
   836
              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
   837
              size=wx.Size(16, 16), style=wx.NO_BORDER)
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   838
        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
   839
        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
   840
        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
   841
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
        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
   843
            addbutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   844
            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
   845
                  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
   846
                  size=wx.Size(16, 16), style=wx.NO_BORDER)
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
   847
            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
   848
            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
   849
            adddeletesizer.AddWindow(addbutton, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   850
        
199
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   851
        expandbutton_id = wx.NewId()
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   852
        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
   853
              name='ExpandButton', parent=leftwindow, pos=wx.Point(0, 0),
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   854
              size=wx.Size(13, 13), style=wx.NO_BORDER)
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   855
        expandbutton.labelDelta = 0
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   856
        expandbutton.SetBezelWidth(0)
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   857
        expandbutton.SetUseFocusIndicator(False)
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
   858
        expandbutton.SetBitmapSelected(wx.Bitmap(Bpath( 'images', 'minus.png')))
199
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   859
            
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   860
        if len(self.PluginInfos[plugin]["children"]) > 0:
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   861
            expandbutton.SetToggle(self.PluginInfos[plugin]["expanded"])
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   862
            def togglebutton(event):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   863
                if expandbutton.GetToggle():
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   864
                    self.ExpandPlugin(plugin)
89
0ab2868c6aa6 Added right aligment of parameteres blocks
etisserant
parents: 88
diff changeset
   865
                else:
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   866
                    self.CollapsePlugin(plugin)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   867
                self.PluginInfos[plugin]["expanded"] = expandbutton.GetToggle()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   868
                self.PLCConfigMainSizer.Layout()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   869
                self.RefreshScrollBars()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   870
                event.Skip()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   871
            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
   872
        elif len(plugin_locations) > 0:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   873
            locations_infos = self.PluginInfos[plugin]["locations_infos"]
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   874
            expandbutton.SetToggle(locations_infos["root"]["expanded"])
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   875
            def togglebutton(event):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   876
                if expandbutton.GetToggle():
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   877
                    self.ExpandLocation(locations_infos, "root")
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   878
                else:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   879
                    self.CollapseLocation(locations_infos, "root")
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   880
                locations_infos["root"]["expanded"] = expandbutton.GetToggle()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   881
                self.PLCConfigMainSizer.Layout()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   882
                self.RefreshScrollBars()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   883
                event.Skip()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   884
            expandbutton.Bind(wx.EVT_BUTTON, togglebutton, id=expandbutton_id)
199
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   885
        else:
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   886
            expandbutton.Enable(False)
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   887
        iecsizer.AddWindow(expandbutton, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER_VERTICAL)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   888
        
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   889
        tc_id = wx.NewId()
199
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   890
        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
   891
        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
   892
        tc.ChangeValue(plugin.MandatoryParams[1].getName())
b4531bf9bdb3 Modification in catched wxTextCtrl events
lbessard
parents: 203
diff changeset
   893
        tc.Bind(wx.EVT_TEXT, self.GetTextCtrlCallBackFunction(tc, plugin, "BaseParams.Name"), id=tc_id)
199
aa5f43bafad4 minor gui improvements :
etisserant
parents: 197
diff changeset
   894
        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
   895
       
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   896
        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
   897
        rightwindow.SetBackgroundColour(bkgdclr)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   898
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   899
        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
   900
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   901
        rightwindowmainsizer = wx.BoxSizer(wx.VERTICAL)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   902
        rightwindow.SetSizer(rightwindowmainsizer)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   903
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   904
        rightwindowsizer = wx.FlexGridSizer(cols=2, rows=1)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   905
        rightwindowsizer.AddGrowableCol(1)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   906
        rightwindowsizer.AddGrowableRow(0)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   907
        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
   908
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   909
        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
   910
        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
   911
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   912
        rightparamssizer = wx.BoxSizer(wx.HORIZONTAL)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   913
        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
   914
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   915
        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
   916
        paramswindow.SetBackgroundColour(bkgdclr)
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
        psizer = wx.BoxSizer(wx.HORIZONTAL)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   919
        paramswindow.SetSizer(psizer)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   920
        self.PluginInfos[plugin]["params"] = paramswindow
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   921
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   922
        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
   923
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   924
        plugin_infos = plugin.GetParamsAttributes()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   925
        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
   926
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   927
        if not self.PluginInfos[plugin]["right_visible"]:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   928
            paramswindow.Hide()
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
        rightminimizebutton_id = wx.NewId()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   931
        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
   932
              name='MinimizeButton', parent=rightwindow, pos=wx.Point(0, 0),
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   933
              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
   934
        make_genbitmaptogglebutton_flat(rightminimizebutton)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   935
        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
   936
        rightminimizebutton.SetToggle(self.PluginInfos[plugin]["right_visible"])
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   937
        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
   938
                    
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   939
        def togglerightwindow(event):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   940
            if rightminimizebutton.GetToggle():
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   941
                rightparamssizer.Show(0)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   942
                msizer.SetCols(1)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   943
            else:
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   944
                rightparamssizer.Hide(0)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   945
                msizer.SetCols(len(plugin.PluginMethods))
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   946
            self.PluginInfos[plugin]["right_visible"] = rightminimizebutton.GetToggle()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   947
            self.PLCConfigMainSizer.Layout()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   948
            self.RefreshScrollBars()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   949
            event.Skip()
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   950
        rightminimizebutton.Bind(wx.EVT_BUTTON, togglerightwindow, id=rightminimizebutton_id)
99
e5e9cb0f027f Beremiz layout improved
lbessard
parents: 98
diff changeset
   951
        
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   952
        self.PluginInfos[plugin]["left"] = leftwindow
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   953
        self.PluginInfos[plugin]["right"] = rightwindow
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   954
        for child in self.PluginInfos[plugin]["children"]:
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
   955
            self.GenerateTreeBranch(child)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   956
            if not self.PluginInfos[child]["expanded"]:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
   957
                self.CollapsePlugin(child)
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   958
        if len(plugin_locations) > 0:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   959
            locations_infos = self.PluginInfos[plugin]["locations_infos"]
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   960
            for location in plugin_locations:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   961
                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
   962
                self.GenerateLocationTreeBranch(locations_infos, "root", location)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   963
                if not locations_infos["root"]["expanded"]:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   964
                    self.CollapseLocation(locations_infos, "root")
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   965
        
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   966
    LOCATION_BITMAP = {LOCATION_PLUGIN: "CONFIGURATION",
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   967
                       LOCATION_MODULE: "RESOURCE",
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   968
                       LOCATION_GROUP: "PROGRAM",
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
   969
                       LOCATION_VAR_INPUT: "VAR_INPUT",
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   970
                       LOCATION_VAR_OUTPUT: "VAR_OUTPUT",
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   971
                       LOCATION_VAR_MEMORY: "VAR_LOCAL"}
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   972
    
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   973
    def GenerateLocationTreeBranch(self, locations_infos, parent, location):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   974
        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
   975
        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
   976
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   977
        leftwindowsizer = wx.BoxSizer(wx.HORIZONTAL)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   978
        leftwindow.SetSizer(leftwindowsizer)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   979
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   980
        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
   981
        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
   982
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   983
        location_name = "%s.%s" % (parent, location["name"])
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   984
        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
   985
            locations_infos[location_name] = {"expanded" : False}
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   986
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   987
        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
   988
            leftwindow.SetBackgroundColour(WINDOW_COLOUR)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   989
            rightwindow.SetBackgroundColour(WINDOW_COLOUR)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   990
                    
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   991
            st = wx.StaticText(leftwindow, -1)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   992
            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
   993
            st.SetLabel(location["location"])
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   994
            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
   995
            
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   996
            expandbutton_id = wx.NewId()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
   997
            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
   998
                  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
   999
                  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
  1000
            expandbutton.labelDelta = 0
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1001
            expandbutton.SetBezelWidth(0)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1002
            expandbutton.SetUseFocusIndicator(False)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1003
            expandbutton.SetBitmapSelected(wx.Bitmap(Bpath( 'images', 'minus.png')))
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1004
            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
  1005
                
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1006
            if len(location["children"]) > 0:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1007
                def togglebutton(event):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1008
                    if expandbutton.GetToggle():
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1009
                        self.ExpandLocation(locations_infos, location_name)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1010
                    else:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1011
                        self.CollapseLocation(locations_infos, location_name)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1012
                    locations_infos[location_name]["expanded"] = expandbutton.GetToggle()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1013
                    self.PLCConfigMainSizer.Layout()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1014
                    self.RefreshScrollBars()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1015
                    event.Skip()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1016
                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
  1017
            else:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1018
                expandbutton.Enable(False)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1019
            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
  1020
            
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1021
        else:
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1022
            leftwindow.SetBackgroundColour(wx.WHITE)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1023
            rightwindow.SetBackgroundColour(wx.WHITE)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1024
            
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1025
            leftwindowsizer.Add(wx.Size(20, 16), 0)
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1026
            
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1027
        sb = wx.StaticBitmap(leftwindow, -1)
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1028
        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
  1029
        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
  1030
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1031
        st_id = wx.NewId()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1032
        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
  1033
        label = location["name"]
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1034
        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
  1035
            label += " (%s)" % location["location"]
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1036
            infos = location.copy()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1037
            infos.pop("children")
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1038
            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
  1039
            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
  1040
        else:
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1041
            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
  1042
        st.SetLabel(label)
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1043
        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
  1044
        
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1045
        locations_infos[location_name]["left"] = leftwindow
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1046
        locations_infos[location_name]["right"] = rightwindow
402
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1047
        locations_infos[location_name]["children"] = []
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1048
        for child in location["children"]:
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1049
            child_name = "%s.%s" % (location_name, child["name"])
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1050
            locations_infos[location_name]["children"].append(child_name)
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1051
            self.GenerateLocationTreeBranch(locations_infos, location_name, child)
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1052
            if not locations_infos[child_name]["expanded"]:
984e238e63d0 Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents: 401
diff changeset
  1053
                self.CollapseLocation(locations_infos, child_name)
401
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1054
    
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1055
    def GenerateLocationLeftDownFunction(self, infos):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1056
        def OnLocationLeftDownFunction(event):
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1057
            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
  1058
            dragSource = wx.DropSource(self)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1059
            dragSource.SetData(data)
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1060
            dragSource.DoDragDrop()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1061
            event.Skip()
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1062
        return OnLocationLeftDownFunction
8106a853a7c7 Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents: 396
diff changeset
  1063
    
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
  1064
    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
  1065
        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
  1066
        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
  1067
        
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1068
    def GetItemChannelChangedFunction(self, plugin, value):
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1069
        def OnPluginTreeItemChannelChanged(event):
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1070
            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
  1071
            event.Skip()
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1072
        return OnPluginTreeItemChannelChanged
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1073
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1074
    def _GetAddPluginFunction(self, name, plugin):
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1075
        def OnPluginMenu(event):
98
d359f0e7a97c Beremiz layout improved
lbessard
parents: 97
diff changeset
  1076
            wx.CallAfter(self.AddPlugin, name, plugin)
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1077
            event.Skip()
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1078
        return OnPluginMenu
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1079
    
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
  1080
    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
  1081
        def AddPluginMenu(event):
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1082
            main_menu = wx.Menu(title='')
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1083
            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
  1084
                for name, XSDClass, help in plugin.PlugChildsTypes:
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1085
                    new_id = wx.NewId()
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1086
                    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
  1087
                    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
  1088
            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
  1089
            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
  1090
        return AddPluginMenu
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1091
    
21
bded6d31365c Adding buttons for plugins
lbessard
parents: 20
diff changeset
  1092
    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
  1093
        """ Generate the callbackfunc for a given plugin method"""
21
bded6d31365c Adding buttons for plugins
lbessard
parents: 20
diff changeset
  1094
        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
  1095
            # 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
  1096
            event.GetEventObject().Disable()
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
  1097
            # Call
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1098
            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
  1099
            # Re-enable button 
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
  1100
            event.GetEventObject().Enable()
a05e8b30c024 Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents: 109
diff changeset
  1101
            # 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
  1102
            wx.CallAfter(self.RefreshAll)
21
bded6d31365c Adding buttons for plugins
lbessard
parents: 20
diff changeset
  1103
            event.Skip()
bded6d31365c Adding buttons for plugins
lbessard
parents: 20
diff changeset
  1104
        return OnButtonClick
bded6d31365c Adding buttons for plugins
lbessard
parents: 20
diff changeset
  1105
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1106
    def GetChoiceCallBackFunction(self, choicectrl, plugin, path):
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1107
        def OnChoiceChanged(event):
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1108
            res = self.SetPluginParamsAttribute(plugin, path, choicectrl.GetStringSelection())
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1109
            choicectrl.SetStringSelection(res)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1110
            event.Skip()
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1111
        return OnChoiceChanged
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1112
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1113
    def GetChoiceContentCallBackFunction(self, choicectrl, staticboxsizer, plugin, path):
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1114
        def OnChoiceContentChanged(event):
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1115
            res = self.SetPluginParamsAttribute(plugin, path, choicectrl.GetStringSelection())
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1116
            if wx.VERSION < (2, 8, 0):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1117
                self.ParamsPanel.Freeze()
129
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
  1118
                choicectrl.SetStringSelection(res)
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
  1119
                infos = self.PluginRoot.GetParamsAttributes(path)
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
  1120
                staticbox = staticboxsizer.GetStaticBox()
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
  1121
                staticbox.SetLabel("%(name)s - %(value)s"%infos)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1122
                self.RefreshSizerElement(self.ParamsPanel, staticboxsizer, infos["children"], "%s.%s"%(path, infos["name"]), selected=selected)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1123
                self.ParamsPanelMainSizer.Layout()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1124
                self.ParamsPanel.Thaw()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1125
                self.ParamsPanel.Refresh()
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1126
            else:
129
ec54cd416528 Bug with Target Type modification fixed
lbessard
parents: 127
diff changeset
  1127
                wx.CallAfter(self.RefreshAll)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1128
            event.Skip()
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1129
        return OnChoiceContentChanged
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1130
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1131
    def GetTextCtrlCallBackFunction(self, textctrl, plugin, path):
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1132
        def OnTextCtrlChanged(event):
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1133
            res = self.SetPluginParamsAttribute(plugin, path, textctrl.GetValue())
214
b4531bf9bdb3 Modification in catched wxTextCtrl events
lbessard
parents: 203
diff changeset
  1134
            if res != textctrl.GetValue():
b4531bf9bdb3 Modification in catched wxTextCtrl events
lbessard
parents: 203
diff changeset
  1135
                textctrl.ChangeValue(res)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1136
            event.Skip()
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1137
        return OnTextCtrlChanged
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1138
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1139
    def GetCheckBoxCallBackFunction(self, chkbx, plugin, path):
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1140
        def OnCheckBoxChanged(event):
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1141
            res = self.SetPluginParamsAttribute(plugin, path, chkbx.IsChecked())
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1142
            chkbx.SetValue(res)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1143
            event.Skip()
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1144
        return OnCheckBoxChanged
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1145
    
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1146
    def ClearSizer(self, sizer):
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1147
        staticboxes = []
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1148
        for item in sizer.GetChildren():
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1149
            if item.IsSizer():
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1150
                item_sizer = item.GetSizer()
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1151
                self.ClearSizer(item_sizer)
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1152
                if isinstance(item_sizer, wx.StaticBoxSizer):
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1153
                    staticboxes.append(item_sizer.GetStaticBox())
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1154
        sizer.Clear(True)
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1155
        for staticbox in staticboxes:
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1156
            staticbox.Destroy()
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1157
                
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1158
    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
  1159
        if clean:
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1160
            if wx.VERSION < (2, 8, 0):
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1161
                self.ClearSizer(sizer)
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1162
            else:
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1163
                sizer.Clear(True)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1164
        first = True
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1165
        for element_infos in elements:
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1166
            if path:
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1167
                element_path = "%s.%s"%(path, element_infos["name"])
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1168
            else:
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1169
                element_path = element_infos["name"]
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1170
            if element_infos["type"] == "element":
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1171
                label = element_infos["name"]
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1172
                staticbox = wx.StaticBox(id=-1, label=_(label), 
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1173
                    name='%s_staticbox'%element_infos["name"], parent=parent,
193
ca6ad333aa80 Warning with StaticBoxSizer fixed
lbessard
parents: 188
diff changeset
  1174
                    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
  1175
                staticboxsizer = wx.StaticBoxSizer(staticbox, wx.VERTICAL)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1176
                if first:
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1177
                    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
  1178
                else:
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1179
                    sizer.AddSizer(staticboxsizer, 0, border=0, flag=wx.GROW)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1180
                self.RefreshSizerElement(parent, staticboxsizer, plugin, element_infos["children"], element_path)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1181
            else:
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1182
                boxsizer = wx.FlexGridSizer(cols=3, rows=1)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1183
                boxsizer.AddGrowableCol(1)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1184
                if first:
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1185
                    sizer.AddSizer(boxsizer, 0, border=5, flag=wx.GROW|wx.ALL)
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1186
                else:
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1187
                    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
  1188
                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
  1189
                    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
  1190
                    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
  1191
                boxsizer.AddWindow(staticbitmap, 0, border=5, flag=wx.RIGHT)
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1192
                label = element_infos["name"]
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1193
                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
  1194
                    name="%s_label"%element_infos["name"], parent=parent, 
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1195
                    pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1196
                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
  1197
                id = wx.NewId()
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1198
                if isinstance(element_infos["type"], types.ListType):
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1199
                    combobox = wx.ComboBox(id=id, name=element_infos["name"], parent=parent, 
317
5378fe2fb4bc Fix size of ComboBoxes
lbessard
parents: 314
diff changeset
  1200
                        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
  1201
                    boxsizer.AddWindow(combobox, 0, border=0, flag=0)
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1202
                    if element_infos["use"] == "optional":
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1203
                        combobox.Append("")
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1204
                    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
  1205
                        for choice, xsdclass in element_infos["type"]:
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1206
                            combobox.Append(choice)
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1207
                        name = element_infos["name"]
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1208
                        value = element_infos["value"]
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1209
                        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
  1210
                            name='%s_staticbox'%element_infos["name"], parent=parent,
193
ca6ad333aa80 Warning with StaticBoxSizer fixed
lbessard
parents: 188
diff changeset
  1211
                            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
  1212
                        staticboxsizer = wx.StaticBoxSizer(staticbox, wx.VERTICAL)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1213
                        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
  1214
                        self.RefreshSizerElement(parent, staticboxsizer, plugin, element_infos["children"], element_path)
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1215
                        callback = self.GetChoiceContentCallBackFunction(combobox, staticboxsizer, plugin, element_path)
23
e007d9d466d7 minor fixes
etisserant
parents: 22
diff changeset
  1216
                    else:
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1217
                        for choice in element_infos["type"]:
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1218
                            combobox.Append(choice)
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1219
                        callback = self.GetChoiceCallBackFunction(combobox, plugin, element_path)
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1220
                    if element_infos["value"] is None:
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1221
                        combobox.SetStringSelection("")
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1222
                    else:
296
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1223
                        combobox.SetStringSelection(element_infos["value"])
37b2b4adbb1d Replacing wx.Choice by wx.ComboBox
lbessard
parents: 290
diff changeset
  1224
                    combobox.Bind(wx.EVT_COMBOBOX, callback, id=id)
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1225
                elif isinstance(element_infos["type"], types.DictType):
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1226
                    scmin = -(2**31)
23
e007d9d466d7 minor fixes
etisserant
parents: 22
diff changeset
  1227
                    scmax = 2**31-1
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1228
                    if "min" in element_infos["type"]:
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1229
                        scmin = element_infos["type"]["min"]
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1230
                    if "max" in element_infos["type"]:
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1231
                        scmax = element_infos["type"]["max"]
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1232
                    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
  1233
                        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
  1234
                    spinctrl.SetRange(scmin,scmax)
19
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1235
                    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
  1236
                    spinctrl.SetValue(element_infos["value"])
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1237
                    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
  1238
                else:
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1239
                    if element_infos["type"] == "boolean":
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1240
                        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
  1241
                            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
  1242
                        boxsizer.AddWindow(checkbox, 0, border=0, flag=0)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1243
                        checkbox.SetValue(element_infos["value"])
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1244
                        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
  1245
                    elif element_infos["type"] in ["unsignedLong", "long","integer"]:
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1246
                        if element_infos["type"].startswith("unsigned"):
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1247
                            scmin = 0
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1248
                        else:
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1249
                            scmin = -(2**31)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1250
                        scmax = 2**31-1
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1251
                        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
  1252
                            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
  1253
                        spinctrl.SetRange(scmin, scmax)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1254
                        boxsizer.AddWindow(spinctrl, 0, border=0, flag=0)
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1255
                        spinctrl.SetValue(element_infos["value"])
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1256
                        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
  1257
                    else:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1258
                        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
  1259
                        textctrl = TextCtrlAutoComplete.TextCtrlAutoComplete(id=id, 
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1260
                                                                     name=element_infos["name"], 
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1261
                                                                     parent=parent, 
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1262
                                                                     choices=choices, 
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1263
                                                                     element_path=element_path,
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1264
                                                                     pos=wx.Point(0, 0), 
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1265
                                                                     size=wx.Size(150, 25), 
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1266
                                                                     style=0)
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1267
                        
188
e152b46cd9b0 Removing empty choice when parameter isn't optional
lbessard
parents: 176
diff changeset
  1268
                        boxsizer.AddWindow(textctrl, 0, border=0, flag=0)
214
b4531bf9bdb3 Modification in catched wxTextCtrl events
lbessard
parents: 203
diff changeset
  1269
                        textctrl.ChangeValue(str(element_infos["value"]))
b4531bf9bdb3 Modification in catched wxTextCtrl events
lbessard
parents: 203
diff changeset
  1270
                        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
  1271
            first = False
73257cea38bd Adding Plugin params visualization with basic controls
lbessard
parents: 18
diff changeset
  1272
    
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1273
    def ResetView(self):
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1274
        IDEFrame.ResetView(self)
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1275
        self.PluginInfos = {}
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1276
        self.PluginRoot = None
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1277
        self.Log.flush()
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1278
        self.DebugVariablePanel.SetDataProducer(None)
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1279
    
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1280
    def OnNewProjectMenu(self, event):
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1281
        if not self.Config.HasEntry("lastopenedfolder"):
257
a4b01f57069a remove workspace test
greg
parents: 256
diff changeset
  1282
            defaultpath = os.path.expanduser("~")
a4b01f57069a remove workspace test
greg
parents: 256
diff changeset
  1283
        else:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1284
            defaultpath = self.Config.Read("lastopenedfolder")
256
1da137b99948 add buildpath parameter for beremiz
greg
parents: 249
diff changeset
  1285
        
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1286
        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
  1287
        if dialog.ShowModal() == wx.ID_OK:
258
54c02b82da5f fixed bug with config
greg
parents: 257
diff changeset
  1288
            projectpath = dialog.GetPath()
54c02b82da5f fixed bug with config
greg
parents: 257
diff changeset
  1289
            dialog.Destroy()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1290
            self.Config.Write("lastopenedfolder", os.path.dirname(projectpath))
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1291
            self.Config.Flush()
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1292
            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
  1293
            self.PluginRoot = PluginsRoot(self, self.Log)
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1294
            self.Controler = self.PluginRoot
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1295
            result = self.PluginRoot.NewProject(projectpath)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1296
            if not result:
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1297
                self.DebugVariablePanel.SetDataProducer(self.PluginRoot)
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1298
                self._Refresh(TYPESTREE, INSTANCESTREE, LIBRARYTREE)
268
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1299
                self.RefreshAll()
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1300
            else:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1301
                self.ShowErrorMessage(result)
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1302
            self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU)
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1303
        event.Skip()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1304
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1305
    def OnOpenProjectMenu(self, event):
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1306
        if not self.Config.HasEntry("lastopenedfolder"):
257
a4b01f57069a remove workspace test
greg
parents: 256
diff changeset
  1307
            defaultpath = os.path.expanduser("~")
a4b01f57069a remove workspace test
greg
parents: 256
diff changeset
  1308
        else:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1309
            defaultpath = self.Config.Read("lastopenedfolder")
256
1da137b99948 add buildpath parameter for beremiz
greg
parents: 249
diff changeset
  1310
        
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1311
        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
  1312
        if dialog.ShowModal() == wx.ID_OK:
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1313
            projectpath = dialog.GetPath()
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1314
            if os.path.isdir(projectpath):
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1315
                self.Config.Write("lastopenedfolder", os.path.dirname(projectpath))
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1316
                self.Config.Flush()
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1317
                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
  1318
                self.PluginRoot = PluginsRoot(self, self.Log)
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1319
                self.Controler = self.PluginRoot
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1320
                result = self.PluginRoot.LoadProject(projectpath)
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1321
                if not result:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1322
                    self.DebugVariablePanel.SetDataProducer(self.PluginRoot)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1323
                    self._Refresh(TYPESTREE, INSTANCESTREE, LIBRARYTREE)
268
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1324
                    self.RefreshAll()
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1325
                else:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1326
                    self.ShowErrorMessage(result)
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1327
            else:
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1328
                self.ShowErrorMessage(_("\"%s\" folder is not a valid Beremiz project\n") % projectpath)
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1329
            self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU)
383
9ae15ab058f3 Fix non-destroyed dialog in 'OnOpenProject' if 'Cancel' selected
laurent
parents: 382
diff changeset
  1330
        dialog.Destroy()
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1331
        event.Skip()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1332
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1333
    def OnCloseProjectMenu(self, event):
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1334
        if self.PluginRoot is not None:
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1335
            if self.PluginRoot.ProjectTestModified():
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1336
                dialog = wx.MessageDialog(self,
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1337
                                          _("Save changes ?"),
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1338
                                          _("Close Application"), 
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1339
                                          wx.YES_NO|wx.CANCEL|wx.ICON_QUESTION)
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1340
                answer = dialog.ShowModal()
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1341
                dialog.Destroy()
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1342
                if answer == wx.ID_YES:
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1343
                    self.PluginRoot.SaveProject()
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1344
                elif answer == wx.ID_CANCEL:
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1345
                    return
396
d1083f580ca1 Many bugs on PLCOpenEditor integration fixed
laurent
parents: 395
diff changeset
  1346
            self.ResetView()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1347
            self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU)
268
66843376a982 add autocomplete support for beremiz's textctrl
greg
parents: 260
diff changeset
  1348
            self.RefreshAll()
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1349
        event.Skip()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1350
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1351
    def OnSaveProjectMenu(self, event):
248
444d4db3faea Bug with Open, Reopen and Close Project fixed
lbessard
parents: 242
diff changeset
  1352
        if self.PluginRoot is not None:
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1353
            self.PluginRoot.SaveProject()
118
185d0d371ea4 Refuse close if PLC running.
etisserant
parents: 117
diff changeset
  1354
            self.RefreshAll()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1355
            self.RefreshTitle()
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1356
        event.Skip()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1357
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1358
    def OnPropertiesMenu(self, event):
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1359
        event.Skip()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1360
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1361
    def OnQuitMenu(self, event):
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1362
        self.Close()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1363
        event.Skip()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1364
        
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1365
    def OnBeremizMenu(self, event):
217
f3eb35df4d87 Now, Beremiz launch Beremiz_service at startup, with a one-time workin dir
etisserant
parents: 214
diff changeset
  1366
        open_pdf(Bpath( "doc", "manual_beremiz.pdf"))
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1367
        event.Skip()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1368
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1369
    def OnAboutMenu(self, event):
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1370
        OpenHtmlFrame(self,_("About Beremiz"), Bpath("doc","about.html"), wx.Size(550, 500))
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1371
        event.Skip()
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1372
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1373
    def GetAddButtonFunction(self, plugin, window):
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1374
        def AddButtonFunction(event):
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1375
            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
  1376
                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
  1377
                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
  1378
                    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
  1379
                    plugin_menu.Append(help=help, id=new_id, kind=wx.ITEM_NORMAL, text=name)
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1380
                    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
  1381
                window_pos = window.GetPosition()
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1382
                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
  1383
            event.Skip()
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1384
        return AddButtonFunction
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1385
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1386
    def GetDeleteButtonFunction(self, plugin):
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1387
        def DeleteButtonFunction(event):
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1388
            wx.CallAfter(self.DeletePlugin, plugin)
82
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1389
            event.Skip()
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1390
        return DeleteButtonFunction
d7b4dd1f543f Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents: 76
diff changeset
  1391
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1392
    def AddPlugin(self, PluginType, plugin):
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1393
        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
  1394
        if dialog.ShowModal() == wx.ID_OK:
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1395
            PluginName = dialog.GetValue()
203
cb9901076a21 Added concepts :
etisserant
parents: 201
diff changeset
  1396
            plugin.PlugAddChild(PluginName, PluginType)
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 13
diff changeset
  1397
            self.RefreshPluginTree()
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1398
            self.PluginRoot.RefreshPluginsBlockLists()
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1399
        dialog.Destroy()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1400
    
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1401
    def DeletePlugin(self, plugin):
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1402
        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
  1403
        if dialog.ShowModal() == wx.ID_YES:
97
9c6fdf60ad2e Beremiz layout changed
lbessard
parents: 94
diff changeset
  1404
            self.PluginInfos.pop(plugin)
50
447b7706a5b6 Added plugin deletion
etisserant
parents: 49
diff changeset
  1405
            plugin.PlugRemove()
447b7706a5b6 Added plugin deletion
etisserant
parents: 49
diff changeset
  1406
            del plugin
395
433fd448dd31 Integrate PLCOpenEditor into Beremiz frame
laurent
parents: 388
diff changeset
  1407
            self.PluginRoot.RefreshPluginsBlockLists()
50
447b7706a5b6 Added plugin deletion
etisserant
parents: 49
diff changeset
  1408
            self.RefreshPluginTree()
447b7706a5b6 Added plugin deletion
etisserant
parents: 49
diff changeset
  1409
        dialog.Destroy()
7
e20fa7257d41 Added stdout/stderr separation limitation and coloration
etisserant
parents: 6
diff changeset
  1410
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1411
#-------------------------------------------------------------------------------
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1412
#                               Exception Handler
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1413
#-------------------------------------------------------------------------------
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1414
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1415
Max_Traceback_List_Size = 20
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1416
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
  1417
def Display_Exception_Dialog(e_type, e_value, e_tb, bug_report_path):
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1418
    trcbck_lst = []
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1419
    for i,line in enumerate(traceback.extract_tb(e_tb)):
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1420
        trcbck = " " + str(i+1) + _(". ")
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1421
        if line[0].find(os.getcwd()) == -1:
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1422
            trcbck += _("file : ") + str(line[0]) + _(",   ")
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1423
        else:
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1424
            trcbck += _("file : ") + str(line[0][len(os.getcwd()):]) + _(",   ")
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1425
        trcbck += _("line : ") + str(line[1]) + _(",   ") + _("function : ") + str(line[2])
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1426
        trcbck_lst.append(trcbck)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1427
        
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1428
    # Allow clicking....
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1429
    cap = wx.Window_GetCapture()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1430
    if cap:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1431
        cap.ReleaseMouse()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1432
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1433
    dlg = wx.SingleChoiceDialog(None, 
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1434
        _("""
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
  1435
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
  1436
(%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
  1437
337
9d1d9323374a Add LoliTech phone number in bug report
greg
parents: 324
diff changeset
  1438
Please contact LOLITech at:
9d1d9323374a Add LoliTech phone number in bug report
greg
parents: 324
diff changeset
  1439
+33 (0)3 29 57 60 42
9d1d9323374a Add LoliTech phone number in bug report
greg
parents: 324
diff changeset
  1440
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
  1441
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
  1442
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
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
  1444
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
Traceback:
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1446
""") % bug_report_path +
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1447
        str(e_type) + " : " + str(e_value), 
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1448
        _("Error"),
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1449
        trcbck_lst)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1450
    try:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1451
        res = (dlg.ShowModal() == wx.ID_OK)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1452
    finally:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1453
        dlg.Destroy()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1454
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1455
    return res
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1456
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1457
def Display_Error_Dialog(e_value):
361
331d698e1118 Adding support for internationalization
laurent
parents: 356
diff changeset
  1458
    message = wxMessageDialog(None, str(e_value), _("Error"), wxOK|wxICON_ERROR)
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1459
    message.ShowModal()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1460
    message.Destroy()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1461
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1462
def get_last_traceback(tb):
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1463
    while tb.tb_next:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1464
        tb = tb.tb_next
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1465
    return tb
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1466
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1467
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1468
def format_namespace(d, indent='    '):
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1469
    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
  1470
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1471
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1472
ignored_exceptions = [] # a problem with a line in a module is only reported once per session
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1473
5
9565bb5facf7 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 4
diff changeset
  1474
def AddExceptHook(path, app_version='[No version]'):#, ignored_exceptions=[]):
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1475
    
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1476
    def handle_exception(e_type, e_value, e_traceback):
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1477
        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
  1478
        last_tb = get_last_traceback(e_traceback)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1479
        ex = (last_tb.tb_frame.f_code.co_filename, last_tb.tb_frame.f_lineno)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1480
        if str(e_value).startswith("!!!"):
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1481
            Display_Error_Dialog(e_value)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1482
        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
  1483
            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
  1484
            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
  1485
            result = Display_Exception_Dialog(e_type,e_value,e_traceback,bug_report_path)
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1486
            if result:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1487
                ignored_exceptions.append(ex)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1488
                info = {
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1489
                    'app-title' : wx.GetApp().GetAppName(), # app_title
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1490
                    'app-version' : app_version,
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1491
                    'wx-version' : wx.VERSION_STRING,
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1492
                    'wx-platform' : wx.Platform,
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1493
                    'python-version' : platform.python_version(), #sys.version.split()[0],
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1494
                    'platform' : platform.platform(),
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1495
                    'e-type' : e_type,
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1496
                    '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
  1497
                    'date' : date,
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1498
                    'cwd' : os.getcwd(),
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1499
                    }
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1500
                if e_traceback:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1501
                    info['traceback'] = ''.join(traceback.format_tb(e_traceback)) + '%s: %s' % (e_type, e_value)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1502
                    last_tb = get_last_traceback(e_traceback)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1503
                    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
  1504
                    info['locals'] = format_namespace(exception_locals)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1505
                    if 'self' in exception_locals:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1506
                        info['self'] = format_namespace(exception_locals['self'].__dict__)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1507
                
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
  1508
                output = open(bug_report_path,'w')
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1509
                lst = info.keys()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1510
                lst.sort()
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1511
                for a in lst:
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1512
                    output.write(a+":\n"+str(info[a])+"\n\n")
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1513
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1514
    #sys.excepthook = lambda *args: wx.CallAfter(handle_exception, *args)
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1515
    sys.excepthook = handle_exception
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1516
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1517
if __name__ == '__main__':
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1518
    # Install a exception handle for bug reports
5
9565bb5facf7 Cleaning code for using only wxPython 2.6 class naming
lbessard
parents: 4
diff changeset
  1519
    AddExceptHook(os.getcwd(),__version__)
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1520
    
256
1da137b99948 add buildpath parameter for beremiz
greg
parents: 249
diff changeset
  1521
    frame = Beremiz(None, projectOpen, buildpath)
103
05b58747ca5d fix bzr.ico -> icon for windows installer
greg
parents: 102
diff changeset
  1522
    frame.Show()
133
d85b937cdac3 change splash.Hide() with splash.Close()
greg
parents: 129
diff changeset
  1523
    splash.Close()
0
215982c73cd6 First Beremiz commit
lbessard
parents:
diff changeset
  1524
    app.MainLoop()