author | Laurent Bessard |
Tue, 14 May 2013 22:31:14 +0200 | |
changeset 1140 | 80a91fc91595 |
parent 1111 | ee1a8c961f11 |
child 1162 | a2b4d366bc66 |
permissions | -rw-r--r-- |
738 | 1 |
|
2 |
import os |
|
3 |
import types |
|
4 |
||
5 |
import wx |
|
6 |
import wx.lib.buttons |
|
7 |
||
814 | 8 |
from EditorPanel import EditorPanel |
9 |
||
10 |
from IDEFrame import TITLE, FILEMENU, PROJECTTREE, PAGETITLES |
|
11 |
||
12 |
from controls import TextCtrlAutoComplete |
|
13 |
from dialogs import BrowseValuesLibraryDialog |
|
14 |
from util.BitmapLibrary import GetBitmap |
|
738 | 15 |
|
16 |
if wx.Platform == '__WXMSW__': |
|
17 |
faces = { 'times': 'Times New Roman', |
|
18 |
'mono' : 'Courier New', |
|
19 |
'helv' : 'Arial', |
|
20 |
'other': 'Comic Sans MS', |
|
21 |
'size' : 16, |
|
22 |
} |
|
23 |
else: |
|
24 |
faces = { 'times': 'Times', |
|
25 |
'mono' : 'Courier', |
|
26 |
'helv' : 'Helvetica', |
|
27 |
'other': 'new century schoolbook', |
|
28 |
'size' : 18, |
|
29 |
} |
|
30 |
||
31 |
SCROLLBAR_UNIT = 10 |
|
746
2e09777a40d3
Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents:
744
diff
changeset
|
32 |
WINDOW_COLOUR = wx.Colour(240, 240, 240) |
738 | 33 |
|
34 |
CWD = os.path.split(os.path.realpath(__file__))[0] |
|
35 |
||
36 |
def Bpath(*args): |
|
37 |
return os.path.join(CWD,*args) |
|
38 |
||
39 |
# Some helpers to tweak GenBitmapTextButtons |
|
40 |
# TODO: declare customized classes instead. |
|
41 |
gen_mini_GetBackgroundBrush = lambda obj:lambda dc: wx.Brush(obj.GetParent().GetBackgroundColour(), wx.SOLID) |
|
42 |
gen_textbutton_GetLabelSize = lambda obj:lambda:(wx.lib.buttons.GenButton._GetLabelSize(obj)[:-1] + (False,)) |
|
43 |
||
44 |
def make_genbitmaptogglebutton_flat(button): |
|
45 |
button.GetBackgroundBrush = gen_mini_GetBackgroundBrush(button) |
|
46 |
button.labelDelta = 0 |
|
47 |
button.SetBezelWidth(0) |
|
48 |
button.SetUseFocusIndicator(False) |
|
49 |
||
50 |
# Patch wx.lib.imageutils so that gray is supported on alpha images |
|
51 |
import wx.lib.imageutils |
|
52 |
from wx.lib.imageutils import grayOut as old_grayOut |
|
53 |
def grayOut(anImage): |
|
54 |
if anImage.HasAlpha(): |
|
55 |
AlphaData = anImage.GetAlphaData() |
|
56 |
else : |
|
57 |
AlphaData = None |
|
58 |
||
59 |
old_grayOut(anImage) |
|
60 |
||
61 |
if AlphaData is not None: |
|
62 |
anImage.SetAlphaData(AlphaData) |
|
63 |
||
64 |
wx.lib.imageutils.grayOut = grayOut |
|
65 |
||
66 |
class GenBitmapTextButton(wx.lib.buttons.GenBitmapTextButton): |
|
67 |
def _GetLabelSize(self): |
|
68 |
""" used internally """ |
|
69 |
w, h = self.GetTextExtent(self.GetLabel()) |
|
70 |
if not self.bmpLabel: |
|
71 |
return w, h, False # if there isn't a bitmap use the size of the text |
|
72 |
||
73 |
w_bmp = self.bmpLabel.GetWidth()+2 |
|
74 |
h_bmp = self.bmpLabel.GetHeight()+2 |
|
75 |
height = h + h_bmp |
|
76 |
if w_bmp > w: |
|
77 |
width = w_bmp |
|
78 |
else: |
|
79 |
width = w |
|
80 |
return width, height, False |
|
81 |
||
82 |
def DrawLabel(self, dc, width, height, dw=0, dy=0): |
|
83 |
bmp = self.bmpLabel |
|
84 |
if bmp != None: # if the bitmap is used |
|
85 |
if self.bmpDisabled and not self.IsEnabled(): |
|
86 |
bmp = self.bmpDisabled |
|
87 |
if self.bmpFocus and self.hasFocus: |
|
88 |
bmp = self.bmpFocus |
|
89 |
if self.bmpSelected and not self.up: |
|
90 |
bmp = self.bmpSelected |
|
91 |
bw,bh = bmp.GetWidth(), bmp.GetHeight() |
|
92 |
if not self.up: |
|
93 |
dw = dy = self.labelDelta |
|
94 |
hasMask = bmp.GetMask() != None |
|
95 |
else: |
|
96 |
bw = bh = 0 # no bitmap -> size is zero |
|
97 |
||
98 |
dc.SetFont(self.GetFont()) |
|
99 |
if self.IsEnabled(): |
|
100 |
dc.SetTextForeground(self.GetForegroundColour()) |
|
101 |
else: |
|
102 |
dc.SetTextForeground(wx.SystemSettings.GetColour(wx.SYS_COLOUR_GRAYTEXT)) |
|
103 |
||
104 |
label = self.GetLabel() |
|
105 |
tw, th = dc.GetTextExtent(label) # size of text |
|
106 |
if not self.up: |
|
107 |
dw = dy = self.labelDelta |
|
108 |
||
109 |
pos_x = (width-bw)/2+dw # adjust for bitmap and text to centre |
|
110 |
pos_y = (height-bh-th)/2+dy |
|
111 |
if bmp !=None: |
|
112 |
dc.DrawBitmap(bmp, pos_x, pos_y, hasMask) # draw bitmap if available |
|
113 |
pos_x = (width-tw)/2+dw # adjust for bitmap and text to centre |
|
114 |
pos_y += bh + 2 |
|
115 |
||
116 |
dc.DrawText(label, pos_x, pos_y) # draw the text |
|
117 |
||
118 |
||
119 |
class GenStaticBitmap(wx.lib.statbmp.GenStaticBitmap): |
|
120 |
""" Customized GenStaticBitmap, fix transparency redraw bug on wx2.8/win32, |
|
121 |
and accept image name as __init__ parameter, fail silently if file do not exist""" |
|
122 |
def __init__(self, parent, ID, bitmapname, |
|
123 |
pos = wx.DefaultPosition, size = wx.DefaultSize, |
|
124 |
style = 0, |
|
125 |
name = "genstatbmp"): |
|
126 |
||
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
127 |
wx.lib.statbmp.GenStaticBitmap.__init__(self, parent, ID, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
128 |
GetBitmap(bitmapname), |
738 | 129 |
pos, size, |
130 |
style, |
|
131 |
name) |
|
132 |
||
133 |
def OnPaint(self, event): |
|
134 |
dc = wx.PaintDC(self) |
|
135 |
colour = self.GetParent().GetBackgroundColour() |
|
136 |
dc.SetPen(wx.Pen(colour)) |
|
137 |
dc.SetBrush(wx.Brush(colour )) |
|
138 |
dc.DrawRectangle(0, 0, *dc.GetSizeTuple()) |
|
139 |
if self._bitmap: |
|
140 |
dc.DrawBitmap(self._bitmap, 0, 0, True) |
|
141 |
||
142 |
class ConfTreeNodeEditor(EditorPanel): |
|
143 |
||
775
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
144 |
SHOW_BASE_PARAMS = True |
762
aaacc83aa86b
Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents:
751
diff
changeset
|
145 |
SHOW_PARAMS = True |
920
1499a4d225db
Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents:
846
diff
changeset
|
146 |
CONFNODEEDITOR_TABS = [] |
738 | 147 |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
148 |
def _init_Editor(self, parent): |
920
1499a4d225db
Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents:
846
diff
changeset
|
149 |
tabs_num = len(self.CONFNODEEDITOR_TABS) |
1055 | 150 |
if self.SHOW_PARAMS and len(self.Controler.GetParamsAttributes()) > 0: |
920
1499a4d225db
Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents:
846
diff
changeset
|
151 |
tabs_num += 1 |
1499a4d225db
Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents:
846
diff
changeset
|
152 |
|
1055 | 153 |
if tabs_num > 1 or self.SHOW_BASE_PARAMS: |
920
1499a4d225db
Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents:
846
diff
changeset
|
154 |
self.Editor = wx.Panel(parent, |
1499a4d225db
Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents:
846
diff
changeset
|
155 |
style=wx.SUNKEN_BORDER|wx.SP_3D) |
1055 | 156 |
self.Editor.SetBackgroundColour(WINDOW_COLOUR) |
157 |
||
158 |
self.MainSizer = wx.BoxSizer(wx.VERTICAL) |
|
762
aaacc83aa86b
Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents:
751
diff
changeset
|
159 |
|
775
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
160 |
if self.SHOW_BASE_PARAMS: |
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
161 |
baseparamseditor_sizer = wx.BoxSizer(wx.HORIZONTAL) |
1055 | 162 |
self.MainSizer.AddSizer(baseparamseditor_sizer, border=5, |
163 |
flag=wx.GROW|wx.ALL) |
|
164 |
||
165 |
self.FullIECChannel = wx.StaticText(self.Editor, -1) |
|
775
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
166 |
self.FullIECChannel.SetFont( |
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
167 |
wx.Font(faces["size"], wx.DEFAULT, wx.NORMAL, |
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
168 |
wx.BOLD, faceName = faces["helv"])) |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
169 |
baseparamseditor_sizer.AddWindow(self.FullIECChannel, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
170 |
flag=wx.ALIGN_CENTER_VERTICAL) |
775
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
171 |
|
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
172 |
updownsizer = wx.BoxSizer(wx.VERTICAL) |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
173 |
baseparamseditor_sizer.AddSizer(updownsizer, border=5, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
174 |
flag=wx.LEFT|wx.ALIGN_CENTER_VERTICAL) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
175 |
|
1055 | 176 |
self.IECCUpButton = wx.lib.buttons.GenBitmapTextButton(self.Editor, |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
177 |
bitmap=GetBitmap('IECCDown'), size=wx.Size(16, 16), style=wx.NO_BORDER) |
775
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
178 |
self.IECCUpButton.Bind(wx.EVT_BUTTON, self.GetItemChannelChangedFunction(1), |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
179 |
self.IECCUpButton) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
180 |
updownsizer.AddWindow(self.IECCUpButton, flag=wx.ALIGN_LEFT) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
181 |
|
1055 | 182 |
self.IECCDownButton = wx.lib.buttons.GenBitmapButton(self.Editor, |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
183 |
bitmap=GetBitmap('IECCUp'), size=wx.Size(16, 16), style=wx.NO_BORDER) |
775
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
184 |
self.IECCDownButton.Bind(wx.EVT_BUTTON, self.GetItemChannelChangedFunction(-1), |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
185 |
self.IECCDownButton) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
186 |
updownsizer.AddWindow(self.IECCDownButton, flag=wx.ALIGN_LEFT) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
187 |
|
1055 | 188 |
self.ConfNodeName = wx.TextCtrl(self.Editor, |
775
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
189 |
size=wx.Size(150, 25), style=wx.NO_BORDER) |
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
190 |
self.ConfNodeName.SetFont( |
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
191 |
wx.Font(faces["size"] * 0.75, wx.DEFAULT, wx.NORMAL, |
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
192 |
wx.BOLD, faceName = faces["helv"])) |
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
193 |
self.ConfNodeName.Bind(wx.EVT_TEXT, |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
194 |
self.GetTextCtrlCallBackFunction(self.ConfNodeName, "BaseParams.Name", True), |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
195 |
self.ConfNodeName) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
196 |
baseparamseditor_sizer.AddWindow(self.ConfNodeName, border=5, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
197 |
flag=wx.LEFT|wx.RIGHT|wx.ALIGN_CENTER_VERTICAL) |
775
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
198 |
|
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
199 |
buttons_sizer = self.GenerateMethodButtonSizer() |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
200 |
baseparamseditor_sizer.AddSizer(buttons_sizer, flag=wx.ALIGN_CENTER) |
775
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
201 |
|
1055 | 202 |
if tabs_num > 1: |
203 |
self.ConfNodeNoteBook = wx.Notebook(self.Editor) |
|
204 |
parent = self.ConfNodeNoteBook |
|
205 |
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
|
206 |
else: |
1059
50246061d5c6
Fixed new ConfTreeNodeEditor layout on Windows
Laurent Bessard
parents:
1055
diff
changeset
|
207 |
parent = self.Editor |
1055 | 208 |
self.ConfNodeNoteBook = None |
209 |
||
210 |
self.Editor.SetSizer(self.MainSizer) |
|
211 |
else: |
|
212 |
self.ConfNodeNoteBook = None |
|
213 |
self.Editor = None |
|
214 |
||
215 |
for title, create_func_name in self.CONFNODEEDITOR_TABS: |
|
216 |
editor = getattr(self, create_func_name)(parent) |
|
217 |
if self.ConfNodeNoteBook is not None: |
|
218 |
self.ConfNodeNoteBook.AddPage(editor, title) |
|
219 |
elif self.SHOW_BASE_PARAMS: |
|
220 |
self.MainSizer.AddWindow(editor, 1, flag=wx.GROW) |
|
221 |
else: |
|
222 |
self.Editor = editor |
|
223 |
||
224 |
if self.SHOW_PARAMS and len(self.Controler.GetParamsAttributes()) > 0: |
|
225 |
||
226 |
panel_style = wx.TAB_TRAVERSAL|wx.HSCROLL|wx.VSCROLL |
|
1059
50246061d5c6
Fixed new ConfTreeNodeEditor layout on Windows
Laurent Bessard
parents:
1055
diff
changeset
|
227 |
if self.ConfNodeNoteBook is None and parent != self.Editor: |
1055 | 228 |
panel_style |= wx.SUNKEN_BORDER |
229 |
self.ParamsEditor = wx.ScrolledWindow(parent, |
|
230 |
style=panel_style) |
|
231 |
self.ParamsEditor.SetBackgroundColour(WINDOW_COLOUR) |
|
232 |
self.ParamsEditor.Bind(wx.EVT_SIZE, self.OnWindowResize) |
|
233 |
self.ParamsEditor.Bind(wx.EVT_MOUSEWHEEL, self.OnMouseWheel) |
|
234 |
||
235 |
# Variable allowing disabling of ParamsEditor scroll when Popup shown |
|
236 |
self.ScrollingEnabled = True |
|
237 |
||
238 |
self.ParamsEditorSizer = wx.FlexGridSizer(cols=1, hgap=0, rows=1, vgap=5) |
|
239 |
self.ParamsEditorSizer.AddGrowableCol(0) |
|
240 |
self.ParamsEditorSizer.AddGrowableRow(0) |
|
241 |
self.ParamsEditor.SetSizer(self.ParamsEditorSizer) |
|
762
aaacc83aa86b
Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents:
751
diff
changeset
|
242 |
|
aaacc83aa86b
Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents:
751
diff
changeset
|
243 |
self.ConfNodeParamsSizer = wx.BoxSizer(wx.VERTICAL) |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
244 |
self.ParamsEditorSizer.AddSizer(self.ConfNodeParamsSizer, border=5, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
245 |
flag=wx.LEFT|wx.RIGHT|wx.BOTTOM) |
775
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
246 |
|
172be32a2482
Adding support for hiding node base params controls if needed
laurent
parents:
767
diff
changeset
|
247 |
self.RefreshConfNodeParamsSizer() |
920
1499a4d225db
Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents:
846
diff
changeset
|
248 |
|
1499a4d225db
Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents:
846
diff
changeset
|
249 |
if self.ConfNodeNoteBook is not None: |
1499a4d225db
Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents:
846
diff
changeset
|
250 |
self.ConfNodeNoteBook.AddPage(self.ParamsEditor, _("Config")) |
1055 | 251 |
elif self.SHOW_BASE_PARAMS: |
252 |
self.MainSizer.AddWindow(self.ParamsEditor, 1, flag=wx.GROW) |
|
920
1499a4d225db
Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents:
846
diff
changeset
|
253 |
else: |
1499a4d225db
Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
Laurent Bessard
parents:
846
diff
changeset
|
254 |
self.Editor = self.ParamsEditor |
762
aaacc83aa86b
Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents:
751
diff
changeset
|
255 |
else: |
aaacc83aa86b
Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents:
751
diff
changeset
|
256 |
self.ParamsEditor = None |
738 | 257 |
|
743 | 258 |
def __init__(self, parent, controler, window, tagname=""): |
738 | 259 |
EditorPanel.__init__(self, parent, tagname, window, controler) |
743 | 260 |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
261 |
icon_name = self.Controler.GetIconName() |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
262 |
if icon_name is not None: |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
263 |
self.SetIcon(GetBitmap(icon_name)) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
264 |
else: |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
265 |
self.SetIcon(GetBitmap("Extension")) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
266 |
|
738 | 267 |
def __del__(self): |
268 |
self.Controler.OnCloseEditor(self) |
|
269 |
||
270 |
def GetTagName(self): |
|
271 |
return self.Controler.CTNFullName() |
|
272 |
||
273 |
def GetTitle(self): |
|
274 |
fullname = self.Controler.CTNFullName() |
|
275 |
if self.Controler.CTNTestModified(): |
|
276 |
return "~%s~" % fullname |
|
277 |
return fullname |
|
278 |
||
279 |
def HasNoModel(self): |
|
280 |
return False |
|
281 |
||
743 | 282 |
def GetBufferState(self): |
283 |
return False, False |
|
284 |
||
285 |
def Undo(self): |
|
286 |
pass |
|
287 |
||
288 |
def Redo(self): |
|
289 |
pass |
|
290 |
||
746
2e09777a40d3
Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents:
744
diff
changeset
|
291 |
def RefreshView(self): |
2e09777a40d3
Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents:
744
diff
changeset
|
292 |
EditorPanel.RefreshView(self) |
1055 | 293 |
if self.SHOW_BASE_PARAMS: |
294 |
self.ConfNodeName.ChangeValue(self.Controler.MandatoryParams[1].getName()) |
|
295 |
self.RefreshIECChannelControlsState() |
|
762
aaacc83aa86b
Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents:
751
diff
changeset
|
296 |
if self.ParamsEditor is not None: |
aaacc83aa86b
Modifying canfestival plugin to following the new Beremiz confnode paradigm
laurent
parents:
751
diff
changeset
|
297 |
self.RefreshConfNodeParamsSizer() |
840
980863738cf6
Fix scroll bug in ConfNode params panel when changing tab selection on Windows
Laurent Bessard
parents:
814
diff
changeset
|
298 |
self.RefreshScrollbars() |
746
2e09777a40d3
Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents:
744
diff
changeset
|
299 |
|
738 | 300 |
def EnableScrolling(self, enable): |
301 |
self.ScrollingEnabled = enable |
|
302 |
||
303 |
def RefreshIECChannelControlsState(self): |
|
304 |
self.FullIECChannel.SetLabel(self.Controler.GetFullIEC_Channel()) |
|
305 |
self.IECCDownButton.Enable(self.Controler.BaseParams.getIEC_Channel() > 0) |
|
1059
50246061d5c6
Fixed new ConfTreeNodeEditor layout on Windows
Laurent Bessard
parents:
1055
diff
changeset
|
306 |
self.MainSizer.Layout() |
738 | 307 |
|
308 |
def RefreshConfNodeParamsSizer(self): |
|
309 |
self.Freeze() |
|
310 |
self.ConfNodeParamsSizer.Clear(True) |
|
311 |
||
312 |
confnode_infos = self.Controler.GetParamsAttributes() |
|
313 |
if len(confnode_infos) > 0: |
|
314 |
self.GenerateSizerElements(self.ConfNodeParamsSizer, confnode_infos, None, False) |
|
315 |
||
316 |
self.ParamsEditorSizer.Layout() |
|
317 |
self.Thaw() |
|
318 |
||
319 |
def GenerateMethodButtonSizer(self): |
|
320 |
normal_bt_font=wx.Font(faces["size"] / 3, wx.DEFAULT, wx.NORMAL, wx.NORMAL, faceName = faces["helv"]) |
|
321 |
mouseover_bt_font=wx.Font(faces["size"] / 3, wx.DEFAULT, wx.NORMAL, wx.NORMAL, underline=True, faceName = faces["helv"]) |
|
322 |
||
323 |
msizer = wx.BoxSizer(wx.HORIZONTAL) |
|
324 |
||
325 |
for confnode_method in self.Controler.ConfNodeMethods: |
|
326 |
if "method" in confnode_method and confnode_method.get("shown",True): |
|
1055 | 327 |
button = GenBitmapTextButton(self.Editor, |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
328 |
bitmap=GetBitmap(confnode_method.get("bitmap", "Unknown")), |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
329 |
label=confnode_method["name"], style=wx.NO_BORDER) |
738 | 330 |
button.SetFont(normal_bt_font) |
331 |
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
|
332 |
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
|
333 |
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
|
334 |
else: |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
335 |
button.Bind(wx.EVT_BUTTON, self.GetButtonCallBackFunction(confnode_method["method"]), button) |
738 | 336 |
# a fancy underline on mouseover |
337 |
def setFontStyle(b, s): |
|
338 |
def fn(event): |
|
339 |
b.SetFont(s) |
|
340 |
b.Refresh() |
|
341 |
event.Skip() |
|
342 |
return fn |
|
343 |
button.Bind(wx.EVT_ENTER_WINDOW, setFontStyle(button, mouseover_bt_font)) |
|
344 |
button.Bind(wx.EVT_LEAVE_WINDOW, setFontStyle(button, normal_bt_font)) |
|
345 |
#hack to force size to mini |
|
346 |
if not confnode_method.get("enabled",True): |
|
347 |
button.Disable() |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
348 |
msizer.AddWindow(button, flag=wx.ALIGN_CENTER) |
738 | 349 |
return msizer |
350 |
||
351 |
def GenerateSizerElements(self, sizer, elements, path, clean = True): |
|
352 |
if clean: |
|
353 |
sizer.Clear(True) |
|
354 |
first = True |
|
355 |
for element_infos in elements: |
|
356 |
if path: |
|
357 |
element_path = "%s.%s"%(path, element_infos["name"]) |
|
358 |
else: |
|
359 |
element_path = element_infos["name"] |
|
360 |
if element_infos["type"] == "element": |
|
361 |
label = element_infos["name"] |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
362 |
staticbox = wx.StaticBox(self.ParamsEditor, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
363 |
label=_(label), size=wx.Size(10, 0)) |
738 | 364 |
staticboxsizer = wx.StaticBoxSizer(staticbox, wx.VERTICAL) |
365 |
if first: |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
366 |
sizer.AddSizer(staticboxsizer, border=5, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
367 |
flag=wx.GROW|wx.TOP|wx.BOTTOM) |
738 | 368 |
else: |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
369 |
sizer.AddSizer(staticboxsizer, border=5, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
370 |
flag=wx.GROW|wx.BOTTOM) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
371 |
self.GenerateSizerElements(staticboxsizer, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
372 |
element_infos["children"], |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
373 |
element_path) |
738 | 374 |
else: |
375 |
boxsizer = wx.FlexGridSizer(cols=3, rows=1) |
|
376 |
boxsizer.AddGrowableCol(1) |
|
377 |
if first: |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
378 |
sizer.AddSizer(boxsizer, border=5, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
379 |
flag=wx.GROW|wx.ALL) |
738 | 380 |
else: |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
381 |
sizer.AddSizer(boxsizer, border=5, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
382 |
flag=wx.GROW|wx.LEFT|wx.RIGHT|wx.BOTTOM) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
383 |
|
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
384 |
staticbitmap = GenStaticBitmap(ID=-1, bitmapname=element_infos["name"], |
738 | 385 |
name="%s_bitmap"%element_infos["name"], parent=self.ParamsEditor, |
386 |
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
|
387 |
boxsizer.AddWindow(staticbitmap, border=5, flag=wx.RIGHT) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
388 |
|
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
389 |
statictext = wx.StaticText(self.ParamsEditor, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
390 |
label="%s:"%_(element_infos["name"])) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
391 |
boxsizer.AddWindow(statictext, border=5, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
392 |
flag=wx.ALIGN_CENTER_VERTICAL|wx.RIGHT) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
393 |
|
738 | 394 |
if isinstance(element_infos["type"], types.ListType): |
395 |
if isinstance(element_infos["value"], types.TupleType): |
|
396 |
browse_boxsizer = wx.BoxSizer(wx.HORIZONTAL) |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
397 |
boxsizer.AddSizer(browse_boxsizer) |
738 | 398 |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
399 |
textctrl = wx.TextCtrl(self.ParamsEditor, |
846
26836e421e19
Fix ConfTreeNodeEditor parameters controls size on Windows
laurent
parents:
844
diff
changeset
|
400 |
size=wx.Size(275, -1), style=wx.TE_READONLY) |
738 | 401 |
if element_infos["value"] is not None: |
402 |
textctrl.SetValue(element_infos["value"][0]) |
|
403 |
value_infos = element_infos["value"][1] |
|
404 |
else: |
|
405 |
value_infos = None |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
406 |
browse_boxsizer.AddWindow(textctrl) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
407 |
|
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
408 |
button = wx.Button(self.ParamsEditor, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
409 |
label="...", size=wx.Size(25, 25)) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
410 |
browse_boxsizer.AddWindow(button) |
738 | 411 |
button.Bind(wx.EVT_BUTTON, |
412 |
self.GetBrowseCallBackFunction(element_infos["name"], textctrl, element_infos["type"], |
|
413 |
value_infos, element_path), |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
414 |
button) |
738 | 415 |
else: |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
416 |
combobox = wx.ComboBox(self.ParamsEditor, |
846
26836e421e19
Fix ConfTreeNodeEditor parameters controls size on Windows
laurent
parents:
844
diff
changeset
|
417 |
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
|
418 |
boxsizer.AddWindow(combobox) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
419 |
|
738 | 420 |
if element_infos["use"] == "optional": |
421 |
combobox.Append("") |
|
422 |
if len(element_infos["type"]) > 0 and isinstance(element_infos["type"][0], types.TupleType): |
|
423 |
for choice, xsdclass in element_infos["type"]: |
|
424 |
combobox.Append(choice) |
|
425 |
name = element_infos["name"] |
|
426 |
value = element_infos["value"] |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
427 |
|
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
428 |
staticbox = wx.StaticBox(self.ParamsEditor, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
429 |
label="%s - %s"%(_(name), _(value)), size=wx.Size(10, 0)) |
738 | 430 |
staticboxsizer = wx.StaticBoxSizer(staticbox, wx.VERTICAL) |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
431 |
sizer.AddSizer(staticboxsizer, border=5, flag=wx.GROW|wx.BOTTOM) |
738 | 432 |
self.GenerateSizerElements(staticboxsizer, element_infos["children"], element_path) |
433 |
callback = self.GetChoiceContentCallBackFunction(combobox, staticboxsizer, element_path) |
|
434 |
else: |
|
435 |
for choice in element_infos["type"]: |
|
436 |
combobox.Append(choice) |
|
437 |
callback = self.GetChoiceCallBackFunction(combobox, element_path) |
|
438 |
if element_infos["value"] is None: |
|
439 |
combobox.SetStringSelection("") |
|
440 |
else: |
|
441 |
combobox.SetStringSelection(element_infos["value"]) |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
442 |
combobox.Bind(wx.EVT_COMBOBOX, callback, combobox) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
443 |
|
738 | 444 |
elif isinstance(element_infos["type"], types.DictType): |
445 |
scmin = -(2**31) |
|
446 |
scmax = 2**31-1 |
|
447 |
if "min" in element_infos["type"]: |
|
448 |
scmin = element_infos["type"]["min"] |
|
449 |
if "max" in element_infos["type"]: |
|
450 |
scmax = element_infos["type"]["max"] |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
451 |
spinctrl = wx.SpinCtrl(self.ParamsEditor, |
846
26836e421e19
Fix ConfTreeNodeEditor parameters controls size on Windows
laurent
parents:
844
diff
changeset
|
452 |
size=wx.Size(300, -1), style=wx.SP_ARROW_KEYS|wx.ALIGN_RIGHT) |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
453 |
spinctrl.SetRange(scmin, scmax) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
454 |
boxsizer.AddWindow(spinctrl) |
738 | 455 |
if element_infos["value"] is not None: |
456 |
spinctrl.SetValue(element_infos["value"]) |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
457 |
spinctrl.Bind(wx.EVT_SPINCTRL, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
458 |
self.GetTextCtrlCallBackFunction(spinctrl, element_path), |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
459 |
spinctrl) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
460 |
|
738 | 461 |
else: |
462 |
if element_infos["type"] == "boolean": |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
463 |
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
|
464 |
boxsizer.AddWindow(checkbox) |
738 | 465 |
if element_infos["value"] is not None: |
466 |
checkbox.SetValue(element_infos["value"]) |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
467 |
checkbox.Bind(wx.EVT_CHECKBOX, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
468 |
self.GetCheckBoxCallBackFunction(checkbox, element_path), |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
469 |
checkbox) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
470 |
|
738 | 471 |
elif element_infos["type"] in ["unsignedLong", "long","integer"]: |
472 |
if element_infos["type"].startswith("unsigned"): |
|
473 |
scmin = 0 |
|
474 |
else: |
|
475 |
scmin = -(2**31) |
|
476 |
scmax = 2**31-1 |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
477 |
spinctrl = wx.SpinCtrl(self.ParamsEditor, |
846
26836e421e19
Fix ConfTreeNodeEditor parameters controls size on Windows
laurent
parents:
844
diff
changeset
|
478 |
size=wx.Size(300, -1), style=wx.SP_ARROW_KEYS|wx.ALIGN_RIGHT) |
738 | 479 |
spinctrl.SetRange(scmin, scmax) |
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
480 |
boxsizer.AddWindow(spinctrl) |
738 | 481 |
if element_infos["value"] is not None: |
482 |
spinctrl.SetValue(element_infos["value"]) |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
483 |
spinctrl.Bind(wx.EVT_SPINCTRL, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
484 |
self.GetTextCtrlCallBackFunction(spinctrl, element_path), |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
485 |
spinctrl) |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
486 |
|
738 | 487 |
else: |
488 |
choices = self.ParentWindow.GetConfigEntry(element_path, [""]) |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
489 |
textctrl = TextCtrlAutoComplete(name=element_infos["name"], |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
490 |
parent=self.ParamsEditor, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
491 |
appframe=self, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
492 |
choices=choices, |
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
493 |
element_path=element_path, |
846
26836e421e19
Fix ConfTreeNodeEditor parameters controls size on Windows
laurent
parents:
844
diff
changeset
|
494 |
size=wx.Size(300, -1)) |
738 | 495 |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
775
diff
changeset
|
496 |
boxsizer.AddWindow(textctrl) |
738 | 497 |
if element_infos["value"] is not None: |
498 |
textctrl.ChangeValue(str(element_infos["value"])) |
|
499 |
textctrl.Bind(wx.EVT_TEXT, self.GetTextCtrlCallBackFunction(textctrl, element_path)) |
|
500 |
first = False |
|
501 |
||
502 |
||
503 |
def GetItemChannelChangedFunction(self, dir): |
|
504 |
def OnConfNodeTreeItemChannelChanged(event): |
|
505 |
confnode_IECChannel = self.Controler.BaseParams.getIEC_Channel() |
|
506 |
res = self.SetConfNodeParamsAttribute("BaseParams.IEC_Channel", confnode_IECChannel + dir) |
|
507 |
wx.CallAfter(self.RefreshIECChannelControlsState) |
|
508 |
wx.CallAfter(self.ParentWindow._Refresh, TITLE, FILEMENU, PROJECTTREE) |
|
509 |
event.Skip() |
|
510 |
return OnConfNodeTreeItemChannelChanged |
|
511 |
||
512 |
def SetConfNodeParamsAttribute(self, *args, **kwargs): |
|
513 |
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
|
514 |
if StructChanged and self.ParamsEditor is not None: |
738 | 515 |
wx.CallAfter(self.RefreshConfNodeParamsSizer) |
516 |
wx.CallAfter(self.ParentWindow._Refresh, TITLE, FILEMENU) |
|
517 |
return res |
|
518 |
||
767
36e823a90d94
Adding support for push buttons (EVT_LEFT_DOWN is bind instead of EVT_BUTTON)
laurent
parents:
762
diff
changeset
|
519 |
def GetButtonCallBackFunction(self, method, push=False): |
738 | 520 |
""" Generate the callbackfunc for a given confnode method""" |
521 |
def OnButtonClick(event): |
|
522 |
# Disable button to prevent re-entrant call |
|
523 |
event.GetEventObject().Disable() |
|
524 |
# Call |
|
525 |
getattr(self.Controler,method)() |
|
526 |
# Re-enable button |
|
527 |
event.GetEventObject().Enable() |
|
528 |
||
767
36e823a90d94
Adding support for push buttons (EVT_LEFT_DOWN is bind instead of EVT_BUTTON)
laurent
parents:
762
diff
changeset
|
529 |
if not push: |
36e823a90d94
Adding support for push buttons (EVT_LEFT_DOWN is bind instead of EVT_BUTTON)
laurent
parents:
762
diff
changeset
|
530 |
event.Skip() |
738 | 531 |
return OnButtonClick |
532 |
||
533 |
def GetChoiceCallBackFunction(self, choicectrl, path): |
|
534 |
def OnChoiceChanged(event): |
|
535 |
res = self.SetConfNodeParamsAttribute(path, choicectrl.GetStringSelection()) |
|
536 |
choicectrl.SetStringSelection(res) |
|
537 |
event.Skip() |
|
538 |
return OnChoiceChanged |
|
539 |
||
540 |
def GetChoiceContentCallBackFunction(self, choicectrl, staticboxsizer, path): |
|
541 |
def OnChoiceContentChanged(event): |
|
542 |
res = self.SetConfNodeParamsAttribute(path, choicectrl.GetStringSelection()) |
|
746
2e09777a40d3
Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents:
744
diff
changeset
|
543 |
wx.CallAfter(self.RefreshConfNodeParamsSizer) |
738 | 544 |
event.Skip() |
545 |
return OnChoiceContentChanged |
|
546 |
||
746
2e09777a40d3
Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents:
744
diff
changeset
|
547 |
def GetTextCtrlCallBackFunction(self, textctrl, path, refresh=False): |
738 | 548 |
def OnTextCtrlChanged(event): |
549 |
res = self.SetConfNodeParamsAttribute(path, textctrl.GetValue()) |
|
550 |
if res != textctrl.GetValue(): |
|
844
ec9e6ef49878
Fixing bug when spinctrl new value is changed by ConfTreeNode
laurent
parents:
840
diff
changeset
|
551 |
if isinstance(textctrl, wx.SpinCtrl): |
ec9e6ef49878
Fixing bug when spinctrl new value is changed by ConfTreeNode
laurent
parents:
840
diff
changeset
|
552 |
textctrl.SetValue(res) |
ec9e6ef49878
Fixing bug when spinctrl new value is changed by ConfTreeNode
laurent
parents:
840
diff
changeset
|
553 |
else: |
ec9e6ef49878
Fixing bug when spinctrl new value is changed by ConfTreeNode
laurent
parents:
840
diff
changeset
|
554 |
textctrl.ChangeValue(res) |
746
2e09777a40d3
Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents:
744
diff
changeset
|
555 |
if refresh: |
738 | 556 |
wx.CallAfter(self.ParentWindow._Refresh, TITLE, FILEMENU, PROJECTTREE, PAGETITLES) |
557 |
wx.CallAfter(self.ParentWindow.SelectProjectTreeItem, self.GetTagName()) |
|
558 |
event.Skip() |
|
559 |
return OnTextCtrlChanged |
|
560 |
||
561 |
def GetCheckBoxCallBackFunction(self, chkbx, path): |
|
562 |
def OnCheckBoxChanged(event): |
|
563 |
res = self.SetConfNodeParamsAttribute(path, chkbx.IsChecked()) |
|
564 |
chkbx.SetValue(res) |
|
565 |
event.Skip() |
|
566 |
return OnCheckBoxChanged |
|
567 |
||
568 |
def GetBrowseCallBackFunction(self, name, textctrl, library, value_infos, path): |
|
569 |
infos = [value_infos] |
|
570 |
def OnBrowseButton(event): |
|
571 |
dialog = BrowseValuesLibraryDialog(self, name, library, infos[0]) |
|
572 |
if dialog.ShowModal() == wx.ID_OK: |
|
573 |
value, value_infos = self.SetConfNodeParamsAttribute(path, dialog.GetValueInfos()) |
|
574 |
textctrl.ChangeValue(value) |
|
575 |
infos[0] = value_infos |
|
576 |
dialog.Destroy() |
|
577 |
event.Skip() |
|
578 |
return OnBrowseButton |
|
579 |
||
840
980863738cf6
Fix scroll bug in ConfNode params panel when changing tab selection on Windows
Laurent Bessard
parents:
814
diff
changeset
|
580 |
def RefreshScrollbars(self): |
746
2e09777a40d3
Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents:
744
diff
changeset
|
581 |
self.ParamsEditor.GetBestSize() |
738 | 582 |
xstart, ystart = self.ParamsEditor.GetViewStart() |
583 |
window_size = self.ParamsEditor.GetClientSize() |
|
584 |
maxx, maxy = self.ParamsEditorSizer.GetMinSize() |
|
585 |
posx = max(0, min(xstart, (maxx - window_size[0]) / SCROLLBAR_UNIT)) |
|
586 |
posy = max(0, min(ystart, (maxy - window_size[1]) / SCROLLBAR_UNIT)) |
|
587 |
self.ParamsEditor.Scroll(posx, posy) |
|
588 |
self.ParamsEditor.SetScrollbars(SCROLLBAR_UNIT, SCROLLBAR_UNIT, |
|
589 |
maxx / SCROLLBAR_UNIT, maxy / SCROLLBAR_UNIT, posx, posy) |
|
840
980863738cf6
Fix scroll bug in ConfNode params panel when changing tab selection on Windows
Laurent Bessard
parents:
814
diff
changeset
|
590 |
|
980863738cf6
Fix scroll bug in ConfNode params panel when changing tab selection on Windows
Laurent Bessard
parents:
814
diff
changeset
|
591 |
def OnWindowResize(self, event): |
980863738cf6
Fix scroll bug in ConfNode params panel when changing tab selection on Windows
Laurent Bessard
parents:
814
diff
changeset
|
592 |
self.RefreshScrollbars() |
738 | 593 |
event.Skip() |
594 |
||
595 |
def OnMouseWheel(self, event): |
|
596 |
if self.ScrollingEnabled: |
|
597 |
event.Skip() |
|
598 |