editors/ConfTreeNodeEditor.py
author Edouard Tisserant
Tue, 16 Jun 2020 10:12:21 +0200
changeset 2675 3ca5611d6308
parent 2459 21164625b393
child 2704 4ba3bdc7d71f
permissions -rw-r--r--
Modbus: Delete stored configuration when identical to default configuration.
1511
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
     1
#!/usr/bin/env python
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
     2
# -*- coding: utf-8 -*-
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
     3
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
     4
# This file is part of Beremiz, a Integrated Development Environment for
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
     5
# programming IEC 61131-3 automates supporting plcopen standard and CanFestival.
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
     6
#
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
     7
# Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD
1696
8043f32de7b8 make all dialog have non-fixed size
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1562
diff changeset
     8
# Copyright (C) 2017: Andrey Skvortsov <andrej.skvortzov@gmail.com>
1511
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
     9
#
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    10
# See COPYING file for copyrights details.
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    11
#
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    12
# This program is free software; you can redistribute it and/or
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    13
# modify it under the terms of the GNU General Public License
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    14
# as published by the Free Software Foundation; either version 2
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    15
# of the License, or (at your option) any later version.
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    16
#
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    17
# This program is distributed in the hope that it will be useful,
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    18
# but WITHOUT ANY WARRANTY; without even the implied warranty of
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    19
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    20
# GNU General Public License for more details.
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    21
#
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    22
# You should have received a copy of the GNU General Public License
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    23
# along with this program; if not, write to the Free Software
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1451
diff changeset
    24
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
738
413946c04c87 refactoring
laurent
parents:
diff changeset
    25
1853
47a3f39bead0 fix pylint warning "(relative-import) Relative import 'Y', should be 'X.Y'"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1850
diff changeset
    26
47a3f39bead0 fix pylint warning "(relative-import) Relative import 'Y', should be 'X.Y'"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1850
diff changeset
    27
from __future__ import absolute_import
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2182
diff changeset
    28
from __future__ import division
738
413946c04c87 refactoring
laurent
parents:
diff changeset
    29
413946c04c87 refactoring
laurent
parents:
diff changeset
    30
import wx
413946c04c87 refactoring
laurent
parents:
diff changeset
    31
1853
47a3f39bead0 fix pylint warning "(relative-import) Relative import 'Y', should be 'X.Y'"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1850
diff changeset
    32
from editors.EditorPanel import EditorPanel
814
5743cbdff669 Integration of PLCOpenEditor into Beremiz
Laurent Bessard
parents: 781
diff changeset
    33
5743cbdff669 Integration of PLCOpenEditor into Beremiz
Laurent Bessard
parents: 781
diff changeset
    34
from IDEFrame import TITLE, FILEMENU, PROJECTTREE, PAGETITLES
5743cbdff669 Integration of PLCOpenEditor into Beremiz
Laurent Bessard
parents: 781
diff changeset
    35
2330
8c18b1a3e2bf URI Editor Dialog : moved it to /dialog, and fixed naming.
Edouard Tisserant
parents: 2182
diff changeset
    36
from controls import TextCtrlAutoComplete
8c18b1a3e2bf URI Editor Dialog : moved it to /dialog, and fixed naming.
Edouard Tisserant
parents: 2182
diff changeset
    37
from dialogs import BrowseValuesLibraryDialog, UriEditor
814
5743cbdff669 Integration of PLCOpenEditor into Beremiz
Laurent Bessard
parents: 781
diff changeset
    38
from util.BitmapLibrary import GetBitmap
738
413946c04c87 refactoring
laurent
parents:
diff changeset
    39
413946c04c87 refactoring
laurent
parents:
diff changeset
    40
if wx.Platform == '__WXMSW__':
1747
6046ffa2280f clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
    41
    faces = {
6046ffa2280f clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
    42
        'times': 'Times New Roman',
6046ffa2280f clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
    43
        'mono':  'Courier New',
6046ffa2280f clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
    44
        'helv':  'Arial',
6046ffa2280f clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
    45
        'other': 'Comic Sans MS',
6046ffa2280f clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
    46
        'size':  16,
6046ffa2280f clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
    47
    }
738
413946c04c87 refactoring
laurent
parents:
diff changeset
    48
else:
1747
6046ffa2280f clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
    49
    faces = {
6046ffa2280f clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
    50
        'times': 'Times',
6046ffa2280f clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
    51
        'mono':  'Courier',
6046ffa2280f clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
    52
        'helv':  'Helvetica',
6046ffa2280f clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
    53
        'other': 'new century schoolbook',
6046ffa2280f clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
    54
        'size':  18,
6046ffa2280f clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
    55
    }
738
413946c04c87 refactoring
laurent
parents:
diff changeset
    56
413946c04c87 refactoring
laurent
parents:
diff changeset
    57
SCROLLBAR_UNIT = 10
413946c04c87 refactoring
laurent
parents:
diff changeset
    58
1736
7e61baa047f0 clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1734
diff changeset
    59
738
413946c04c87 refactoring
laurent
parents:
diff changeset
    60
class GenBitmapTextButton(wx.lib.buttons.GenBitmapTextButton):
413946c04c87 refactoring
laurent
parents:
diff changeset
    61
    def _GetLabelSize(self):
413946c04c87 refactoring
laurent
parents:
diff changeset
    62
        """ used internally """
413946c04c87 refactoring
laurent
parents:
diff changeset
    63
        w, h = self.GetTextExtent(self.GetLabel())
413946c04c87 refactoring
laurent
parents:
diff changeset
    64
        if not self.bmpLabel:
413946c04c87 refactoring
laurent
parents:
diff changeset
    65
            return w, h, False       # if there isn't a bitmap use the size of the text
413946c04c87 refactoring
laurent
parents:
diff changeset
    66
413946c04c87 refactoring
laurent
parents:
diff changeset
    67
        w_bmp = self.bmpLabel.GetWidth()+2
413946c04c87 refactoring
laurent
parents:
diff changeset
    68
        h_bmp = self.bmpLabel.GetHeight()+2
413946c04c87 refactoring
laurent
parents:
diff changeset
    69
        height = h + h_bmp
413946c04c87 refactoring
laurent
parents:
diff changeset
    70
        if w_bmp > w:
413946c04c87 refactoring
laurent
parents:
diff changeset
    71
            width = w_bmp
413946c04c87 refactoring
laurent
parents:
diff changeset
    72
        else:
413946c04c87 refactoring
laurent
parents:
diff changeset
    73
            width = w
413946c04c87 refactoring
laurent
parents:
diff changeset
    74
        return width, height, False
413946c04c87 refactoring
laurent
parents:
diff changeset
    75
413946c04c87 refactoring
laurent
parents:
diff changeset
    76
    def DrawLabel(self, dc, width, height, dw=0, dy=0):
413946c04c87 refactoring
laurent
parents:
diff changeset
    77
        bmp = self.bmpLabel
1743
c3c3d1318130 clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1742
diff changeset
    78
        if bmp is not None:     # if the bitmap is used
738
413946c04c87 refactoring
laurent
parents:
diff changeset
    79
            if self.bmpDisabled and not self.IsEnabled():
413946c04c87 refactoring
laurent
parents:
diff changeset
    80
                bmp = self.bmpDisabled
413946c04c87 refactoring
laurent
parents:
diff changeset
    81
            if self.bmpFocus and self.hasFocus:
413946c04c87 refactoring
laurent
parents:
diff changeset
    82
                bmp = self.bmpFocus
413946c04c87 refactoring
laurent
parents:
diff changeset
    83
            if self.bmpSelected and not self.up:
413946c04c87 refactoring
laurent
parents:
diff changeset
    84
                bmp = self.bmpSelected
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
    85
            bw, bh = bmp.GetWidth(), bmp.GetHeight()
738
413946c04c87 refactoring
laurent
parents:
diff changeset
    86
            if not self.up:
413946c04c87 refactoring
laurent
parents:
diff changeset
    87
                dw = dy = self.labelDelta
1743
c3c3d1318130 clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1742
diff changeset
    88
            hasMask = bmp.GetMask() is not None
738
413946c04c87 refactoring
laurent
parents:
diff changeset
    89
        else:
413946c04c87 refactoring
laurent
parents:
diff changeset
    90
            bw = bh = 0     # no bitmap -> size is zero
413946c04c87 refactoring
laurent
parents:
diff changeset
    91
413946c04c87 refactoring
laurent
parents:
diff changeset
    92
        dc.SetFont(self.GetFont())
413946c04c87 refactoring
laurent
parents:
diff changeset
    93
        if self.IsEnabled():
413946c04c87 refactoring
laurent
parents:
diff changeset
    94
            dc.SetTextForeground(self.GetForegroundColour())
413946c04c87 refactoring
laurent
parents:
diff changeset
    95
        else:
413946c04c87 refactoring
laurent
parents:
diff changeset
    96
            dc.SetTextForeground(wx.SystemSettings.GetColour(wx.SYS_COLOUR_GRAYTEXT))
413946c04c87 refactoring
laurent
parents:
diff changeset
    97
413946c04c87 refactoring
laurent
parents:
diff changeset
    98
        label = self.GetLabel()
413946c04c87 refactoring
laurent
parents:
diff changeset
    99
        tw, th = dc.GetTextExtent(label)        # size of text
413946c04c87 refactoring
laurent
parents:
diff changeset
   100
        if not self.up:
413946c04c87 refactoring
laurent
parents:
diff changeset
   101
            dw = dy = self.labelDelta
413946c04c87 refactoring
laurent
parents:
diff changeset
   102
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2182
diff changeset
   103
        pos_x = (width - bw) // 2 + dw      # adjust for bitmap and text to centre
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2182
diff changeset
   104
        pos_y = (height - bh - th) // 2 + dy
1743
c3c3d1318130 clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1742
diff changeset
   105
        if bmp is not None:
1737
a39c2918c015 clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1736
diff changeset
   106
            dc.DrawBitmap(bmp, pos_x, pos_y, hasMask)  # draw bitmap if available
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2182
diff changeset
   107
            pos_x = (width-tw)//2+dw      # adjust for bitmap and text to centre
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   108
            pos_y += bh + 2
413946c04c87 refactoring
laurent
parents:
diff changeset
   109
413946c04c87 refactoring
laurent
parents:
diff changeset
   110
        dc.DrawText(label, pos_x, pos_y)      # draw the text
413946c04c87 refactoring
laurent
parents:
diff changeset
   111
413946c04c87 refactoring
laurent
parents:
diff changeset
   112
1162
a2b4d366bc66 Fixed ConfTreeNodeEditor background colour
Laurent Bessard
parents: 1111
diff changeset
   113
class GenStaticBitmap(wx.StaticBitmap):
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   114
    """ Customized GenStaticBitmap, fix transparency redraw bug on wx2.8/win32,
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   115
    and accept image name as __init__ parameter, fail silently if file do not exist"""
413946c04c87 refactoring
laurent
parents:
diff changeset
   116
    def __init__(self, parent, ID, bitmapname,
1744
69dfdb26f600 clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1743
diff changeset
   117
                 pos=wx.DefaultPosition, size=wx.DefaultSize,
69dfdb26f600 clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1743
diff changeset
   118
                 style=0,
69dfdb26f600 clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1743
diff changeset
   119
                 name="genstatbmp"):
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   120
1162
a2b4d366bc66 Fixed ConfTreeNodeEditor background colour
Laurent Bessard
parents: 1111
diff changeset
   121
        bitmap = GetBitmap(bitmapname)
a2b4d366bc66 Fixed ConfTreeNodeEditor background colour
Laurent Bessard
parents: 1111
diff changeset
   122
        if bitmap is None:
a2b4d366bc66 Fixed ConfTreeNodeEditor background colour
Laurent Bessard
parents: 1111
diff changeset
   123
            bitmap = wx.EmptyBitmap(0, 0)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   124
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   125
        wx.StaticBitmap.__init__(self, parent, ID,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   126
                                 bitmap,
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   127
                                 pos, size,
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   128
                                 style,
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   129
                                 name)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   130
1736
7e61baa047f0 clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1734
diff changeset
   131
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   132
class ConfTreeNodeEditor(EditorPanel):
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   133
775
172be32a2482 Adding support for hiding node base params controls if needed
laurent
parents: 767
diff changeset
   134
    SHOW_BASE_PARAMS = True
762
aaacc83aa86b Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents: 751
diff changeset
   135
    SHOW_PARAMS = True
920
1499a4d225db Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents: 846
diff changeset
   136
    CONFNODEEDITOR_TABS = []
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   137
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   138
    def _init_Editor(self, parent):
920
1499a4d225db Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents: 846
diff changeset
   139
        tabs_num = len(self.CONFNODEEDITOR_TABS)
1055
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   140
        if self.SHOW_PARAMS and len(self.Controler.GetParamsAttributes()) > 0:
920
1499a4d225db Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents: 846
diff changeset
   141
            tabs_num += 1
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   142
1055
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   143
        if tabs_num > 1 or self.SHOW_BASE_PARAMS:
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   144
            self.Editor = wx.Panel(parent,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   145
                                   style=wx.SUNKEN_BORDER | wx.SP_3D)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   146
1055
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   147
            self.MainSizer = wx.BoxSizer(wx.VERTICAL)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   148
775
172be32a2482 Adding support for hiding node base params controls if needed
laurent
parents: 767
diff changeset
   149
            if self.SHOW_BASE_PARAMS:
172be32a2482 Adding support for hiding node base params controls if needed
laurent
parents: 767
diff changeset
   150
                baseparamseditor_sizer = wx.BoxSizer(wx.HORIZONTAL)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   151
                self.MainSizer.AddSizer(baseparamseditor_sizer, border=5,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   152
                                        flag=wx.GROW | wx.ALL)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   153
1055
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   154
                self.FullIECChannel = wx.StaticText(self.Editor, -1)
775
172be32a2482 Adding support for hiding node base params controls if needed
laurent
parents: 767
diff changeset
   155
                self.FullIECChannel.SetFont(
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   156
                    wx.Font(faces["size"], wx.DEFAULT, wx.NORMAL,
1744
69dfdb26f600 clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1743
diff changeset
   157
                            wx.BOLD, faceName=faces["helv"]))
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   158
                baseparamseditor_sizer.AddWindow(self.FullIECChannel,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   159
                                                 flag=wx.ALIGN_CENTER_VERTICAL)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   160
775
172be32a2482 Adding support for hiding node base params controls if needed
laurent
parents: 767
diff changeset
   161
                updownsizer = wx.BoxSizer(wx.VERTICAL)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   162
                baseparamseditor_sizer.AddSizer(updownsizer, border=5,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   163
                                                flag=wx.LEFT | wx.ALIGN_CENTER_VERTICAL)
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   164
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   165
                self.IECCUpButton = wx.lib.buttons.GenBitmapTextButton(
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   166
                    self.Editor,
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   167
                    bitmap=GetBitmap('IECCDown'),
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   168
                    size=wx.Size(16, 16),
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   169
                    style=wx.NO_BORDER)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   170
                self.IECCUpButton.Bind(wx.EVT_BUTTON, self.GetItemChannelChangedFunction(1),
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   171
                                       self.IECCUpButton)
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   172
                updownsizer.AddWindow(self.IECCUpButton, flag=wx.ALIGN_LEFT)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   173
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   174
                self.IECCDownButton = wx.lib.buttons.GenBitmapButton(
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   175
                    self.Editor, bitmap=GetBitmap('IECCUp'),
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   176
                    size=wx.Size(16, 16), style=wx.NO_BORDER)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   177
                self.IECCDownButton.Bind(wx.EVT_BUTTON, self.GetItemChannelChangedFunction(-1),
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   178
                                         self.IECCDownButton)
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   179
                updownsizer.AddWindow(self.IECCDownButton, flag=wx.ALIGN_LEFT)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   180
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   181
                self.ConfNodeName = wx.TextCtrl(self.Editor,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   182
                                                size=wx.Size(150, 25))
775
172be32a2482 Adding support for hiding node base params controls if needed
laurent
parents: 767
diff changeset
   183
                self.ConfNodeName.SetFont(
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   184
                    wx.Font(faces["size"] * 0.75, wx.DEFAULT, wx.NORMAL,
1744
69dfdb26f600 clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1743
diff changeset
   185
                            wx.BOLD, faceName=faces["helv"]))
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   186
                self.ConfNodeName.Bind(
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   187
                    wx.EVT_TEXT,
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   188
                    self.GetTextCtrlCallBackFunction(self.ConfNodeName, "BaseParams.Name", True),
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   189
                    self.ConfNodeName)
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   190
                baseparamseditor_sizer.AddWindow(
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   191
                    self.ConfNodeName, border=5,
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   192
                    flag=wx.LEFT | wx.RIGHT | wx.ALIGN_CENTER_VERTICAL)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   193
775
172be32a2482 Adding support for hiding node base params controls if needed
laurent
parents: 767
diff changeset
   194
                buttons_sizer = self.GenerateMethodButtonSizer()
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   195
                baseparamseditor_sizer.AddSizer(buttons_sizer, flag=wx.ALIGN_CENTER)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   196
1055
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   197
            if tabs_num > 1:
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   198
                self.ConfNodeNoteBook = wx.Notebook(self.Editor)
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   199
                parent = self.ConfNodeNoteBook
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   200
                self.MainSizer.AddWindow(self.ConfNodeNoteBook, 1, flag=wx.GROW)
775
172be32a2482 Adding support for hiding node base params controls if needed
laurent
parents: 767
diff changeset
   201
            else:
1059
50246061d5c6 Fixed new ConfTreeNodeEditor layout on Windows
Laurent Bessard
parents: 1055
diff changeset
   202
                parent = self.Editor
1055
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   203
                self.ConfNodeNoteBook = None
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   204
1055
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   205
            self.Editor.SetSizer(self.MainSizer)
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   206
        else:
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   207
            self.ConfNodeNoteBook = None
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   208
            self.Editor = None
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   209
1055
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   210
        for title, create_func_name in self.CONFNODEEDITOR_TABS:
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   211
            editor = getattr(self, create_func_name)(parent)
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   212
            if self.ConfNodeNoteBook is not None:
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   213
                self.ConfNodeNoteBook.AddPage(editor, title)
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   214
            elif self.SHOW_BASE_PARAMS:
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   215
                self.MainSizer.AddWindow(editor, 1, flag=wx.GROW)
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   216
            else:
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   217
                self.Editor = editor
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   218
1055
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   219
        if self.SHOW_PARAMS and len(self.Controler.GetParamsAttributes()) > 0:
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   220
1745
f9d32913bad4 clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1744
diff changeset
   221
            panel_style = wx.TAB_TRAVERSAL | wx.HSCROLL | wx.VSCROLL
1059
50246061d5c6 Fixed new ConfTreeNodeEditor layout on Windows
Laurent Bessard
parents: 1055
diff changeset
   222
            if self.ConfNodeNoteBook is None and parent != self.Editor:
1055
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   223
                panel_style |= wx.SUNKEN_BORDER
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   224
            self.ParamsEditor = wx.ScrolledWindow(parent,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   225
                                                  style=panel_style)
1180
276a30c68eaa Fixed bugs with TextCtrlAutoComplete
Laurent Bessard
parents: 1179
diff changeset
   226
            self.ParamsEditor.Bind(wx.EVT_SIZE, self.OnParamsEditorResize)
276a30c68eaa Fixed bugs with TextCtrlAutoComplete
Laurent Bessard
parents: 1179
diff changeset
   227
            self.ParamsEditor.Bind(wx.EVT_SCROLLWIN, self.OnParamsEditorScroll)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   228
1055
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   229
            self.ParamsEditorSizer = wx.FlexGridSizer(cols=1, hgap=0, rows=1, vgap=5)
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   230
            self.ParamsEditorSizer.AddGrowableCol(0)
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   231
            self.ParamsEditorSizer.AddGrowableRow(0)
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   232
            self.ParamsEditor.SetSizer(self.ParamsEditorSizer)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   233
762
aaacc83aa86b Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents: 751
diff changeset
   234
            self.ConfNodeParamsSizer = wx.BoxSizer(wx.VERTICAL)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   235
            self.ParamsEditorSizer.AddSizer(self.ConfNodeParamsSizer, border=5,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   236
                                            flag=wx.LEFT | wx.RIGHT | wx.BOTTOM)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   237
775
172be32a2482 Adding support for hiding node base params controls if needed
laurent
parents: 767
diff changeset
   238
            self.RefreshConfNodeParamsSizer()
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   239
920
1499a4d225db Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents: 846
diff changeset
   240
            if self.ConfNodeNoteBook is not None:
1499a4d225db Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents: 846
diff changeset
   241
                self.ConfNodeNoteBook.AddPage(self.ParamsEditor, _("Config"))
1055
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   242
            elif self.SHOW_BASE_PARAMS:
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   243
                self.MainSizer.AddWindow(self.ParamsEditor, 1, flag=wx.GROW)
920
1499a4d225db Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents: 846
diff changeset
   244
            else:
1499a4d225db Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents: 846
diff changeset
   245
                self.Editor = self.ParamsEditor
762
aaacc83aa86b Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents: 751
diff changeset
   246
        else:
aaacc83aa86b Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents: 751
diff changeset
   247
            self.ParamsEditor = None
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   248
743
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 738
diff changeset
   249
    def __init__(self, parent, controler, window, tagname=""):
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   250
        EditorPanel.__init__(self, parent, tagname, window, controler)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   251
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   252
        icon_name = self.Controler.GetIconName()
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   253
        if icon_name is not None:
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   254
            self.SetIcon(GetBitmap(icon_name))
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   255
        else:
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   256
            self.SetIcon(GetBitmap("Extension"))
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   257
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   258
    def __del__(self):
413946c04c87 refactoring
laurent
parents:
diff changeset
   259
        self.Controler.OnCloseEditor(self)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   260
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   261
    def GetTagName(self):
413946c04c87 refactoring
laurent
parents:
diff changeset
   262
        return self.Controler.CTNFullName()
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   263
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   264
    def GetTitle(self):
413946c04c87 refactoring
laurent
parents:
diff changeset
   265
        fullname = self.Controler.CTNFullName()
413946c04c87 refactoring
laurent
parents:
diff changeset
   266
        if self.Controler.CTNTestModified():
413946c04c87 refactoring
laurent
parents:
diff changeset
   267
            return "~%s~" % fullname
413946c04c87 refactoring
laurent
parents:
diff changeset
   268
        return fullname
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   269
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   270
    def HasNoModel(self):
413946c04c87 refactoring
laurent
parents:
diff changeset
   271
        return False
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   272
743
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 738
diff changeset
   273
    def GetBufferState(self):
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 738
diff changeset
   274
        return False, False
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   275
743
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 738
diff changeset
   276
    def Undo(self):
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 738
diff changeset
   277
        pass
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   278
743
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 738
diff changeset
   279
    def Redo(self):
4645a3a398ad Fix bugs with ConfigTreeNode
laurent
parents: 738
diff changeset
   280
        pass
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   281
746
2e09777a40d3 Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents: 744
diff changeset
   282
    def RefreshView(self):
2e09777a40d3 Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents: 744
diff changeset
   283
        EditorPanel.RefreshView(self)
1055
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   284
        if self.SHOW_BASE_PARAMS:
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   285
            self.ConfNodeName.ChangeValue(self.Controler.MandatoryParams[1].getName())
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   286
            self.RefreshIECChannelControlsState()
762
aaacc83aa86b Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents: 751
diff changeset
   287
        if self.ParamsEditor is not None:
aaacc83aa86b Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents: 751
diff changeset
   288
            self.RefreshConfNodeParamsSizer()
840
980863738cf6 Fix scroll bug in ConfNode params panel when changing tab selection on Windows
Laurent Bessard
parents: 814
diff changeset
   289
            self.RefreshScrollbars()
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   290
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   291
    def RefreshIECChannelControlsState(self):
413946c04c87 refactoring
laurent
parents:
diff changeset
   292
        self.FullIECChannel.SetLabel(self.Controler.GetFullIEC_Channel())
413946c04c87 refactoring
laurent
parents:
diff changeset
   293
        self.IECCDownButton.Enable(self.Controler.BaseParams.getIEC_Channel() > 0)
1059
50246061d5c6 Fixed new ConfTreeNodeEditor layout on Windows
Laurent Bessard
parents: 1055
diff changeset
   294
        self.MainSizer.Layout()
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   295
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   296
    def RefreshConfNodeParamsSizer(self):
413946c04c87 refactoring
laurent
parents:
diff changeset
   297
        self.Freeze()
413946c04c87 refactoring
laurent
parents:
diff changeset
   298
        self.ConfNodeParamsSizer.Clear(True)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   299
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   300
        confnode_infos = self.Controler.GetParamsAttributes()
413946c04c87 refactoring
laurent
parents:
diff changeset
   301
        if len(confnode_infos) > 0:
413946c04c87 refactoring
laurent
parents:
diff changeset
   302
            self.GenerateSizerElements(self.ConfNodeParamsSizer, confnode_infos, None, False)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   303
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   304
        self.ParamsEditorSizer.Layout()
413946c04c87 refactoring
laurent
parents:
diff changeset
   305
        self.Thaw()
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   306
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   307
    def GenerateMethodButtonSizer(self):
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2182
diff changeset
   308
        normal_bt_font = wx.Font(faces["size"] // 3,    wx.DEFAULT, wx.NORMAL, wx.NORMAL, faceName=faces["helv"])
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2182
diff changeset
   309
        mouseover_bt_font = wx.Font(faces["size"] // 3, wx.DEFAULT, wx.NORMAL, wx.NORMAL, faceName=faces["helv"], underline=True)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   310
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   311
        msizer = wx.BoxSizer(wx.HORIZONTAL)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   312
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   313
        for confnode_method in self.Controler.ConfNodeMethods:
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   314
            if "method" in confnode_method and confnode_method.get("shown", True):
1055
da483f620668 Fixed ConfTreeNodeEditor layout
Laurent Bessard
parents: 920
diff changeset
   315
                button = GenBitmapTextButton(self.Editor,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   316
                                             bitmap=GetBitmap(confnode_method.get("bitmap", "Unknown")),
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   317
                                             label=confnode_method["name"],
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   318
                                             style=wx.NO_BORDER)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   319
                button.SetFont(normal_bt_font)
413946c04c87 refactoring
laurent
parents:
diff changeset
   320
                button.SetToolTipString(confnode_method["tooltip"])
767
36e823a90d94 Adding support for push buttons (EVT_LEFT_DOWN is bind instead of EVT_BUTTON)
laurent
parents: 762
diff changeset
   321
                if confnode_method.get("push", False):
36e823a90d94 Adding support for push buttons (EVT_LEFT_DOWN is bind instead of EVT_BUTTON)
laurent
parents: 762
diff changeset
   322
                    button.Bind(wx.EVT_LEFT_DOWN, self.GetButtonCallBackFunction(confnode_method["method"], True))
36e823a90d94 Adding support for push buttons (EVT_LEFT_DOWN is bind instead of EVT_BUTTON)
laurent
parents: 762
diff changeset
   323
                else:
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   324
                    button.Bind(wx.EVT_BUTTON, self.GetButtonCallBackFunction(confnode_method["method"]), button)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   325
                # a fancy underline on mouseover
1750
acf02488f37f clean-up: fix PEP8 E306 expected 1 blank line before a nested definition, found X
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1748
diff changeset
   326
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   327
                def setFontStyle(b, s):
413946c04c87 refactoring
laurent
parents:
diff changeset
   328
                    def fn(event):
413946c04c87 refactoring
laurent
parents:
diff changeset
   329
                        b.SetFont(s)
413946c04c87 refactoring
laurent
parents:
diff changeset
   330
                        b.Refresh()
413946c04c87 refactoring
laurent
parents:
diff changeset
   331
                        event.Skip()
413946c04c87 refactoring
laurent
parents:
diff changeset
   332
                    return fn
413946c04c87 refactoring
laurent
parents:
diff changeset
   333
                button.Bind(wx.EVT_ENTER_WINDOW, setFontStyle(button, mouseover_bt_font))
413946c04c87 refactoring
laurent
parents:
diff changeset
   334
                button.Bind(wx.EVT_LEAVE_WINDOW, setFontStyle(button, normal_bt_font))
1733
dea107dce0c4 clean-up: fix some PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1712
diff changeset
   335
                # hack to force size to mini
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   336
                if not confnode_method.get("enabled", True):
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   337
                    button.Disable()
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   338
                msizer.AddWindow(button, flag=wx.ALIGN_CENTER)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   339
        return msizer
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   340
2001
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   341
    def UriOptions(self, event):
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   342
        CTR = self.ParentWindow.CTR
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   343
        CTR_BeremizRoot = CTR.BeremizRoot
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   344
        CTR_AppFrame = CTR.AppFrame
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   345
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   346
        # Get connector uri
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   347
        uri = CTR_BeremizRoot.getURI_location().strip()
2334
d1470c052662 Added early implementation of IDManager.py. For now only used to select ID in URIEditor
Edouard Tisserant
parents: 2330
diff changeset
   348
        dialog = UriEditor(CTR_AppFrame, CTR, uri)
2001
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   349
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   350
        if dialog.ShowModal() == wx.ID_OK:
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   351
            CTR_BeremizRoot.setURI_location(dialog.GetURI())
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   352
            if CTR._View is not None:
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   353
                CTR._View.RefreshView()
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   354
            if CTR_AppFrame is not None:
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   355
                CTR_AppFrame.RefreshTitle()
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   356
                CTR_AppFrame.RefreshFileMenu()
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   357
                CTR_AppFrame.RefreshEditMenu()
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   358
                CTR_AppFrame.RefreshPageTitles()
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   359
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   360
        dialog.Destroy()
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   361
1744
69dfdb26f600 clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1743
diff changeset
   362
    def GenerateSizerElements(self, sizer, elements, path, clean=True):
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   363
        if clean:
413946c04c87 refactoring
laurent
parents:
diff changeset
   364
            sizer.Clear(True)
413946c04c87 refactoring
laurent
parents:
diff changeset
   365
        first = True
413946c04c87 refactoring
laurent
parents:
diff changeset
   366
        for element_infos in elements:
413946c04c87 refactoring
laurent
parents:
diff changeset
   367
            if path:
1734
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1733
diff changeset
   368
                element_path = "%s.%s" % (path, element_infos["name"])
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   369
            else:
413946c04c87 refactoring
laurent
parents:
diff changeset
   370
                element_path = element_infos["name"]
413946c04c87 refactoring
laurent
parents:
diff changeset
   371
            if element_infos["type"] == "element":
1282
f427352f9727 Added support for left panel add menu with multiple levels
laurent
parents: 1281
diff changeset
   372
                name = element_infos["name"]
f427352f9727 Added support for left panel add menu with multiple levels
laurent
parents: 1281
diff changeset
   373
                value = element_infos["value"]
f427352f9727 Added support for left panel add menu with multiple levels
laurent
parents: 1281
diff changeset
   374
                label = _(name)
f427352f9727 Added support for left panel add menu with multiple levels
laurent
parents: 1281
diff changeset
   375
                if value is not None:
f427352f9727 Added support for left panel add menu with multiple levels
laurent
parents: 1281
diff changeset
   376
                    label += " - %s" % _(value)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   377
                staticbox = wx.StaticBox(self.ParamsEditor,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   378
                                         label=_(label), size=wx.Size(10, 0))
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   379
                staticboxsizer = wx.StaticBoxSizer(staticbox, wx.VERTICAL)
1562
6e38f13d4b7b fix borders of pull-down choice list box in Config tab, in Project Properties
Sergey Surkov <surkovsv93@gmail.com>
parents: 1511
diff changeset
   380
                flags = (wx.GROW | wx.BOTTOM | wx.LEFT | wx.RIGHT)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   381
                if first:
1562
6e38f13d4b7b fix borders of pull-down choice list box in Config tab, in Project Properties
Sergey Surkov <surkovsv93@gmail.com>
parents: 1511
diff changeset
   382
                    flags |= wx.TOP
6e38f13d4b7b fix borders of pull-down choice list box in Config tab, in Project Properties
Sergey Surkov <surkovsv93@gmail.com>
parents: 1511
diff changeset
   383
                sizer.AddSizer(staticboxsizer, border=5, flag=flags)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   384
                self.GenerateSizerElements(staticboxsizer,
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   385
                                           element_infos["children"],
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   386
                                           element_path)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   387
            else:
413946c04c87 refactoring
laurent
parents:
diff changeset
   388
                boxsizer = wx.FlexGridSizer(cols=3, rows=1)
413946c04c87 refactoring
laurent
parents:
diff changeset
   389
                boxsizer.AddGrowableCol(1)
1562
6e38f13d4b7b fix borders of pull-down choice list box in Config tab, in Project Properties
Sergey Surkov <surkovsv93@gmail.com>
parents: 1511
diff changeset
   390
                flags = (wx.GROW | wx.BOTTOM | wx.LEFT | wx.RIGHT)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   391
                if first:
1562
6e38f13d4b7b fix borders of pull-down choice list box in Config tab, in Project Properties
Sergey Surkov <surkovsv93@gmail.com>
parents: 1511
diff changeset
   392
                    flags |= wx.TOP
6e38f13d4b7b fix borders of pull-down choice list box in Config tab, in Project Properties
Sergey Surkov <surkovsv93@gmail.com>
parents: 1511
diff changeset
   393
                sizer.AddSizer(boxsizer, border=5, flag=flags)
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   394
                staticbitmap = GenStaticBitmap(
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   395
                    ID=-1, bitmapname=element_infos["name"],
1734
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1733
diff changeset
   396
                    name="%s_bitmap" % element_infos["name"], parent=self.ParamsEditor,
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   397
                    pos=wx.Point(0, 0), size=wx.Size(24, 24), style=0)
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   398
                boxsizer.AddWindow(staticbitmap, border=5, flag=wx.RIGHT)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   399
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   400
                statictext = wx.StaticText(self.ParamsEditor,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   401
                                           label="%s:" % _(element_infos["name"]))
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   402
                boxsizer.AddWindow(statictext, border=5,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   403
                                   flag=wx.ALIGN_CENTER_VERTICAL | wx.RIGHT)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   404
2450
5024c19ca8f0 python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2437
diff changeset
   405
                if isinstance(element_infos["type"], list):
5024c19ca8f0 python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2437
diff changeset
   406
                    if isinstance(element_infos["value"], tuple):
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   407
                        browse_boxsizer = wx.BoxSizer(wx.HORIZONTAL)
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   408
                        boxsizer.AddSizer(browse_boxsizer)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   409
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   410
                        textctrl = wx.TextCtrl(self.ParamsEditor,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   411
                                               size=wx.Size(275, -1), style=wx.TE_READONLY)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   412
                        if element_infos["value"] is not None:
413946c04c87 refactoring
laurent
parents:
diff changeset
   413
                            textctrl.SetValue(element_infos["value"][0])
413946c04c87 refactoring
laurent
parents:
diff changeset
   414
                            value_infos = element_infos["value"][1]
413946c04c87 refactoring
laurent
parents:
diff changeset
   415
                        else:
413946c04c87 refactoring
laurent
parents:
diff changeset
   416
                            value_infos = None
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   417
                        browse_boxsizer.AddWindow(textctrl)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   418
1696
8043f32de7b8 make all dialog have non-fixed size
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1562
diff changeset
   419
                        button = wx.Button(self.ParamsEditor, label="...")
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   420
                        browse_boxsizer.AddWindow(button)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   421
                        button.Bind(wx.EVT_BUTTON,
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   422
                                    self.GetBrowseCallBackFunction(element_infos["name"], textctrl, element_infos["type"],
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   423
                                                                   value_infos, element_path),
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   424
                                    button)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   425
                    else:
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   426
                        combobox = wx.ComboBox(self.ParamsEditor,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   427
                                               size=wx.Size(300, -1), style=wx.CB_READONLY)
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   428
                        boxsizer.AddWindow(combobox)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   429
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   430
                        if element_infos["use"] == "optional":
413946c04c87 refactoring
laurent
parents:
diff changeset
   431
                            combobox.Append("")
2450
5024c19ca8f0 python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2437
diff changeset
   432
                        if len(element_infos["type"]) > 0 and isinstance(element_infos["type"][0], tuple):
1847
6198190bc121 explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1846
diff changeset
   433
                            for choice, _xsdclass in element_infos["type"]:
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   434
                                combobox.Append(choice)
413946c04c87 refactoring
laurent
parents:
diff changeset
   435
                            name = element_infos["name"]
413946c04c87 refactoring
laurent
parents:
diff changeset
   436
                            value = element_infos["value"]
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   437
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   438
                            staticbox = wx.StaticBox(self.ParamsEditor,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   439
                                                     label="%s - %s" % (_(name), _(value)),
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   440
                                                     size=wx.Size(10, 0))
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   441
                            staticboxsizer = wx.StaticBoxSizer(staticbox, wx.VERTICAL)
1562
6e38f13d4b7b fix borders of pull-down choice list box in Config tab, in Project Properties
Sergey Surkov <surkovsv93@gmail.com>
parents: 1511
diff changeset
   442
                            sizer.AddSizer(staticboxsizer, border=5, flag=wx.GROW | wx.BOTTOM | wx.LEFT | wx.RIGHT)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   443
                            self.GenerateSizerElements(staticboxsizer, element_infos["children"], element_path)
413946c04c87 refactoring
laurent
parents:
diff changeset
   444
                            callback = self.GetChoiceContentCallBackFunction(combobox, staticboxsizer, element_path)
413946c04c87 refactoring
laurent
parents:
diff changeset
   445
                        else:
413946c04c87 refactoring
laurent
parents:
diff changeset
   446
                            for choice in element_infos["type"]:
413946c04c87 refactoring
laurent
parents:
diff changeset
   447
                                combobox.Append(choice)
413946c04c87 refactoring
laurent
parents:
diff changeset
   448
                            callback = self.GetChoiceCallBackFunction(combobox, element_path)
413946c04c87 refactoring
laurent
parents:
diff changeset
   449
                        if element_infos["value"] is None:
413946c04c87 refactoring
laurent
parents:
diff changeset
   450
                            combobox.SetStringSelection("")
413946c04c87 refactoring
laurent
parents:
diff changeset
   451
                        else:
1712
c1987ef148e4 Backout changeset 92537edeb2052d53ba5cad8b6da8463dbc660bb1
Surkov Sergey <surkovsv93@gmail.com>
parents: 1707
diff changeset
   452
                            combobox.SetStringSelection(element_infos["value"])
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   453
                        combobox.Bind(wx.EVT_COMBOBOX, callback, combobox)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   454
2450
5024c19ca8f0 python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2437
diff changeset
   455
                elif isinstance(element_infos["type"], dict):
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   456
                    scmin = -(2**31)
413946c04c87 refactoring
laurent
parents:
diff changeset
   457
                    scmax = 2**31-1
413946c04c87 refactoring
laurent
parents:
diff changeset
   458
                    if "min" in element_infos["type"]:
413946c04c87 refactoring
laurent
parents:
diff changeset
   459
                        scmin = element_infos["type"]["min"]
413946c04c87 refactoring
laurent
parents:
diff changeset
   460
                    if "max" in element_infos["type"]:
413946c04c87 refactoring
laurent
parents:
diff changeset
   461
                        scmax = element_infos["type"]["max"]
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   462
                    spinctrl = wx.SpinCtrl(self.ParamsEditor,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   463
                                           size=wx.Size(300, -1),
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   464
                                           style=wx.SP_ARROW_KEYS | wx.ALIGN_RIGHT)
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   465
                    spinctrl.SetRange(scmin, scmax)
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   466
                    boxsizer.AddWindow(spinctrl)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   467
                    if element_infos["value"] is not None:
413946c04c87 refactoring
laurent
parents:
diff changeset
   468
                        spinctrl.SetValue(element_infos["value"])
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   469
                    spinctrl.Bind(wx.EVT_SPINCTRL,
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   470
                                  self.GetTextCtrlCallBackFunction(spinctrl, element_path),
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   471
                                  spinctrl)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   472
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   473
                else:
413946c04c87 refactoring
laurent
parents:
diff changeset
   474
                    if element_infos["type"] == "boolean":
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   475
                        checkbox = wx.CheckBox(self.ParamsEditor, size=wx.Size(17, 25))
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   476
                        boxsizer.AddWindow(checkbox)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   477
                        if element_infos["value"] is not None:
413946c04c87 refactoring
laurent
parents:
diff changeset
   478
                            checkbox.SetValue(element_infos["value"])
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   479
                        checkbox.Bind(wx.EVT_CHECKBOX,
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   480
                                      self.GetCheckBoxCallBackFunction(checkbox, element_path),
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   481
                                      checkbox)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   482
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   483
                    elif element_infos["type"] in ["unsignedLong", "long", "integer"]:
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   484
                        if element_infos["type"].startswith("unsigned"):
413946c04c87 refactoring
laurent
parents:
diff changeset
   485
                            scmin = 0
413946c04c87 refactoring
laurent
parents:
diff changeset
   486
                        else:
413946c04c87 refactoring
laurent
parents:
diff changeset
   487
                            scmin = -(2**31)
413946c04c87 refactoring
laurent
parents:
diff changeset
   488
                        scmax = 2**31-1
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   489
                        spinctrl = wx.SpinCtrl(self.ParamsEditor,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   490
                                               size=wx.Size(300, -1),
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   491
                                               style=wx.SP_ARROW_KEYS | wx.ALIGN_RIGHT)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   492
                        spinctrl.SetRange(scmin, scmax)
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   493
                        boxsizer.AddWindow(spinctrl)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   494
                        if element_infos["value"] is not None:
413946c04c87 refactoring
laurent
parents:
diff changeset
   495
                            spinctrl.SetValue(element_infos["value"])
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   496
                        spinctrl.Bind(wx.EVT_SPINCTRL,
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   497
                                      self.GetTextCtrlCallBackFunction(spinctrl, element_path),
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   498
                                      spinctrl)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   499
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   500
                    else:
413946c04c87 refactoring
laurent
parents:
diff changeset
   501
                        choices = self.ParentWindow.GetConfigEntry(element_path, [""])
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   502
                        textctrl = TextCtrlAutoComplete(name=element_infos["name"],
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   503
                                                        parent=self.ParamsEditor,
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   504
                                                        choices=choices,
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 775
diff changeset
   505
                                                        element_path=element_path,
846
26836e421e19 Fix ConfTreeNodeEditor parameters controls size on Windows
laurent
parents: 844
diff changeset
   506
                                                        size=wx.Size(300, -1))
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   507
2001
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   508
                        if element_infos["name"] == "URI_location":
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   509
                            uriSizer = wx.FlexGridSizer(cols=2, hgap=0, rows=1, vgap=0)
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   510
                            uriSizer.AddGrowableCol(0)
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   511
                            uriSizer.AddGrowableRow(0)
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   512
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   513
                            self.EditButton = wx.Button(self.ParamsEditor, label='...', size=wx.Size(30, -1))
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   514
                            self.Bind(wx.EVT_BUTTON, self.UriOptions, self.EditButton)
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   515
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   516
                            uriSizer.AddWindow(textctrl, flag=wx.GROW)
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   517
                            uriSizer.AddWindow(self.EditButton, flag=wx.GROW)
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   518
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   519
                            boxsizer.AddWindow(uriSizer)
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   520
                        else:
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   521
                            boxsizer.AddWindow(textctrl)
bcbd41efd846 #2476 Added uri location editor, getting connectors from list in Beremiz.
dporopat <denis.poropat@smarteh.si>
parents: 1991
diff changeset
   522
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   523
                        if element_infos["value"] is not None:
413946c04c87 refactoring
laurent
parents:
diff changeset
   524
                            textctrl.ChangeValue(str(element_infos["value"]))
1180
276a30c68eaa Fixed bugs with TextCtrlAutoComplete
Laurent Bessard
parents: 1179
diff changeset
   525
                        callback = self.GetTextCtrlCallBackFunction(textctrl, element_path)
276a30c68eaa Fixed bugs with TextCtrlAutoComplete
Laurent Bessard
parents: 1179
diff changeset
   526
                        textctrl.Bind(wx.EVT_TEXT_ENTER, callback)
1991
34a9287b6c7d #2476 Fix for saving text in URI edit text box. No need to click out of URI edit text box to save edited text.
dporopat <denis.poropat@smarteh.si>
parents: 1853
diff changeset
   527
                        textctrl.Bind(wx.EVT_TEXT, callback)
1180
276a30c68eaa Fixed bugs with TextCtrlAutoComplete
Laurent Bessard
parents: 1179
diff changeset
   528
                        textctrl.Bind(wx.EVT_KILL_FOCUS, callback)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   529
            first = False
1562
6e38f13d4b7b fix borders of pull-down choice list box in Config tab, in Project Properties
Sergey Surkov <surkovsv93@gmail.com>
parents: 1511
diff changeset
   530
        sizer.Layout()
6e38f13d4b7b fix borders of pull-down choice list box in Config tab, in Project Properties
Sergey Surkov <surkovsv93@gmail.com>
parents: 1511
diff changeset
   531
        self.RefreshScrollbars()
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   532
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   533
    def GetItemChannelChangedFunction(self, dir):
413946c04c87 refactoring
laurent
parents:
diff changeset
   534
        def OnConfNodeTreeItemChannelChanged(event):
413946c04c87 refactoring
laurent
parents:
diff changeset
   535
            confnode_IECChannel = self.Controler.BaseParams.getIEC_Channel()
1846
14b40afccd69 remove unused variables found by pylint
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1768
diff changeset
   536
            self.SetConfNodeParamsAttribute("BaseParams.IEC_Channel", confnode_IECChannel + dir)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   537
            wx.CallAfter(self.RefreshIECChannelControlsState)
413946c04c87 refactoring
laurent
parents:
diff changeset
   538
            wx.CallAfter(self.ParentWindow._Refresh, TITLE, FILEMENU, PROJECTTREE)
413946c04c87 refactoring
laurent
parents:
diff changeset
   539
            event.Skip()
413946c04c87 refactoring
laurent
parents:
diff changeset
   540
        return OnConfNodeTreeItemChannelChanged
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   541
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   542
    def SetConfNodeParamsAttribute(self, *args, **kwargs):
413946c04c87 refactoring
laurent
parents:
diff changeset
   543
        res, StructChanged = self.Controler.SetParamsAttribute(*args, **kwargs)
1111
ee1a8c961f11 Fixed bug when changing IEC_Channel of node without params
Laurent Bessard
parents: 1105
diff changeset
   544
        if StructChanged and self.ParamsEditor is not None:
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   545
            wx.CallAfter(self.RefreshConfNodeParamsSizer)
413946c04c87 refactoring
laurent
parents:
diff changeset
   546
        wx.CallAfter(self.ParentWindow._Refresh, TITLE, FILEMENU)
413946c04c87 refactoring
laurent
parents:
diff changeset
   547
        return res
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   548
767
36e823a90d94 Adding support for push buttons (EVT_LEFT_DOWN is bind instead of EVT_BUTTON)
laurent
parents: 762
diff changeset
   549
    def GetButtonCallBackFunction(self, method, push=False):
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   550
        """ Generate the callbackfunc for a given confnode method"""
413946c04c87 refactoring
laurent
parents:
diff changeset
   551
        def OnButtonClick(event):
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   552
            # Disable button to prevent re-entrant call
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   553
            event.GetEventObject().Disable()
413946c04c87 refactoring
laurent
parents:
diff changeset
   554
            # Call
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   555
            getattr(self.Controler, method)()
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   556
            # Re-enable button
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   557
            event.GetEventObject().Enable()
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   558
767
36e823a90d94 Adding support for push buttons (EVT_LEFT_DOWN is bind instead of EVT_BUTTON)
laurent
parents: 762
diff changeset
   559
            if not push:
36e823a90d94 Adding support for push buttons (EVT_LEFT_DOWN is bind instead of EVT_BUTTON)
laurent
parents: 762
diff changeset
   560
                event.Skip()
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   561
        return OnButtonClick
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   562
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   563
    def GetChoiceCallBackFunction(self, choicectrl, path):
413946c04c87 refactoring
laurent
parents:
diff changeset
   564
        def OnChoiceChanged(event):
413946c04c87 refactoring
laurent
parents:
diff changeset
   565
            res = self.SetConfNodeParamsAttribute(path, choicectrl.GetStringSelection())
1315
ff14a66bbd12 Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents: 1282
diff changeset
   566
            if res is None:
ff14a66bbd12 Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents: 1282
diff changeset
   567
                res = ""
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   568
            choicectrl.SetStringSelection(res)
413946c04c87 refactoring
laurent
parents:
diff changeset
   569
            event.Skip()
413946c04c87 refactoring
laurent
parents:
diff changeset
   570
        return OnChoiceChanged
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   571
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   572
    def GetChoiceContentCallBackFunction(self, choicectrl, staticboxsizer, path):
413946c04c87 refactoring
laurent
parents:
diff changeset
   573
        def OnChoiceContentChanged(event):
1846
14b40afccd69 remove unused variables found by pylint
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1768
diff changeset
   574
            self.SetConfNodeParamsAttribute(path, choicectrl.GetStringSelection())
746
2e09777a40d3 Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents: 744
diff changeset
   575
            wx.CallAfter(self.RefreshConfNodeParamsSizer)
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   576
            event.Skip()
413946c04c87 refactoring
laurent
parents:
diff changeset
   577
        return OnChoiceContentChanged
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   578
746
2e09777a40d3 Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents: 744
diff changeset
   579
    def GetTextCtrlCallBackFunction(self, textctrl, path, refresh=False):
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   580
        def OnTextCtrlChanged(event):
413946c04c87 refactoring
laurent
parents:
diff changeset
   581
            res = self.SetConfNodeParamsAttribute(path, textctrl.GetValue())
413946c04c87 refactoring
laurent
parents:
diff changeset
   582
            if res != textctrl.GetValue():
844
ec9e6ef49878 Fixing bug when spinctrl new value is changed by ConfTreeNode
laurent
parents: 840
diff changeset
   583
                if isinstance(textctrl, wx.SpinCtrl):
ec9e6ef49878 Fixing bug when spinctrl new value is changed by ConfTreeNode
laurent
parents: 840
diff changeset
   584
                    textctrl.SetValue(res)
1179
3e7bd88fcff7 Fixed inconsistency in value display when setting integer value for float parameter
Laurent Bessard
parents: 1162
diff changeset
   585
                elif res is not None:
3e7bd88fcff7 Fixed inconsistency in value display when setting integer value for float parameter
Laurent Bessard
parents: 1162
diff changeset
   586
                    textctrl.ChangeValue(str(res))
746
2e09777a40d3 Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents: 744
diff changeset
   587
            if refresh:
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   588
                wx.CallAfter(self.ParentWindow._Refresh, TITLE, FILEMENU, PROJECTTREE, PAGETITLES)
413946c04c87 refactoring
laurent
parents:
diff changeset
   589
                wx.CallAfter(self.ParentWindow.SelectProjectTreeItem, self.GetTagName())
413946c04c87 refactoring
laurent
parents:
diff changeset
   590
            event.Skip()
413946c04c87 refactoring
laurent
parents:
diff changeset
   591
        return OnTextCtrlChanged
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   592
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   593
    def GetCheckBoxCallBackFunction(self, chkbx, path):
413946c04c87 refactoring
laurent
parents:
diff changeset
   594
        def OnCheckBoxChanged(event):
413946c04c87 refactoring
laurent
parents:
diff changeset
   595
            res = self.SetConfNodeParamsAttribute(path, chkbx.IsChecked())
413946c04c87 refactoring
laurent
parents:
diff changeset
   596
            chkbx.SetValue(res)
413946c04c87 refactoring
laurent
parents:
diff changeset
   597
            event.Skip()
413946c04c87 refactoring
laurent
parents:
diff changeset
   598
        return OnCheckBoxChanged
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   599
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   600
    def GetBrowseCallBackFunction(self, name, textctrl, library, value_infos, path):
413946c04c87 refactoring
laurent
parents:
diff changeset
   601
        infos = [value_infos]
1750
acf02488f37f clean-up: fix PEP8 E306 expected 1 blank line before a nested definition, found X
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1748
diff changeset
   602
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   603
        def OnBrowseButton(event):
413946c04c87 refactoring
laurent
parents:
diff changeset
   604
            dialog = BrowseValuesLibraryDialog(self, name, library, infos[0])
413946c04c87 refactoring
laurent
parents:
diff changeset
   605
            if dialog.ShowModal() == wx.ID_OK:
413946c04c87 refactoring
laurent
parents:
diff changeset
   606
                value, value_infos = self.SetConfNodeParamsAttribute(path, dialog.GetValueInfos())
413946c04c87 refactoring
laurent
parents:
diff changeset
   607
                textctrl.ChangeValue(value)
413946c04c87 refactoring
laurent
parents:
diff changeset
   608
                infos[0] = value_infos
413946c04c87 refactoring
laurent
parents:
diff changeset
   609
            dialog.Destroy()
413946c04c87 refactoring
laurent
parents:
diff changeset
   610
            event.Skip()
413946c04c87 refactoring
laurent
parents:
diff changeset
   611
        return OnBrowseButton
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   612
840
980863738cf6 Fix scroll bug in ConfNode params panel when changing tab selection on Windows
Laurent Bessard
parents: 814
diff changeset
   613
    def RefreshScrollbars(self):
746
2e09777a40d3 Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents: 744
diff changeset
   614
        self.ParamsEditor.GetBestSize()
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   615
        xstart, ystart = self.ParamsEditor.GetViewStart()
413946c04c87 refactoring
laurent
parents:
diff changeset
   616
        window_size = self.ParamsEditor.GetClientSize()
413946c04c87 refactoring
laurent
parents:
diff changeset
   617
        maxx, maxy = self.ParamsEditorSizer.GetMinSize()
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2182
diff changeset
   618
        posx = max(0, min(xstart, (maxx - window_size[0]) // SCROLLBAR_UNIT))
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2182
diff changeset
   619
        posy = max(0, min(ystart, (maxy - window_size[1]) // SCROLLBAR_UNIT))
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   620
        self.ParamsEditor.Scroll(posx, posy)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   621
        self.ParamsEditor.SetScrollbars(SCROLLBAR_UNIT, SCROLLBAR_UNIT,
2437
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2182
diff changeset
   622
                                        maxx // SCROLLBAR_UNIT,
105c20fdeb19 python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 2182
diff changeset
   623
                                        maxy // SCROLLBAR_UNIT,
1768
691083b5682a clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1758
diff changeset
   624
                                        posx, posy)
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   625
1180
276a30c68eaa Fixed bugs with TextCtrlAutoComplete
Laurent Bessard
parents: 1179
diff changeset
   626
    def OnParamsEditorResize(self, event):
840
980863738cf6 Fix scroll bug in ConfNode params panel when changing tab selection on Windows
Laurent Bessard
parents: 814
diff changeset
   627
        self.RefreshScrollbars()
738
413946c04c87 refactoring
laurent
parents:
diff changeset
   628
        event.Skip()
1451
94e620cbd9de Added Ronan Bignaux (genesis) patch to use wxversion. Fixed side effects with sys.path. Other cosmetic fixes about path included.
Edouard Tisserant
parents: 1315
diff changeset
   629
1180
276a30c68eaa Fixed bugs with TextCtrlAutoComplete
Laurent Bessard
parents: 1179
diff changeset
   630
    def OnParamsEditorScroll(self, event):
276a30c68eaa Fixed bugs with TextCtrlAutoComplete
Laurent Bessard
parents: 1179
diff changeset
   631
        control = self.ParamsEditor.FindFocus()
276a30c68eaa Fixed bugs with TextCtrlAutoComplete
Laurent Bessard
parents: 1179
diff changeset
   632
        if isinstance(control, TextCtrlAutoComplete):
276a30c68eaa Fixed bugs with TextCtrlAutoComplete
Laurent Bessard
parents: 1179
diff changeset
   633
            control.DismissListBox()
276a30c68eaa Fixed bugs with TextCtrlAutoComplete
Laurent Bessard
parents: 1179
diff changeset
   634
            self.Refresh()
276a30c68eaa Fixed bugs with TextCtrlAutoComplete
Laurent Bessard
parents: 1179
diff changeset
   635
        event.Skip()