edouard@3307: #.!/usr/bin/env python
Laurent@814: # -*- coding: utf-8 -*-
Laurent@814: 
andrej@1571: # This file is part of Beremiz, a Integrated Development Environment for
andrej@1571: # programming IEC 61131-3 automates supporting plcopen standard and CanFestival.
Laurent@814: #
andrej@1571: # Copyright (C) 2012: Edouard TISSERANT and Laurent BESSARD
Laurent@814: #
andrej@1571: # See COPYING file for copyrights details.
Laurent@814: #
andrej@1571: # This program is free software; you can redistribute it and/or
andrej@1571: # modify it under the terms of the GNU General Public License
andrej@1571: # as published by the Free Software Foundation; either version 2
andrej@1571: # of the License, or (at your option) any later version.
Laurent@814: #
andrej@1571: # This program is distributed in the hope that it will be useful,
andrej@1571: # but WITHOUT ANY WARRANTY; without even the implied warranty of
andrej@1571: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
andrej@1571: # GNU General Public License for more details.
Laurent@814: #
andrej@1571: # You should have received a copy of the GNU General Public License
andrej@1571: # along with this program; if not, write to the Free Software
andrej@1571: # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
Laurent@814: 
andrej@1881: 
kinsamanka@3750: 
kinsamanka@3750: 
Laurent@1343: from collections import namedtuple
Laurent@1343: 
Laurent@814: import wx
Edouard@1281: import wx.lib.agw.customtreectrl as CT
Laurent@814: import wx.lib.buttons
Laurent@814: 
Edouard@1948: from plcopen.types_enums import *
andrej@1783: 
andrej@1783: from util.BitmapLibrary import GetBitmap
andrej@1783: 
andrej@1783: 
Laurent@1343: # Customize CustomTreeItem for adding icon on item right
Laurent@1343: CT.GenericTreeItem._rightimages = []
Laurent@1343: 
andrej@1736: 
Laurent@1343: def SetRightImages(self, images):
Laurent@1343:     self._rightimages = images
andrej@1749: 
andrej@1749: 
Laurent@1343: CT.GenericTreeItem.SetRightImages = SetRightImages
Laurent@1343: 
andrej@1736: 
Laurent@1343: def GetRightImages(self):
Laurent@1343:     return self._rightimages
andrej@1749: 
andrej@1749: 
Laurent@1343: CT.GenericTreeItem.GetRightImages = GetRightImages
Laurent@1343: 
Laurent@1343: 
Laurent@1343: class CustomTreeCtrlWithRightImage(CT.CustomTreeCtrl):
Laurent@1343: 
Laurent@1343:     def SetRightImageList(self, imageList):
Laurent@1343:         self._imageListRight = imageList
Laurent@1343: 
Laurent@1343:     def GetLineHeight(self, item):
Laurent@1343:         height = CT.CustomTreeCtrl.GetLineHeight(self, item)
Laurent@1343:         rightimages = item.GetRightImages()
Laurent@1343:         if len(rightimages) > 0:
andrej@1847:             _r_image_w, r_image_h = self._imageListRight.GetSize(rightimages[0])
Laurent@1343:             return max(height, r_image_h + 8)
Laurent@1343:         return height
Laurent@1343: 
Laurent@1343:     def GetItemRightImagesBBox(self, item):
Laurent@1343:         rightimages = item.GetRightImages()
Laurent@1343:         if len(rightimages) > 0:
andrej@1847:             w, _h = self.GetClientSize()
Laurent@1343:             total_h = self.GetLineHeight(item)
Laurent@1343:             r_image_w, r_image_h = self._imageListRight.GetSize(rightimages[0])
andrej@1730: 
Laurent@1343:             bbox_width = (r_image_w + 4) * len(rightimages) + 4
Laurent@1343:             bbox_height = r_image_h + 8
Laurent@1343:             bbox_x = w - bbox_width
andrej@2437:             bbox_y = item.GetY() + ((total_h > r_image_h) and [(total_h-r_image_h)//2] or [0])[0]
andrej@1730: 
Laurent@1343:             return wx.Rect(bbox_x, bbox_y, bbox_width, bbox_height)
andrej@1730: 
Laurent@1343:         return None
Laurent@1343: 
Laurent@1343:     def IsOverItemRightImage(self, item, point):
Laurent@1343:         rightimages = item.GetRightImages()
Laurent@1343:         if len(rightimages) > 0:
Laurent@1343:             point = self.CalcUnscrolledPosition(point)
Laurent@1343:             r_image_w, r_image_h = self._imageListRight.GetSize(rightimages[0])
Laurent@1343:             images_bbx = self.GetItemRightImagesBBox(item)
andrej@1730: 
Laurent@1343:             rect = wx.Rect(images_bbx.x + 4, images_bbx.y + 4,
Laurent@1343:                            r_image_w, r_image_h)
Laurent@1343:             for r_image in rightimages:
edouard@3307:                 if rect.Contains(point):
Laurent@1343:                     return r_image
Laurent@1343:                 rect.x += r_image_w + 4
andrej@1730: 
Laurent@1343:             return None
andrej@1730: 
Laurent@1343:     def PaintItem(self, item, dc, level, align):
Laurent@1343:         CT.CustomTreeCtrl.PaintItem(self, item, dc, level, align)
andrej@1730: 
Laurent@1343:         rightimages = item.GetRightImages()
Laurent@1343:         if len(rightimages) > 0:
Laurent@1343:             images_bbx = self.GetItemRightImagesBBox(item)
andrej@1847:             r_image_w, _r_image_h = self._imageListRight.GetSize(rightimages[0])
andrej@1730: 
andrej@1636:             dc.SetBrush(wx.TRANSPARENT_BRUSH)
Laurent@1343:             dc.SetPen(wx.TRANSPARENT_PEN)
andrej@1730: 
andrej@1730:             dc.DrawRectangle(images_bbx.x, images_bbx.y,
Laurent@1343:                              images_bbx.width, images_bbx.height)
Laurent@1343:             x_pos = images_bbx.x + 4
Laurent@1343:             for r_image in rightimages:
Laurent@1343:                 self._imageListRight.Draw(
Laurent@1343:                     r_image, dc, x_pos, images_bbx.y + 4,
Laurent@1343:                     wx.IMAGELIST_DRAW_TRANSPARENT)
Laurent@1343:                 x_pos += r_image_w + 4
andrej@1730: 
andrej@1749: 
Laurent@1343: _ButtonCallbacks = namedtuple("ButtonCallbacks", ["leftdown", "dclick"])
Laurent@1343: 
andrej@1736: 
Laurent@814: class PouInstanceVariablesPanel(wx.Panel):
Edouard@1362: 
Laurent@814:     def __init__(self, parent, window, controller, debug):
andrej@1730:         wx.Panel.__init__(self, name='PouInstanceTreePanel',
andrej@1768:                           parent=parent, pos=wx.Point(0, 0),
andrej@1768:                           size=wx.Size(0, 0), style=wx.TAB_TRAVERSAL)
andrej@1768: 
andrej@1768:         self.ParentButton = wx.lib.buttons.GenBitmapButton(
andrej@1768:             self, bitmap=GetBitmap("top"), size=wx.Size(28, 28), style=wx.NO_BORDER)
edouard@3303:         self.ParentButton.SetToolTip(_("Parent instance"))
andrej@1730:         self.Bind(wx.EVT_BUTTON, self.OnParentButtonClick,
andrej@1768:                   self.ParentButton)
andrej@1730: 
laurent@821:         self.InstanceChoice = wx.ComboBox(self, size=wx.Size(0, 0), style=wx.CB_READONLY)
Laurent@814:         self.Bind(wx.EVT_COMBOBOX, self.OnInstanceChoiceChanged,
andrej@1768:                   self.InstanceChoice)
andrej@1768: 
andrej@1768:         self.DebugButton = wx.lib.buttons.GenBitmapButton(
andrej@1768:             self, bitmap=GetBitmap("debug_instance"), size=wx.Size(28, 28), style=wx.NO_BORDER)
edouard@3303:         self.DebugButton.SetToolTip(_("Debug instance"))
andrej@1730:         self.Bind(wx.EVT_BUTTON, self.OnDebugButtonClick,
andrej@1768:                   self.DebugButton)
andrej@1768: 
andrej@1768:         self.VariablesList = CustomTreeCtrlWithRightImage(
andrej@1768:             self,
andrej@1768:             style=wx.SUNKEN_BORDER,
andrej@1768:             agwStyle=(CT.TR_NO_BUTTONS |
andrej@1768:                       CT.TR_SINGLE |
andrej@1768:                       CT.TR_HAS_VARIABLE_ROW_HEIGHT |
andrej@1768:                       CT.TR_HIDE_ROOT |
andrej@1768:                       CT.TR_NO_LINES |
andrej@1768:                       getattr(CT, "TR_ALIGN_WINDOWS_RIGHT", CT.TR_ALIGN_WINDOWS)))
Laurent@814:         self.VariablesList.SetIndent(0)
Laurent@814:         self.VariablesList.SetSpacing(5)
andrej@1740:         self.VariablesList.DoSelectItem = lambda *x, **y: True
Laurent@814:         self.VariablesList.Bind(CT.EVT_TREE_ITEM_ACTIVATED,
andrej@1768:                                 self.OnVariablesListItemActivated)
Laurent@814:         self.VariablesList.Bind(wx.EVT_LEFT_DOWN, self.OnVariablesListLeftDown)
Laurent@1031:         self.VariablesList.Bind(wx.EVT_KEY_DOWN, self.OnVariablesListKeyDown)
andrej@1730: 
Laurent@1343:         self.TreeRightImageList = wx.ImageList(24, 24)
Laurent@1343:         self.EditImage = self.TreeRightImageList.Add(GetBitmap("edit"))
Laurent@1343:         self.DebugInstanceImage = self.TreeRightImageList.Add(GetBitmap("debug_instance"))
Laurent@1343:         self.VariablesList.SetRightImageList(self.TreeRightImageList)
andrej@1730: 
Laurent@1343:         self.ButtonCallBacks = {
Laurent@1343:             self.EditImage: _ButtonCallbacks(
Laurent@1343:                 self.EditButtonCallback, None),
Laurent@1343:             self.DebugInstanceImage: _ButtonCallbacks(
Laurent@1343:                 self.DebugButtonCallback, self.DebugButtonDClickCallback)}
andrej@1730: 
Edouard@3649:         self.FilterCtrl = wx.SearchCtrl(self)
Edouard@3649:         self.FilterCtrl.ShowCancelButton(True)
Edouard@3649:         self.FilterCtrl.Bind(wx.EVT_TEXT, self.OnFilterUpdate)
Edouard@3649:         self.FilterCtrl.Bind(wx.EVT_SEARCHCTRL_CANCEL_BTN, self.OnFilterCancel)
Edouard@3649: 
Edouard@3649:         searchMenu = wx.Menu()
Edouard@3649:         item = searchMenu.AppendCheckItem(-1, _("Match Case"))
Edouard@3649:         self.Bind(wx.EVT_MENU, self.OnSearchMenu, item)
Edouard@3649:         item = searchMenu.AppendCheckItem(-1, _("Whole Words"))
Edouard@3649:         self.Bind(wx.EVT_MENU, self.OnSearchMenu, item)
Edouard@3649:         self.FilterCtrl.SetMenu(searchMenu)
Edouard@3649: 
Edouard@3649: 
Laurent@814:         buttons_sizer = wx.FlexGridSizer(cols=3, hgap=0, rows=1, vgap=0)
edouard@3303:         buttons_sizer.Add(self.ParentButton)
edouard@3303:         buttons_sizer.Add(self.InstanceChoice, flag=wx.GROW)
edouard@3303:         buttons_sizer.Add(self.DebugButton)
Laurent@814:         buttons_sizer.AddGrowableCol(1)
Laurent@814:         buttons_sizer.AddGrowableRow(0)
andrej@1730: 
Edouard@3649:         main_sizer = wx.FlexGridSizer(cols=1, hgap=0, rows=3, vgap=0)
edouard@3303:         main_sizer.Add(buttons_sizer, flag=wx.GROW)
edouard@3303:         main_sizer.Add(self.VariablesList, flag=wx.GROW)
edouard@3657:         main_sizer.Add(self.FilterCtrl, flag=wx.GROW)
Laurent@814:         main_sizer.AddGrowableCol(0)
Laurent@814:         main_sizer.AddGrowableRow(1)
andrej@1730: 
Laurent@814:         self.SetSizer(main_sizer)
andrej@1730: 
Laurent@814:         self.ParentWindow = window
Laurent@814:         self.Controller = controller
Laurent@814:         self.Debug = debug
Laurent@814:         if not self.Debug:
Laurent@814:             self.DebugButton.Hide()
andrej@1730: 
Laurent@814:         self.PouTagName = None
Laurent@814:         self.PouInfos = None
Laurent@814:         self.PouInstance = None
andrej@1730: 
Edouard@3649:         self.Filter = None
Edouard@3649:         self.FilterCaseSensitive = False
Edouard@3649:         self.FilterWholeWord = False
Edouard@3649: 
Laurent@814:     def SetTreeImageList(self, tree_image_list):
Laurent@814:         self.VariablesList.SetImageList(tree_image_list)
andrej@1730: 
Laurent@814:     def SetController(self, controller):
Laurent@814:         self.Controller = controller
andrej@1730: 
Laurent@814:         self.RefreshView()
andrej@1730: 
Laurent@814:     def SetPouType(self, tagname, pou_instance=None):
Laurent@1222:         if self.Controller is not None:
Laurent@1233:             if tagname == "Project":
Laurent@915:                 config_name = self.Controller.GetProjectMainConfigurationName()
Laurent@915:                 if config_name is not None:
Edouard@1948:                     tagname = ComputeConfigurationName(config_name)
Laurent@915:             if pou_instance is not None:
Laurent@915:                 self.PouInstance = pou_instance
andrej@1730: 
Laurent@1233:             if self.PouTagName != tagname:
Laurent@1233:                 self.PouTagName = tagname
Laurent@1233:                 self.RefreshView()
Laurent@1233:             else:
Laurent@1233:                 self.RefreshInstanceChoice()
Laurent@1233:         else:
Laurent@1233:             self.RefreshView()
andrej@1730: 
Laurent@814:     def ResetView(self):
Laurent@814:         self.Controller = None
andrej@1730: 
Laurent@814:         self.PouTagName = None
Laurent@814:         self.PouInfos = None
Laurent@814:         self.PouInstance = None
andrej@1730: 
Laurent@814:         self.RefreshView()
andrej@1730: 
Edouard@3649:     def OnSearchMenu(self, event):
Edouard@3649:         searchMenu = self.FilterCtrl.GetMenu().GetMenuItems()
Edouard@3649:         self.FilterCaseSensitive = searchMenu[0].IsChecked()
Edouard@3649:         self.FilterWholeWord = searchMenu[1].IsChecked()
Edouard@3649:         self.RefreshView()
Edouard@3649: 
Edouard@3649:     def OnFilterUpdate(self, event):
Edouard@3649:         self.Filter = self.FilterCtrl.GetValue()
Edouard@3649:         self.RefreshView()
Edouard@3649:         event.Skip()
Edouard@3649: 
Edouard@3649:     def OnFilterCancel(self, event):
Edouard@3649:         self.FilterCtrl.SetValue('')
Edouard@3649:         event.Skip()
Edouard@3649: 
Laurent@814:     def RefreshView(self):
Laurent@1222:         self.Freeze()
Laurent@814:         self.VariablesList.DeleteAllItems()
andrej@1730: 
Laurent@814:         if self.Controller is not None and self.PouTagName is not None:
surkovsv93@1669:             if self.PouTagName.split('::')[0] in ['A', 'T']:
surkovsv93@1669:                 self.PouInfos = self.Controller.GetPouVariables('P::%s' % self.PouTagName.split('::')[1], self.Debug)
surkovsv93@1669:             else:
surkovsv93@1669:                 self.PouInfos = self.Controller.GetPouVariables(self.PouTagName, self.Debug)
surkovsv93@1669:             if None in self.Controller.GetEditedElementType(self.PouTagName, self.Debug) and self.PouInfos is not None:
surkovsv93@1669:                 self.PouInfos.debug = False
Laurent@814:         else:
Laurent@814:             self.PouInfos = None
Laurent@814:         if self.PouInfos is not None:
surkovsv93@1669:             root = self.VariablesList.AddRoot("", data=self.PouInfos)
Laurent@1348:             for var_infos in self.PouInfos.variables:
Edouard@3649:                 if self.Filter:
Edouard@3649:                     pattern = self.Filter
Edouard@3649:                     varname = var_infos.name
Edouard@3649:                     if not self.FilterCaseSensitive:
Edouard@3649:                         pattern = pattern.upper()
Edouard@3649:                         varname = varname.upper()
Edouard@3649:                     if ((pattern != varname) if self.FilterWholeWord else
Edouard@3649:                         (pattern not in varname)):
Edouard@3649:                         continue
Laurent@1348:                 if var_infos.type is not None:
Laurent@1348:                     text = "%s (%s)" % (var_infos.name, var_infos.type)
Laurent@814:                 else:
Laurent@1348:                     text = var_infos.name
andrej@1730: 
Laurent@1343:                 right_images = []
Laurent@1364:                 if var_infos.edit:
Laurent@1343:                     right_images.append(self.EditImage)
andrej@1730: 
Laurent@1348:                 if var_infos.debug and self.Debug:
Laurent@1343:                     right_images.append(self.DebugInstanceImage)
andrej@1730: 
Laurent@1343:                 item = self.VariablesList.AppendItem(root, text)
Laurent@1343:                 item.SetRightImages(right_images)
Laurent@1348:                 self.VariablesList.SetItemImage(item, self.ParentWindow.GetTreeImage(var_infos.var_class))
Laurent@814:                 self.VariablesList.SetPyData(item, var_infos)
andrej@1730: 
Laurent@1238:         self.RefreshInstanceChoice()
Laurent@1233:         self.RefreshButtons()
andrej@1730: 
Laurent@1233:         self.Thaw()
andrej@1730: 
Laurent@1233:     def RefreshInstanceChoice(self):
Laurent@1238:         self.InstanceChoice.Clear()
Laurent@1238:         self.InstanceChoice.SetValue("")
Laurent@1233:         if self.Controller is not None and self.PouInfos is not None:
Laurent@814:             instances = self.Controller.SearchPouInstances(self.PouTagName, self.Debug)
Laurent@814:             for instance in instances:
Laurent@814:                 self.InstanceChoice.Append(instance)
Laurent@814:             if len(instances) == 1:
Laurent@814:                 self.PouInstance = instances[0]
Laurent@1348:             if self.PouInfos.var_class in [ITEM_CONFIGURATION, ITEM_RESOURCE]:
Laurent@814:                 self.PouInstance = None
Laurent@814:                 self.InstanceChoice.SetSelection(0)
Laurent@814:             elif self.PouInstance in instances:
Laurent@814:                 self.InstanceChoice.SetStringSelection(self.PouInstance)
Laurent@814:             else:
Laurent@814:                 self.PouInstance = None
Laurent@814:                 self.InstanceChoice.SetValue(_("Select an instance"))
andrej@1730: 
Laurent@814:     def RefreshButtons(self):
Laurent@814:         enabled = self.InstanceChoice.GetSelection() != -1
Laurent@1348:         self.ParentButton.Enable(enabled and self.PouInfos.var_class != ITEM_CONFIGURATION)
Laurent@1348:         self.DebugButton.Enable(enabled and self.PouInfos.debug and self.Debug)
andrej@1730: 
Laurent@814:         root = self.VariablesList.GetRootItem()
Laurent@814:         if root is not None and root.IsOk():
Laurent@814:             item, item_cookie = self.VariablesList.GetFirstChild(root)
Laurent@814:             while item is not None and item.IsOk():
Laurent@814:                 panel = self.VariablesList.GetItemWindow(item)
Laurent@814:                 if panel is not None:
Laurent@814:                     for child in panel.GetChildren():
Laurent@814:                         if child.GetName() != "edit":
Laurent@814:                             child.Enable(enabled)
Laurent@814:                 item, item_cookie = self.VariablesList.GetNextChild(root, item_cookie)
andrej@1730: 
Laurent@1343:     def EditButtonCallback(self, infos):
Laurent@1348:         var_class = infos.var_class
Laurent@1343:         if var_class == ITEM_RESOURCE:
Edouard@1948:             tagname = ComputeConfigurationResourceName(
andrej@1730:                 self.InstanceChoice.GetStringSelection(),
Laurent@1348:                 infos.name)
Laurent@1343:         elif var_class == ITEM_TRANSITION:
Edouard@1948:             tagname = ComputePouTransitionName(
Laurent@1343:                 self.PouTagName.split("::")[1],
Laurent@1348:                 infos.name)
Laurent@1343:         elif var_class == ITEM_ACTION:
Edouard@1948:             tagname = ComputePouActionName(
Laurent@1343:                 self.PouTagName.split("::")[1],
Laurent@1348:                 infos.name)
Laurent@1343:         else:
Laurent@1343:             var_class = ITEM_POU
Edouard@1948:             tagname = ComputePouName(infos.type)
Laurent@1343:         self.ParentWindow.EditProjectElement(var_class, tagname)
andrej@1730: 
Laurent@1343:     def DebugButtonCallback(self, infos):
Laurent@1343:         if self.InstanceChoice.GetSelection() != -1:
Laurent@1348:             var_class = infos.var_class
surkovsv93@1669:             instance_path = self.InstanceChoice.GetStringSelection()
surkovsv93@1669:             if self.PouTagName.split("::")[0] in ["A", "T"]:
surkovsv93@1669:                 pos = instance_path.rfind('.')
surkovsv93@1669:                 instance_path = instance_path[0:pos]
surkovsv93@1669:             var_path = "%s.%s" % (instance_path, infos.name)
Laurent@1343:             if var_class in ITEMS_VARIABLE:
Laurent@1343:                 self.ParentWindow.AddDebugVariable(var_path, force=True)
laurent@826:             elif var_class == ITEM_TRANSITION:
Laurent@1343:                 self.ParentWindow.OpenDebugViewer(
Laurent@1343:                     var_class,
Laurent@1343:                     var_path,
Edouard@1948:                     ComputePouTransitionName(
Laurent@1343:                         self.PouTagName.split("::")[1],
Laurent@1348:                         infos.name))
laurent@826:             elif var_class == ITEM_ACTION:
Laurent@1343:                 self.ParentWindow.OpenDebugViewer(
Laurent@1343:                     var_class,
Laurent@1343:                     var_path,
Edouard@1948:                     ComputePouActionName(
Laurent@1343:                         self.PouTagName.split("::")[1],
Laurent@1348:                         infos.name))
Laurent@814:             else:
Laurent@1343:                 self.ParentWindow.OpenDebugViewer(
Laurent@1343:                     var_class,
Laurent@1343:                     var_path,
Edouard@1948:                     ComputePouName(infos.type))
andrej@1730: 
Laurent@1343:     def DebugButtonDClickCallback(self, infos):
Laurent@1343:         if self.InstanceChoice.GetSelection() != -1:
Laurent@1348:             if infos.var_class in ITEMS_VARIABLE:
Laurent@1343:                 self.ParentWindow.AddDebugVariable(
andrej@1730:                     "%s.%s" % (self.InstanceChoice.GetStringSelection(),
andrej@1730:                                infos.name),
Laurent@1343:                     force=True,
Laurent@1343:                     graph=True)
andrej@1730: 
Laurent@814:     def ShowInstanceChoicePopup(self):
Laurent@814:         self.InstanceChoice.SetFocusFromKbd()
Laurent@814:         size = self.InstanceChoice.GetSize()
Laurent@814:         event = wx.MouseEvent(wx.EVT_LEFT_DOWN._getEvtType())
andrej@2437:         event.x = size.width // 2
andrej@2437:         event.y = size.height // 2
Laurent@814:         event.SetEventObject(self.InstanceChoice)
andrej@1782:         # event = wx.KeyEvent(wx.EVT_KEY_DOWN._getEvtType())
andrej@1782:         # event.m_keyCode = wx.WXK_SPACE
Laurent@814:         self.InstanceChoice.GetEventHandler().ProcessEvent(event)
andrej@1730: 
Laurent@814:     def OnParentButtonClick(self, event):
Laurent@814:         if self.InstanceChoice.GetSelection() != -1:
Laurent@814:             parent_path = self.InstanceChoice.GetStringSelection().rsplit(".", 1)[0]
Laurent@814:             tagname = self.Controller.GetPouInstanceTagName(parent_path, self.Debug)
Laurent@814:             if tagname is not None:
Laurent@814:                 wx.CallAfter(self.SetPouType, tagname, parent_path)
Laurent@814:                 wx.CallAfter(self.ParentWindow.SelectProjectTreeItem, tagname)
Laurent@814:         event.Skip()
andrej@1730: 
Laurent@814:     def OnInstanceChoiceChanged(self, event):
Laurent@814:         self.RefreshButtons()
Laurent@814:         event.Skip()
andrej@1730: 
Laurent@814:     def OnDebugButtonClick(self, event):
Laurent@814:         if self.InstanceChoice.GetSelection() != -1:
Laurent@814:             self.ParentWindow.OpenDebugViewer(
Laurent@1348:                 self.PouInfos.var_class,
Laurent@814:                 self.InstanceChoice.GetStringSelection(),
Laurent@814:                 self.PouTagName)
Laurent@814:         event.Skip()
andrej@1730: 
Laurent@814:     def OnVariablesListItemActivated(self, event):
Laurent@1189:         selected_item = event.GetItem()
Laurent@1189:         if selected_item is not None and selected_item.IsOk():
kinsamanka@3789:             item_infos = self.VariablesList.GetItemData(selected_item)
Laurent@1343:             if item_infos is not None:
andrej@1730: 
Laurent@1343:                 item_button = self.VariablesList.IsOverItemRightImage(
Laurent@1343:                     selected_item, event.GetPoint())
Laurent@1343:                 if item_button is not None:
Laurent@1343:                     callback = self.ButtonCallBacks[item_button].dclick
Laurent@1343:                     if callback is not None:
Laurent@1343:                         callback(item_infos)
andrej@1730: 
Laurent@1348:                 elif item_infos.var_class not in ITEMS_VARIABLE:
Laurent@1343:                     instance_path = self.InstanceChoice.GetStringSelection()
Laurent@1348:                     if item_infos.var_class == ITEM_RESOURCE:
Laurent@1343:                         if instance_path != "":
Edouard@1948:                             tagname = ComputeConfigurationResourceName(
andrej@1878:                                 instance_path,
andrej@1878:                                 item_infos.name)
Laurent@1343:                         else:
Laurent@1343:                             tagname = None
Laurent@814:                     else:
kinsamanka@3789:                         parent_infos = self.VariablesList.GetItemData(selected_item.GetParent())
surkovsv93@1669:                         if item_infos.var_class == ITEM_ACTION:
Edouard@1948:                             tagname = ComputePouActionName(parent_infos.type, item_infos.name)
surkovsv93@1669:                         elif item_infos.var_class == ITEM_TRANSITION:
Edouard@1948:                             tagname = ComputePouTransitionName(parent_infos.type, item_infos.name)
surkovsv93@1669:                         else:
Edouard@1948:                             tagname = ComputePouName(item_infos.type)
Laurent@1343:                     if tagname is not None:
Laurent@1343:                         if instance_path != "":
Laurent@1348:                             item_path = "%s.%s" % (instance_path, item_infos.name)
Laurent@1343:                         else:
Laurent@1343:                             item_path = None
Laurent@1343:                         self.SetPouType(tagname, item_path)
Laurent@1343:                         self.ParentWindow.SelectProjectTreeItem(tagname)
Laurent@814:         event.Skip()
andrej@1730: 
Laurent@814:     def OnVariablesListLeftDown(self, event):
Laurent@814:         if self.InstanceChoice.GetSelection() == -1:
Laurent@814:             wx.CallAfter(self.ShowInstanceChoicePopup)
Laurent@898:         else:
Laurent@898:             instance_path = self.InstanceChoice.GetStringSelection()
Laurent@898:             item, flags = self.VariablesList.HitTest(event.GetPosition())
Laurent@1343:             if item is not None:
kinsamanka@3789:                 item_infos = self.VariablesList.GetItemData(item)
Laurent@1343:                 if item_infos is not None:
andrej@1730: 
Laurent@1343:                     item_button = self.VariablesList.IsOverItemRightImage(
Laurent@1343:                         item, event.GetPosition())
Laurent@1343:                     if item_button is not None:
Laurent@1343:                         callback = self.ButtonCallBacks[item_button].leftdown
Laurent@1343:                         if callback is not None:
Laurent@1343:                             callback(item_infos)
andrej@1730: 
andrej@1730:                     elif (flags & CT.TREE_HITTEST_ONITEMLABEL and
Laurent@1369:                           item_infos.var_class in ITEMS_VARIABLE):
Laurent@1369:                         self.ParentWindow.EnsureTabVisible(
Laurent@1369:                             self.ParentWindow.DebugVariablePanel)
Laurent@1369:                         item_path = "%s.%s" % (instance_path, item_infos.name)
Laurent@1369:                         data = wx.TextDataObject(str((item_path, "debug")))
Laurent@1369:                         dragSource = wx.DropSource(self.VariablesList)
Laurent@1369:                         dragSource.SetData(data)
Laurent@1369:                         dragSource.DoDragDrop()
Laurent@814:         event.Skip()
Laurent@1031: 
Laurent@1031:     def OnVariablesListKeyDown(self, event):
Laurent@1031:         keycode = event.GetKeyCode()
Laurent@1031:         if keycode != wx.WXK_LEFT:
Laurent@1031:             event.Skip()