author | Edouard Tisserant <edouard.tisserant@gmail.com> |
Fri, 01 Oct 2021 15:32:38 +0200 | |
branch | wxPython4 |
changeset 3324 | 13779d34293b |
parent 3303 | 0ffb41625592 |
child 3750 | f62625418bff |
permissions | -rw-r--r-- |
814 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
3 |
||
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
4 |
# This file is part of Beremiz, a Integrated Development Environment for |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
5 |
# programming IEC 61131-3 automates supporting plcopen standard and CanFestival. |
814 | 6 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
7 |
# Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
814 | 8 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
9 |
# See COPYING file for copyrights details. |
814 | 10 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
11 |
# This program is free software; you can redistribute it and/or |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
12 |
# modify it under the terms of the GNU General Public License |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
13 |
# as published by the Free Software Foundation; either version 2 |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
14 |
# of the License, or (at your option) any later version. |
814 | 15 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
16 |
# This program is distributed in the hope that it will be useful, |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
17 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
18 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
19 |
# GNU General Public License for more details. |
814 | 20 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
21 |
# You should have received a copy of the GNU General Public License |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
22 |
# along with this program; if not, write to the Free Software |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
814
diff
changeset
|
23 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
814 | 24 |
|
1881
091005ec69c4
fix pylint py3k conversion warning: "(no-absolute-import) import missing `from __future__ import absolute_import`"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
25 |
|
091005ec69c4
fix pylint py3k conversion warning: "(no-absolute-import) import missing `from __future__ import absolute_import`"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
26 |
from __future__ import absolute_import |
814 | 27 |
import wx |
3303
0ffb41625592
Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
1881
diff
changeset
|
28 |
import wx.adv |
814 | 29 |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1735
diff
changeset
|
30 |
|
3303
0ffb41625592
Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
1881
diff
changeset
|
31 |
class CustomEditableListBox(wx.adv.EditableListBox): |
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
32 |
|
814 | 33 |
def __init__(self, *args, **kwargs): |
3303
0ffb41625592
Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
1881
diff
changeset
|
34 |
wx.adv.EditableListBox.__init__(self, *args, **kwargs) |
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
35 |
|
814 | 36 |
listbox = self.GetListCtrl() |
37 |
listbox.Bind(wx.EVT_KEY_DOWN, self.OnKeyDown) |
|
38 |
listbox.Bind(wx.EVT_LIST_BEGIN_LABEL_EDIT, self.OnLabelBeginEdit) |
|
39 |
listbox.Bind(wx.EVT_LIST_END_LABEL_EDIT, self.OnLabelEndEdit) |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
40 |
|
814 | 41 |
for button, tooltip, call_function in [ |
42 |
(self.GetEditButton(), _("Edit item"), "_OnEditButton"), |
|
43 |
(self.GetNewButton(), _("New item"), "_OnNewButton"), |
|
44 |
(self.GetDelButton(), _("Delete item"), "_OnDelButton"), |
|
45 |
(self.GetUpButton(), _("Move up"), "_OnUpButton"), |
|
46 |
(self.GetDownButton(), _("Move down"), "_OnDownButton")]: |
|
3303
0ffb41625592
Preliminary support for WxPython 4.1.0. Needs more testing. Grid selection/focus seems broken, and probably many other bugs hidden in dialogs and editors.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
1881
diff
changeset
|
47 |
button.SetToolTip(tooltip) |
814 | 48 |
button.Bind(wx.EVT_BUTTON, self.GetButtonPressedFunction(call_function)) |
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
49 |
|
814 | 50 |
self.Editing = False |
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
51 |
|
814 | 52 |
def EnsureCurrentItemVisible(self): |
53 |
listctrl = self.GetListCtrl() |
|
54 |
listctrl.EnsureVisible(listctrl.GetFocusedItem()) |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
55 |
|
814 | 56 |
def OnLabelBeginEdit(self, event): |
57 |
self.Editing = True |
|
58 |
func = getattr(self, "_OnLabelBeginEdit", None) |
|
59 |
if func is not None: |
|
60 |
func(event) |
|
61 |
else: |
|
62 |
event.Skip() |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
63 |
|
814 | 64 |
def OnLabelEndEdit(self, event): |
65 |
self.Editing = False |
|
66 |
func = getattr(self, "_OnLabelEndEdit", None) |
|
67 |
if func is not None: |
|
68 |
func(event) |
|
69 |
else: |
|
70 |
event.Skip() |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
71 |
|
814 | 72 |
def GetButtonPressedFunction(self, call_function): |
73 |
def OnButtonPressed(event): |
|
74 |
if wx.Platform != '__WXMSW__' or not self.Editing: |
|
75 |
func = getattr(self, call_function, None) |
|
76 |
if func is not None: |
|
77 |
func(event) |
|
78 |
wx.CallAfter(self.EnsureCurrentItemVisible) |
|
79 |
else: |
|
80 |
wx.CallAfter(self.EnsureCurrentItemVisible) |
|
81 |
event.Skip() |
|
82 |
return OnButtonPressed |
|
1735
c02818d7e29f
clean-up: fix PEP8 W293 blank line contains whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
83 |
|
814 | 84 |
def OnKeyDown(self, event): |
85 |
button = None |
|
86 |
keycode = event.GetKeyCode() |
|
87 |
if keycode in (wx.WXK_ADD, wx.WXK_NUMPAD_ADD): |
|
88 |
button = self.GetNewButton() |
|
89 |
elif keycode in (wx.WXK_DELETE, wx.WXK_NUMPAD_DELETE): |
|
90 |
button = self.GetDelButton() |
|
91 |
elif keycode == wx.WXK_UP and event.ShiftDown(): |
|
92 |
button = self.GetUpButton() |
|
93 |
elif keycode == wx.WXK_DOWN and event.ShiftDown(): |
|
94 |
button = self.GetDownButton() |
|
95 |
elif keycode == wx.WXK_SPACE: |
|
96 |
button = self.GetEditButton() |
|
97 |
if button is not None and button.IsEnabled(): |
|
98 |
button.ProcessEvent(wx.CommandEvent(wx.EVT_BUTTON.typeId, button.GetId())) |
|
99 |
else: |
|
100 |
event.Skip() |