1 | """ |
---|
2 | This software was developed by the University of Tennessee as part of the |
---|
3 | Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
4 | project funded by the US National Science Foundation. |
---|
5 | |
---|
6 | See the license text in license.txt |
---|
7 | |
---|
8 | copyright 2009, University of Tennessee |
---|
9 | """ |
---|
10 | |
---|
11 | """ |
---|
12 | Text controls for input/output of the main PrView panel |
---|
13 | """ |
---|
14 | |
---|
15 | import wx |
---|
16 | import os |
---|
17 | |
---|
18 | class PrTextCtrl(wx.TextCtrl): |
---|
19 | """ |
---|
20 | Text control for model and fit parameters. |
---|
21 | Binds the appropriate events for user interactions. |
---|
22 | """ |
---|
23 | def __init__(self, *args, **kwds): |
---|
24 | |
---|
25 | wx.TextCtrl.__init__(self, *args, **kwds) |
---|
26 | |
---|
27 | ## Set to True when the mouse is clicked while the whole string is selected |
---|
28 | full_selection = False |
---|
29 | ## Call back for EVT_SET_FOCUS events |
---|
30 | _on_set_focus_callback = None |
---|
31 | # Bind appropriate events |
---|
32 | self.Bind(wx.EVT_LEFT_UP, self._highlight_text) |
---|
33 | self.Bind(wx.EVT_SET_FOCUS, self._on_set_focus) |
---|
34 | |
---|
35 | def _on_set_focus(self, event): |
---|
36 | """ |
---|
37 | Catch when the text control is set in focus to highlight the whole |
---|
38 | text if necessary |
---|
39 | @param event: mouse event |
---|
40 | """ |
---|
41 | event.Skip() |
---|
42 | self.full_selection = True |
---|
43 | |
---|
44 | def _highlight_text(self, event): |
---|
45 | """ |
---|
46 | Highlight text of a TextCtrl only of no text has be selected |
---|
47 | @param event: mouse event |
---|
48 | """ |
---|
49 | # Make sure the mouse event is available to other listeners |
---|
50 | event.Skip() |
---|
51 | control = event.GetEventObject() |
---|
52 | if self.full_selection: |
---|
53 | self.full_selection = False |
---|
54 | # Check that we have a TextCtrl |
---|
55 | if issubclass(control.__class__, wx.TextCtrl): |
---|
56 | # Check whether text has been selected, |
---|
57 | # if not, select the whole string |
---|
58 | (start, end) = control.GetSelection() |
---|
59 | if start==end: |
---|
60 | control.SetSelection(-1,-1) |
---|
61 | |
---|
62 | class OutputTextCtrl(wx.TextCtrl): |
---|
63 | """ |
---|
64 | Text control used to display outputs. |
---|
65 | No editing allowed. The background is |
---|
66 | grayed out. User can't select text. |
---|
67 | """ |
---|
68 | def __init__(self, *args, **kwds): |
---|
69 | wx.TextCtrl.__init__(self, *args, **kwds) |
---|
70 | self.SetEditable(False) |
---|
71 | self.SetBackgroundColour(self.GetParent().GetBackgroundColour()) |
---|
72 | |
---|
73 | # Bind to mouse event to avoid text highlighting |
---|
74 | # The event will be skipped once the call-back |
---|
75 | # is called. |
---|
76 | self.Bind(wx.EVT_MOUSE_EVENTS, self._click) |
---|
77 | |
---|
78 | def _click(self, event): |
---|
79 | """ |
---|
80 | Prevent further handling of the mouse event |
---|
81 | by not calling Skip(). |
---|
82 | """ |
---|
83 | pass |
---|
84 | |
---|
85 | |
---|
86 | class DataFileTextCtrl(OutputTextCtrl): |
---|
87 | """ |
---|
88 | Text control used to display only the file name |
---|
89 | given a full path. |
---|
90 | |
---|
91 | TODO: now that we no longer choose the data file from the panel, |
---|
92 | it's no longer necessary to pass around the file path. That code |
---|
93 | should be refactored away and simplified. |
---|
94 | """ |
---|
95 | def __init__(self, *args, **kwds): |
---|
96 | OutputTextCtrl.__init__(self, *args, **kwds) |
---|
97 | self._complete_path = None |
---|
98 | |
---|
99 | def SetValue(self, value): |
---|
100 | """ |
---|
101 | Sets the file name given a path |
---|
102 | """ |
---|
103 | self._complete_path = str(value) |
---|
104 | file = os.path.basename(self._complete_path) |
---|
105 | OutputTextCtrl.SetValue(self, file) |
---|
106 | |
---|
107 | def GetValue(self): |
---|
108 | """ |
---|
109 | Return the full path |
---|
110 | """ |
---|
111 | return self._complete_path |
---|