1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 """Module containing a set of special GUI elements to be used in the relax wizards."""
24
25
26 import wx
27
28
29 import dep_check
30 from graphics import fetch_icon
31 from gui.filedialog import RelaxDirDialog
32 from gui.fonts import font
33 from gui.string_conv import gui_to_str, str_to_gui
34 from lib.errors import RelaxError
35 from status import Status; status = Status()
36
37
39 """Wizard GUI element for selecting directories."""
40
41 - def __init__(self, name=None, default=None, parent=None, sizer=None, desc=None, message='File selection', style=wx.FD_DEFAULT_STYLE, tooltip=None, divider=None, padding=0, spacer=None, height_element=27, read_only=False):
42 """Build the file selection element.
43
44 @keyword name: The name of the element to use in titles, etc.
45 @type name: str
46 @keyword default: The default value of the element.
47 @type default: str
48 @keyword parent: The wizard GUI element.
49 @type parent: wx.Panel instance
50 @keyword sizer: The sizer to put the input field into.
51 @type sizer: wx.Sizer instance
52 @keyword desc: The text description.
53 @type desc: str
54 @keyword message: The file selector prompt string.
55 @type message: String
56 @keyword style: The dialog style. To open a single file, set to wx.FD_OPEN. To open multiple files, set to wx.FD_OPEN|wx.FD_MULTIPLE. To save a single file, set to wx.FD_SAVE. To save multiple files, set to wx.FD_SAVE|wx.FD_MULTIPLE.
57 @type style: long
58 @keyword tooltip: The tooltip which appears on hovering over all the GUI elements.
59 @type tooltip: str
60 @keyword divider: The position of the divider.
61 @type divider: int
62 @keyword padding: Spacing to the left and right of the widgets.
63 @type padding: int
64 @keyword spacer: The amount of spacing to add below the field in pixels. If None, a stretchable spacer will be used.
65 @type spacer: None or int
66 @keyword height_element: The height in pixels of the GUI element.
67 @type height_element: int
68 @keyword read_only: A flag which if True means that the text of the element cannot be edited.
69 @type read_only: bool
70 """
71
72
73 self.name = name
74
75
76 if default == None:
77 default = wx.EmptyString
78
79
80 sub_sizer = wx.BoxSizer(wx.HORIZONTAL)
81
82
83 sub_sizer.AddSpacer(padding)
84
85
86 text = wx.StaticText(parent, -1, desc, style=wx.ALIGN_LEFT)
87 text.SetFont(font.normal)
88 sub_sizer.Add(text, 0, wx.LEFT|wx.ALIGN_CENTER_VERTICAL, 0)
89
90
91 if not divider:
92 raise RelaxError("The divider position has not been supplied.")
93
94
95 dc = wx.ScreenDC()
96 dc.SetFont(font.normal)
97 x, y = dc.GetTextExtent(desc)
98 if dep_check.wx_classic:
99 sub_sizer.AddSpacer((divider - x, 0))
100 else:
101 sub_sizer.AddSpacer(int(divider - x))
102
103
104 self._field = wx.TextCtrl(parent, -1, default)
105 self._field.SetMinSize((-1, height_element))
106 self._field.SetFont(font.normal)
107 sub_sizer.Add(self._field, 1, wx.ADJUST_MINSIZE|wx.ALIGN_CENTER_VERTICAL, 0)
108
109
110 obj = RelaxDirDialog(parent, field=self._field, message=message, defaultPath=default, style=style)
111
112
113 sub_sizer.AddSpacer(5)
114
115
116 button = wx.BitmapButton(parent, -1, wx.Bitmap(fetch_icon('oxygen.actions.document-open-folder'), wx.BITMAP_TYPE_ANY))
117 button.SetMinSize((-1, height_element))
118 button.SetToolTip(wx.ToolTip("Select the directory."))
119 sub_sizer.Add(button, 0, wx.ADJUST_MINSIZE|wx.ALIGN_CENTER_VERTICAL, 0)
120 parent.Bind(wx.EVT_BUTTON, obj.select_event, button)
121
122
123 sub_sizer.AddSpacer(padding)
124
125
126 sizer.Add(sub_sizer, 1, wx.EXPAND|wx.ALL, 0)
127
128
129 if spacer == None:
130 sizer.AddStretchSpacer()
131 else:
132 sizer.AddSpacer(spacer)
133
134
135 if tooltip:
136 text.SetToolTip(wx.ToolTip(tooltip))
137 self._field.SetToolTip(wx.ToolTip(tooltip))
138
139
141 """Special method for clearing or resetting the GUI element."""
142
143
144 self._field.Clear()
145
146
148 """Special method for returning the value of the GUI element.
149
150 @return: The string value.
151 @rtype: list of str
152 """
153
154
155 return gui_to_str(self._field.GetValue())
156
157
159 """Special method for setting the value of the GUI element.
160
161 @param value: The value to set.
162 @type value: str
163 """
164
165
166 self._field.SetValue(str_to_gui(value))
167