author | Edouard Tisserant <edouard.tisserant@gmail.com> |
Fri, 01 Oct 2021 15:32:38 +0200 | |
branch | wxPython4 |
changeset 3324 | 13779d34293b |
parent 3305 | ca11385ea5e9 |
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:
1553
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:
1553
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:
1553
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:
1553
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:
1553
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:
1553
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:
1553
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:
1553
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:
1553
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:
1553
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:
1553
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:
1553
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:
1553
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:
1553
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:
1553
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:
1865
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:
1865
diff
changeset
|
26 |
from __future__ import absolute_import |
814 | 27 |
import wx |
28 |
||
29 |
from dialogs.DurationEditorDialog import DurationEditorDialog |
|
30 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
31 |
|
814 | 32 |
class DurationCellControl(wx.PyControl): |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
33 |
|
814 | 34 |
''' |
35 |
Custom cell editor control with a text box and a button that launches |
|
36 |
the DurationEditorDialog. |
|
37 |
''' |
|
38 |
def __init__(self, parent): |
|
1836
d42b6cf00fa6
fix error __init__ method from base class is not called
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
39 |
wx.PyControl.__init__(self, parent) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
40 |
|
814 | 41 |
main_sizer = wx.FlexGridSizer(cols=2, hgap=0, rows=1, vgap=0) |
42 |
main_sizer.AddGrowableCol(0) |
|
43 |
main_sizer.AddGrowableRow(0) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
44 |
|
814 | 45 |
# create location text control |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
46 |
self.Duration = wx.TextCtrl(self, size=wx.Size(0, -1), |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
47 |
style=wx.TE_PROCESS_ENTER) |
814 | 48 |
self.Duration.Bind(wx.EVT_KEY_DOWN, self.OnDurationChar) |
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:
2734
diff
changeset
|
49 |
main_sizer.Add(self.Duration, flag=wx.GROW) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
50 |
|
814 | 51 |
# create browse button |
52 |
self.EditButton = wx.Button(self, label='...', size=wx.Size(30, -1)) |
|
53 |
self.Bind(wx.EVT_BUTTON, self.OnEditButtonClick, self.EditButton) |
|
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:
2734
diff
changeset
|
54 |
main_sizer.Add(self.EditButton, flag=wx.GROW) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
55 |
|
814 | 56 |
self.Bind(wx.EVT_SIZE, self.OnSize) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
57 |
|
814 | 58 |
self.SetSizer(main_sizer) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
59 |
|
814 | 60 |
self.Default = None |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
61 |
|
814 | 62 |
def SetValue(self, value): |
63 |
self.Default = value |
|
64 |
self.Duration.SetValue(value) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
65 |
|
814 | 66 |
def GetValue(self): |
67 |
return self.Duration.GetValue() |
|
68 |
||
69 |
def OnSize(self, event): |
|
70 |
self.Layout() |
|
71 |
||
72 |
def OnEditButtonClick(self, event): |
|
73 |
# pop up the Duration Editor dialog |
|
74 |
dialog = DurationEditorDialog(self) |
|
75 |
dialog.SetDuration(self.Duration.GetValue()) |
|
76 |
if dialog.ShowModal() == wx.ID_OK: |
|
77 |
# set the duration |
|
78 |
self.Duration.SetValue(dialog.GetDuration()) |
|
79 |
||
80 |
dialog.Destroy() |
|
81 |
||
82 |
self.Duration.SetFocus() |
|
83 |
||
84 |
def OnDurationChar(self, event): |
|
85 |
keycode = event.GetKeyCode() |
|
86 |
if keycode in [wx.WXK_RETURN, wx.WXK_TAB]: |
|
87 |
self.Parent.Parent.ProcessEvent(event) |
|
88 |
elif keycode == wx.WXK_ESCAPE: |
|
89 |
self.Duration.SetValue(self.Default) |
|
90 |
self.Parent.Parent.CloseEditControl() |
|
91 |
else: |
|
92 |
event.Skip() |
|
93 |
||
94 |
def SetInsertionPoint(self, i): |
|
95 |
self.Duration.SetInsertionPoint(i) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
96 |
|
814 | 97 |
def SetFocus(self): |
98 |
self.Duration.SetFocus() |
|
99 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
100 |
|
3305
ca11385ea5e9
Depricated PyGridCellEditor becomes GridCellEditor
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
3303
diff
changeset
|
101 |
class DurationCellEditor(wx.grid.GridCellEditor): |
814 | 102 |
''' |
103 |
Grid cell editor that uses DurationCellControl to display an edit button. |
|
104 |
''' |
|
1275
8d4de18c9f29
Fixed DurationCellEditor to make it reusable
Laurent Bessard
parents:
814
diff
changeset
|
105 |
def __init__(self, table, colname): |
3305
ca11385ea5e9
Depricated PyGridCellEditor becomes GridCellEditor
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
3303
diff
changeset
|
106 |
wx.grid.GridCellEditor.__init__(self) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
107 |
|
814 | 108 |
self.Table = table |
1275
8d4de18c9f29
Fixed DurationCellEditor to make it reusable
Laurent Bessard
parents:
814
diff
changeset
|
109 |
self.Colname = colname |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
110 |
|
814 | 111 |
def __del__(self): |
112 |
self.CellControl = None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
113 |
|
814 | 114 |
def Create(self, parent, id, evt_handler): |
115 |
self.CellControl = DurationCellControl(parent) |
|
116 |
self.SetControl(self.CellControl) |
|
117 |
if evt_handler: |
|
118 |
self.CellControl.PushEventHandler(evt_handler) |
|
119 |
||
120 |
def BeginEdit(self, row, col, grid): |
|
121 |
self.CellControl.Enable() |
|
1275
8d4de18c9f29
Fixed DurationCellEditor to make it reusable
Laurent Bessard
parents:
814
diff
changeset
|
122 |
self.CellControl.SetValue(self.Table.GetValueByName(row, self.Colname)) |
814 | 123 |
self.CellControl.SetFocus() |
124 |
||
2734
3768af52835a
Fixed misuse of GridCellEditor in DurationCellEditor, potentially leading to crash on windows.
Edouard Tisserant
parents:
1881
diff
changeset
|
125 |
def EndEdit(self, row, col, grid, oldval): |
3768af52835a
Fixed misuse of GridCellEditor in DurationCellEditor, potentially leading to crash on windows.
Edouard Tisserant
parents:
1881
diff
changeset
|
126 |
value = self.CellControl.GetValue() |
3768af52835a
Fixed misuse of GridCellEditor in DurationCellEditor, potentially leading to crash on windows.
Edouard Tisserant
parents:
1881
diff
changeset
|
127 |
changed = value != oldval |
814 | 128 |
if changed: |
2734
3768af52835a
Fixed misuse of GridCellEditor in DurationCellEditor, potentially leading to crash on windows.
Edouard Tisserant
parents:
1881
diff
changeset
|
129 |
return value |
3768af52835a
Fixed misuse of GridCellEditor in DurationCellEditor, potentially leading to crash on windows.
Edouard Tisserant
parents:
1881
diff
changeset
|
130 |
else: |
3768af52835a
Fixed misuse of GridCellEditor in DurationCellEditor, potentially leading to crash on windows.
Edouard Tisserant
parents:
1881
diff
changeset
|
131 |
return None |
3768af52835a
Fixed misuse of GridCellEditor in DurationCellEditor, potentially leading to crash on windows.
Edouard Tisserant
parents:
1881
diff
changeset
|
132 |
|
3768af52835a
Fixed misuse of GridCellEditor in DurationCellEditor, potentially leading to crash on windows.
Edouard Tisserant
parents:
1881
diff
changeset
|
133 |
def ApplyEdit(self, row, col, grid): |
3768af52835a
Fixed misuse of GridCellEditor in DurationCellEditor, potentially leading to crash on windows.
Edouard Tisserant
parents:
1881
diff
changeset
|
134 |
value = self.CellControl.GetValue() |
3768af52835a
Fixed misuse of GridCellEditor in DurationCellEditor, potentially leading to crash on windows.
Edouard Tisserant
parents:
1881
diff
changeset
|
135 |
self.Table.SetValueByName(row, self.Colname, value) |
814 | 136 |
self.CellControl.Disable() |
1499
8626bba4b2a8
fix issue, that was impossible to change time interval for cyclic
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1275
diff
changeset
|
137 |
|
814 | 138 |
def SetSize(self, rect): |
139 |
self.CellControl.SetDimensions(rect.x + 1, rect.y, |
|
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
140 |
rect.width, rect.height, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
141 |
wx.SIZE_ALLOW_MINUS_ONE) |
814 | 142 |
|
143 |
def Clone(self): |
|
1865
0bd5b3099144
fix pylint warning "(no-value-for-parameter) No value for argument 'X' in function call"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1836
diff
changeset
|
144 |
return DurationCellEditor(self.Table, self.Colname) |