1 | |
---|
2 | |
---|
3 | ################################################################################ |
---|
4 | #This software was developed by the University of Tennessee as part of the |
---|
5 | #Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
6 | #project funded by the US National Science Foundation. |
---|
7 | # |
---|
8 | #See the license text in license.txt |
---|
9 | # |
---|
10 | #copyright 2008, University of Tennessee |
---|
11 | ################################################################################ |
---|
12 | |
---|
13 | |
---|
14 | from sans.guiframe.events import PanelOnFocusEvent |
---|
15 | from sans.guiframe.events import EVT_NEW_BATCH |
---|
16 | import wx |
---|
17 | |
---|
18 | class PanelBase: |
---|
19 | """ |
---|
20 | Defines the API for a panels to work with |
---|
21 | the ViewerFrame toolbar and menu bar |
---|
22 | """ |
---|
23 | ## Internal nickname for the window, used by the AUI manager |
---|
24 | #window_name = "default" |
---|
25 | ## Name to appear on the window title bar |
---|
26 | #window_caption = "Welcome panel" |
---|
27 | ## Flag to tell the AUI manager to put this panel in the center pane |
---|
28 | group_id = None |
---|
29 | uid = None |
---|
30 | |
---|
31 | def __init__(self, parent=None): |
---|
32 | """ |
---|
33 | Initialize some flag that Viewerframe used |
---|
34 | """ |
---|
35 | #panel manager |
---|
36 | self._manager = None |
---|
37 | self.parent = parent |
---|
38 | if self.parent is not None and hasattr(self.parent, '_manager'): |
---|
39 | self._manager = self.parent._manager |
---|
40 | self._print_flag = False |
---|
41 | self._undo_flag = False |
---|
42 | self._redo_flag = False |
---|
43 | self._copy_flag = False |
---|
44 | self._paste_flag = False |
---|
45 | self._preview_flag = False |
---|
46 | self._bookmark_flag = False |
---|
47 | self._zoom_in_flag = False |
---|
48 | self._zoom_out_flag = False |
---|
49 | self._zoom_flag = False |
---|
50 | self._save_flag = False |
---|
51 | self._drag_flag = False |
---|
52 | self._reset_flag = False |
---|
53 | self._has_changed = False |
---|
54 | self.batch_on = False |
---|
55 | if self.parent is not None and hasattr(self.parent, "batch_on"): |
---|
56 | self.batch_on = self.parent.batch_on |
---|
57 | |
---|
58 | self.group_id = None |
---|
59 | self.Bind(EVT_NEW_BATCH, self.on_batch_selection) |
---|
60 | self.Bind(wx.EVT_LEFT_DOWN, self.on_set_focus) |
---|
61 | self.Bind(wx.EVT_TEXT_ENTER, self.on_set_focus) |
---|
62 | self.Bind(wx.EVT_MIDDLE_DOWN, self.on_set_focus) |
---|
63 | self.Bind(wx.EVT_RIGHT_DOWN, self.on_set_focus) |
---|
64 | self.SetFocus() |
---|
65 | |
---|
66 | def on_batch_selection(self, event): |
---|
67 | """ |
---|
68 | :param event: contains parameter enable . when enable is set to True |
---|
69 | the application is in Batch mode |
---|
70 | else the application is default mode(single mode) |
---|
71 | """ |
---|
72 | self.batch_on = event.enable |
---|
73 | def save_project(self, doc=None): |
---|
74 | """ |
---|
75 | return an xml node containing state of the panel |
---|
76 | that guiframe can write to file |
---|
77 | """ |
---|
78 | return None |
---|
79 | |
---|
80 | def has_changed(self): |
---|
81 | """ |
---|
82 | """ |
---|
83 | return self._has_changed |
---|
84 | |
---|
85 | def _set_print_flag(self, flag=True): |
---|
86 | """ |
---|
87 | The derivative class sets the print flag value to indicate that it can |
---|
88 | be printed |
---|
89 | """ |
---|
90 | if flag == self._print_flag: |
---|
91 | self._has_changed = False |
---|
92 | return |
---|
93 | self._has_changed = True |
---|
94 | self._print_flag = flag |
---|
95 | if self._manager is not None and self._manager.parent is not None: |
---|
96 | self._manager.parent.cpanel_on_focus = self |
---|
97 | self._manager.parent.enable_print() |
---|
98 | |
---|
99 | def get_print_flag(self): |
---|
100 | """ |
---|
101 | Get the print flag to update appropriately the tool bar |
---|
102 | """ |
---|
103 | return self._print_flag |
---|
104 | |
---|
105 | def _set_undo_flag(self, flag=True): |
---|
106 | """ |
---|
107 | The derivative class sets the undo flag value to indicate that the |
---|
108 | current action done can be canceled |
---|
109 | """ |
---|
110 | if flag == self._undo_flag: |
---|
111 | self._has_changed = False |
---|
112 | return |
---|
113 | self._has_changed = True |
---|
114 | self._undo_flag = flag |
---|
115 | if self._manager is not None and self._manager.parent is not None: |
---|
116 | self._manager.parent.cpanel_on_focus = self |
---|
117 | self._manager.parent.enable_undo() |
---|
118 | |
---|
119 | def get_undo_flag(self): |
---|
120 | """ |
---|
121 | Get the undo flag to update appropriately the tool bar |
---|
122 | """ |
---|
123 | return self._undo_flag |
---|
124 | |
---|
125 | def _set_redo_flag(self, flag=True): |
---|
126 | """ |
---|
127 | The derivative class sets the redo flag value to indicate that the |
---|
128 | action done can be recovered |
---|
129 | """ |
---|
130 | if flag == self._redo_flag: |
---|
131 | self._has_changed = False |
---|
132 | return |
---|
133 | self._has_changed = True |
---|
134 | self._redo_flag = flag |
---|
135 | if self._manager is not None and self._manager.parent is not None: |
---|
136 | self._manager.parent.cpanel_on_focus = self |
---|
137 | self._manager.parent.enable_redo() |
---|
138 | |
---|
139 | def get_redo_flag(self): |
---|
140 | """ |
---|
141 | Get the redo flag to update appropriately the tool bar |
---|
142 | """ |
---|
143 | return self._redo_flag |
---|
144 | |
---|
145 | def _set_copy_flag(self, flag=True): |
---|
146 | """ |
---|
147 | The derivative class sets the copy flag value to indicate that the |
---|
148 | action done can be recovered |
---|
149 | """ |
---|
150 | if flag == self._copy_flag: |
---|
151 | self._has_changed = False |
---|
152 | return |
---|
153 | self._has_changed = True |
---|
154 | self._copy_flag = flag |
---|
155 | if self._manager is not None and self._manager.parent is not None: |
---|
156 | self._manager.parent.cpanel_on_focus = self |
---|
157 | self._manager.parent.enable_copy() |
---|
158 | |
---|
159 | def get_copy_flag(self): |
---|
160 | """ |
---|
161 | Get the copy flag to update appropriately the tool bar |
---|
162 | """ |
---|
163 | return self._copy_flag |
---|
164 | |
---|
165 | def _set_paste_flag(self, flag=True): |
---|
166 | """ |
---|
167 | The derivative class sets the paste flag value to indicate that the |
---|
168 | action done can be recovered |
---|
169 | """ |
---|
170 | if flag == self._paste_flag: |
---|
171 | self._has_changed = False |
---|
172 | return |
---|
173 | self._has_changed = True |
---|
174 | self._paste_flag = flag |
---|
175 | if self._manager is not None and self._manager.parent is not None: |
---|
176 | self._manager.parent.cpanel_on_focus = self |
---|
177 | self._manager.parent.enable_paste() |
---|
178 | |
---|
179 | def get_paste_flag(self): |
---|
180 | """ |
---|
181 | Get the copy flag to update appropriately the tool bar |
---|
182 | """ |
---|
183 | return self._copy_flag |
---|
184 | |
---|
185 | def _set_zoomed_in_flag(self, flag=True): |
---|
186 | """ |
---|
187 | The derivative class sets the zoom in flag value to indicate that it |
---|
188 | can be zoomed in |
---|
189 | """ |
---|
190 | if self._zoom_in_flag == flag: |
---|
191 | self._has_changed = False |
---|
192 | return |
---|
193 | self._has_changed = True |
---|
194 | self._zoom_in_flag = flag |
---|
195 | if self._manager is not None and self._manager.parent is not None: |
---|
196 | self._manager.parent.cpanel_on_focus = self |
---|
197 | self._manager.parent.enable_zoom_in() |
---|
198 | |
---|
199 | def get_zoom_in_flag(self): |
---|
200 | """ |
---|
201 | Get the zoom in flag to update appropriately the tool bar |
---|
202 | """ |
---|
203 | return self._zoom_in_flag |
---|
204 | |
---|
205 | def _set_zoomed_out_flag(self, flag=True): |
---|
206 | """ |
---|
207 | The derivative class sets the zoom out flag value to indicate that it |
---|
208 | can be zoomed out |
---|
209 | """ |
---|
210 | if self._zoom_out_flag == flag: |
---|
211 | self._has_changed = False |
---|
212 | return |
---|
213 | self._has_changed = True |
---|
214 | self._zoom_out_flag = flag |
---|
215 | if self._manager is not None and self._manager.parent is not None: |
---|
216 | self._manager.parent.panel_on_focus = self |
---|
217 | self._manager.parent.enable_zoom_out() |
---|
218 | |
---|
219 | def get_zoom_out_flag(self): |
---|
220 | """ |
---|
221 | Get the zoom out flag to update appropriately the tool bar |
---|
222 | """ |
---|
223 | return self._zoom_out_flag |
---|
224 | |
---|
225 | def _set_zoom_flag(self, flag=True): |
---|
226 | """ |
---|
227 | The derivative class sets the zoom flag value to indicate that it |
---|
228 | can be zoomed |
---|
229 | """ |
---|
230 | if flag == self._zoom_flag: |
---|
231 | self._has_changed = False |
---|
232 | return |
---|
233 | self._has_changed = True |
---|
234 | self._zoom_flag = flag |
---|
235 | if self._manager is not None and self._manager.parent is not None: |
---|
236 | self._manager.parent.cpanel_on_focus = self |
---|
237 | self._manager.parent.enable_zoom() |
---|
238 | |
---|
239 | def get_zoom_flag(self): |
---|
240 | """ |
---|
241 | Get the zoom flag to update appropriately the tool bar |
---|
242 | """ |
---|
243 | return self._zoom_flag |
---|
244 | |
---|
245 | def _set_bookmark_flag(self, flag=True): |
---|
246 | """ |
---|
247 | The derivative class sets the bookmark flag value to indicate that it |
---|
248 | can be bookmarked |
---|
249 | """ |
---|
250 | if flag == self._bookmark_flag: |
---|
251 | self._has_changed = False |
---|
252 | return |
---|
253 | self._has_changed = True |
---|
254 | self._bookmark_flag = flag |
---|
255 | if self._manager is not None and self._manager.parent is not None: |
---|
256 | self._manager.parent.cpanel_on_focus = self |
---|
257 | self._manager.parent.enable_bookmark() |
---|
258 | |
---|
259 | def get_bookmark_flag(self): |
---|
260 | """ |
---|
261 | Get the bookmark flag to update appropriately the tool bar |
---|
262 | """ |
---|
263 | return self._bookmark_flag |
---|
264 | |
---|
265 | def _set_preview_flag(self, flag=True): |
---|
266 | """ |
---|
267 | The derivative class sets the preview flag value to indicate that it |
---|
268 | can be previewed |
---|
269 | """ |
---|
270 | if flag == self._preview_flag: |
---|
271 | self._has_changed = False |
---|
272 | return |
---|
273 | self._has_changed = True |
---|
274 | self._preview_flag = flag |
---|
275 | if self._manager is not None and self._manager.parent is not None: |
---|
276 | self._manager.parent.cpanel_on_focus = self |
---|
277 | self._manager.parent.enable_preview() |
---|
278 | |
---|
279 | def get_preview_flag(self): |
---|
280 | """ |
---|
281 | Get the preview flag to update appropriately the tool bar |
---|
282 | """ |
---|
283 | return self._preview_flag |
---|
284 | |
---|
285 | def _set_save_flag(self, flag=True): |
---|
286 | """ |
---|
287 | The derivative class sets the drag flag value to indicate that it |
---|
288 | can be saved |
---|
289 | """ |
---|
290 | if flag == self._save_flag: |
---|
291 | self._has_changed = False |
---|
292 | return |
---|
293 | self._has_changed = True |
---|
294 | self._save_flag = flag |
---|
295 | if self._manager is not None and self._manager.parent is not None: |
---|
296 | self._manager.parent.cpanel_on_focus = self |
---|
297 | self._manager.parent.enable_save() |
---|
298 | |
---|
299 | def get_save_flag(self): |
---|
300 | """ |
---|
301 | Get the save flag to update appropriately the tool bar |
---|
302 | """ |
---|
303 | return self._save_flag |
---|
304 | |
---|
305 | def _set_drag_flag(self, flag=True): |
---|
306 | """ |
---|
307 | The derivative class sets the drag flag value to indicate that |
---|
308 | dragging motion is possible |
---|
309 | """ |
---|
310 | if self._drag_flag == flag: |
---|
311 | self._has_changed = False |
---|
312 | return |
---|
313 | self._has_changed = True |
---|
314 | self._drag_flag = flag |
---|
315 | if self._manager is not None and self._manager.parent is not None: |
---|
316 | self._manager.parent.cpanel_on_focus = self |
---|
317 | self._manager.parent.enable_drag() |
---|
318 | |
---|
319 | def get_drag_flag(self): |
---|
320 | """ |
---|
321 | Get the drag flag to update appropriately the tool bar |
---|
322 | """ |
---|
323 | return self._drag_flag |
---|
324 | |
---|
325 | def _set_reset_flag(self, flag=True): |
---|
326 | """ |
---|
327 | The derivative class sets the reset flag value to indicate that it |
---|
328 | can be reset |
---|
329 | """ |
---|
330 | if self._reset_flag == flag: |
---|
331 | self._has_changed = False |
---|
332 | return |
---|
333 | self._has_changed = True |
---|
334 | self._reset_flag = flag |
---|
335 | if self._manager is not None and self._manager.parent is not None: |
---|
336 | self._manager.parent.cpanel_on_focus = self |
---|
337 | self._manager.parent.enable_reset() |
---|
338 | |
---|
339 | def get_reset_flag(self): |
---|
340 | """ |
---|
341 | Get the reset flag to update appropriately the tool bar |
---|
342 | """ |
---|
343 | return self._reset_flag |
---|
344 | |
---|
345 | def on_reset(self, event): |
---|
346 | """ |
---|
347 | The derivative class state is restored |
---|
348 | """ |
---|
349 | def on_drag(self, event): |
---|
350 | """ |
---|
351 | The derivative class allows dragging motion if implemented |
---|
352 | """ |
---|
353 | def on_preview(self, event): |
---|
354 | """ |
---|
355 | Display a printable version of the class derivative |
---|
356 | """ |
---|
357 | def on_save(self, event): |
---|
358 | """ |
---|
359 | The state of the derivative class is restored |
---|
360 | """ |
---|
361 | def on_redo(self, event): |
---|
362 | """ |
---|
363 | The previous action is restored if possible |
---|
364 | """ |
---|
365 | def on_undo(self, event): |
---|
366 | """ |
---|
367 | The current action is canceled |
---|
368 | """ |
---|
369 | def on_copy(self, event): |
---|
370 | """ |
---|
371 | The copy action if possible |
---|
372 | """ |
---|
373 | def on_paste(self, event): |
---|
374 | """ |
---|
375 | The paste action if possible |
---|
376 | """ |
---|
377 | def on_bookmark(self, event): |
---|
378 | """ |
---|
379 | The derivative class is on bookmark mode if implemented |
---|
380 | """ |
---|
381 | def on_zoom_in(self, event): |
---|
382 | """ |
---|
383 | The derivative class is on zoom in mode if implemented |
---|
384 | """ |
---|
385 | def on_zoom_out(self, event): |
---|
386 | """ |
---|
387 | The derivative class is on zoom out mode if implemented |
---|
388 | """ |
---|
389 | def on_zoom(self, event): |
---|
390 | """ |
---|
391 | The derivative class is on zoom mode (using pane) |
---|
392 | if zoom mode is implemented |
---|
393 | """ |
---|
394 | def on_set_focus(self, event=None): |
---|
395 | """ |
---|
396 | The derivative class is on focus if implemented |
---|
397 | """ |
---|
398 | if self.parent is not None: |
---|
399 | wx.PostEvent(self.parent, PanelOnFocusEvent(panel=self)) |
---|
400 | |
---|
401 | def on_kill_focus(self, event=None): |
---|
402 | """ |
---|
403 | The derivative class is on unfocus if implemented |
---|
404 | """ |
---|
405 | pass |
---|
406 | |
---|
407 | def get_data(self): |
---|
408 | """ |
---|
409 | return list of current data |
---|
410 | """ |
---|
411 | return |
---|
412 | |
---|
413 | def get_state(self): |
---|
414 | """ |
---|
415 | return the current state |
---|
416 | """ |
---|
417 | return |
---|
418 | |
---|
419 | def set_manager(self, manager): |
---|
420 | """ |
---|
421 | """ |
---|
422 | self._manager = manager |
---|
423 | |
---|
424 | def get_manager(self): |
---|
425 | """ |
---|
426 | """ |
---|
427 | return self._manager |
---|