1 #----------------------------------------------------------------------
2 # Name: wxPython.lib.filebrowsebutton
3 # Purpose: Composite controls that provide a Browse button next to
4 # either a wxTextCtrl or a wxComboBox. The Browse button
5 # launches a wxFileDialog and loads the result into the
8 # Author: Mike Fletcher
11 # Copyright: (c) 2000 by Total Control Software
12 # Licence: wxWindows license
13 #----------------------------------------------------------------------
15 from wxPython
.wx
import *
18 #----------------------------------------------------------------------
20 class FileBrowseButton(wxPanel
):
21 """ A control to allow the user to type in a filename
22 or browse with the standard file dialog to select file
25 parent, id, pos, size -- passed directly to wxPanel initialisation
26 style = wxTAB_TRAVERSAL -- passed directly to wxPanel initialisation
27 labelText -- Text for label to left of text field
28 buttonText -- Text for button which launches the file dialog
30 dialogTitle -- Title used in file dialog
31 startDirectory -- Default directory for file dialog startup
32 fileMask -- File mask (glob pattern, such as *.*) to use in file dialog
33 fileMode -- wxOPEN or wxSAVE, indicates type of file dialog to use
34 changeCallback -- callback receives all > > changes in value of control
36 GetValue() -- retrieve current value of text control
37 SetValue(string) -- set current value of text control
38 label -- pointer to internal label widget
39 textControl -- pointer to internal text control
40 browseButton -- pointer to button
42 def __init__ (self
, parent
, id= -1,
43 pos
= wxDefaultPosition
, size
= wxDefaultSize
,
44 style
= wxTAB_TRAVERSAL
,
45 labelText
= "File Entry:",
47 toolTip
= "Type filename or click browse to choose file",
48 # following are the values for a file dialog box
49 dialogTitle
= "Choose a file",
54 # callback for when value changes (optional)
55 changeCallback
= lambda x
:x
58 self
.labelText
= labelText
59 self
.buttonText
= buttonText
60 self
.toolTip
= toolTip
61 self
.dialogTitle
= dialogTitle
62 self
.startDirectory
= startDirectory
63 self
.initialValue
= initialValue
64 self
.fileMask
= fileMask
65 self
.fileMode
= fileMode
66 self
.changeCallback
= changeCallback
67 self
.callCallback
= true
70 # get background to match it
72 self
._bc
= parent
.GetBackgroundColour()
77 self
.createDialog(parent
, id, pos
, size
, style
)
78 # Setting a value causes the changeCallback to be called.
79 # In this case that would be before the return of the
80 # constructor. Not good. So a default value on
81 # SetValue is used to disable the callback
82 self
.SetValue( initialValue
, 0)
84 def createDialog( self
, parent
, id, pos
, size
, style
):
85 """Setup the graphic representation of the dialog"""
86 wxPanel
.__init
__ (self
, parent
, id, pos
, size
, style
)
87 # try to set the background colour
89 self
.SetBackgroundColour(self
._bc
)
92 box
= wxBoxSizer(wxHORIZONTAL
)
94 self
.label
= self
.createLabel( )
95 box
.Add( self
.label
, 0, wxCENTER
)
97 self
.textControl
= self
.createTextControl()
98 box
.Add( self
.textControl
, 1, wxLEFT|wxCENTER
, 5)
100 self
.browseButton
= self
.createBrowseButton()
101 box
.Add( self
.browseButton
, 0, wxCENTER
)
103 # add a border around the whole thing and resize the panel to fit
104 outsidebox
= wxBoxSizer(wxVERTICAL
)
105 outsidebox
.Add(box
, 1, wxEXPAND|wxALL
, 3)
108 self
.SetAutoLayout(true
)
109 self
.SetSizer( outsidebox
)
111 if size
.width
!= -1 or size
.height
!= -1:
114 def SetBackgroundColour(self
,color
):
115 wxPanel
.SetBackgroundColour(self
,color
)
116 self
.label
.SetBackgroundColour(color
)
118 def createLabel( self
):
119 """Create the label/caption"""
120 label
= wxStaticText(self
, -1, self
.labelText
, style
=wxALIGN_RIGHT
)
121 font
= label
.GetFont()
122 w
, h
, d
, e
= self
.GetFullTextExtent(self
.labelText
, font
)
123 label
.SetSize(wxSize(w
+5, h
))
126 def createTextControl( self
):
127 """Create the text control"""
129 textControl
= wxTextCtrl(self
, ID
)
130 textControl
.SetToolTipString( self
.toolTip
)
131 if self
.changeCallback
:
132 EVT_TEXT(textControl
, ID
, self
.OnChanged
)
133 EVT_COMBOBOX(textControl
, ID
, self
.OnChanged
)
136 def OnChanged(self
, evt
):
137 if self
.callCallback
:
138 self
.changeCallback(evt
)
140 def createBrowseButton( self
):
141 """Create the browse-button control"""
143 button
=wxButton(self
, ID
, self
.buttonText
)
144 button
.SetToolTipString( self
.toolTip
)
145 EVT_BUTTON(button
, ID
, self
.OnBrowse
)
149 def OnBrowse (self
, event
= None):
150 """ Going to browse for file... """
151 current
= self
.GetValue()
152 directory
= os
.path
.split(current
)
153 if os
.path
.isdir( current
):
156 elif directory
and os
.path
.isdir( directory
[0] ):
157 current
= directory
[1]
158 directory
= directory
[0]
160 directory
= self
.startDirectory
161 dlg
= wxFileDialog(self
, self
.dialogTitle
, directory
, current
, self
.fileMask
, self
.fileMode
)
163 if dlg
.ShowModal() == wxID_OK
:
164 self
.SetValue (dlg
.GetPath())
170 """ Convenient access to text control value """
171 return self
.textControl
.GetValue ()
173 def SetValue (self
, value
, callBack
=1):
174 """ Convenient setting of text control value """
175 save
= self
.callCallback
176 self
.callCallback
= callBack
177 self
.textControl
.SetValue(value
)
178 self
.callCallback
= save
181 def Enable (self
, value
):
182 """ Convenient enabling/disabling of entire control """
183 self
.label
.Enable (value
)
184 self
.textControl
.Enable (value
)
185 return self
.browseButton
.Enable (value
)
187 def GetLabel( self
):
188 """ Retrieve the label's current text """
189 return self
.label
.GetLabel()
191 def SetLabel( self
, value
):
192 """ Set the label's current text """
193 rvalue
= self
.label
.SetLabel( value
)
199 class FileBrowseButtonWithHistory( FileBrowseButton
):
200 """ with following additions:
201 __init__(..., history=None)
203 history -- optional list of paths for initial history drop-down
204 (must be passed by name, not a positional argument)
205 If history is callable it will must return a list used
206 for the history drop-down
207 changeCallback -- as for FileBrowseButton, but with a work-around
208 for win32 systems which don't appear to create EVT_COMBOBOX
209 events properly. There is a (slight) chance that this work-around
210 will cause some systems to create two events for each Combobox
211 selection. If you discover this condition, please report it!
212 As for a FileBrowseButton.__init__ otherwise.
214 Return reference to the control which implements interfaces
215 required for manipulating the history list. See GetHistoryControl
216 documentation for description of what that interface is.
218 Return current history list
219 SetHistory( value=(), selectionIndex = None )
220 Set current history list, if selectionIndex is not None, select that index
222 def __init__( self
, *arguments
, **namedarguments
):
223 self
.history
= namedarguments
.get( "history" )
225 del namedarguments
["history"]
227 self
.historyCallBack
=None
228 if callable(self
.history
):
229 self
.historyCallBack
=self
.history
231 apply( FileBrowseButton
.__init
__, ( self
,)+arguments
, namedarguments
)
233 def createTextControl( self
):
234 """Create the text control"""
236 textControl
= wxComboBox(self
, ID
, style
= wxCB_DROPDOWN
)
237 textControl
.SetToolTipString( self
.toolTip
)
238 EVT_SET_FOCUS(textControl
, self
.OnSetFocus
)
239 if self
.changeCallback
:
240 EVT_TEXT(textControl
, ID
, self
.changeCallback
)
241 EVT_COMBOBOX(textControl
, ID
, self
.changeCallback
)
245 self
.SetHistory( history
, control
=textControl
)
248 def GetHistoryControl( self
):
249 """Return a pointer to the control which provides (at least)
250 the following methods for manipulating the history list.:
251 Append( item ) -- add item
252 Clear() -- clear all items
253 Delete( index ) -- 0-based index to delete from list
254 SetSelection( index ) -- 0-based index to select in list
255 Semantics of the methods follow those for the wxComboBox control
257 return self
.textControl
259 def SetHistory( self
, value
=(), selectionIndex
= None, control
=None ):
260 """Set the current history list"""
262 control
= self
.GetHistoryControl()
263 if self
.history
== value
:
266 # Clear history values not the selected one.
267 tempValue
=control
.GetValue()
268 # clear previous values
270 control
.SetValue(tempValue
)
271 # walk through, appending new values
273 control
.Append( path
)
274 if selectionIndex
is not None:
275 control
.SetSelection( selectionIndex
)
277 def GetHistory( self
):
278 """Return the current history list"""
279 if self
.historyCallBack
!= None:
280 return self
.historyCallBack()
282 return list( self
.history
)
284 def OnSetFocus(self
, event
):
285 """When the history scroll is selected, update the history"""
286 if self
.historyCallBack
!= None:
287 self
.SetHistory( self
.historyCallBack(), control
=self
.textControl
)
290 if wxPlatform
== "__WXMSW__":
291 def SetValue (self
, value
, callBack
=1):
292 """ Convenient setting of text control value, works
293 around limitation of wxComboBox """
294 save
= self
.callCallback
295 self
.callCallback
= callBack
296 self
.textControl
.SetValue(value
)
297 self
.callCallback
= save
299 # Hack to call an event handler
301 def __init__(self
, string
):
306 # The callback wasn't being called when SetValue was used ??
307 # So added this explicit call to it
308 self
.changeCallback(LocalEvent(value
))
311 class DirBrowseButton(FileBrowseButton
):
312 def __init__(self
, parent
, id = -1,
313 pos
= wxDefaultPosition
, size
= wxDefaultSize
,
314 style
= wxTAB_TRAVERSAL
,
315 labelText
= 'Select a directory:',
316 buttonText
= 'Browse',
317 toolTip
= 'Type directory name or browse to select',
319 startDirectory
= '.',
320 changeCallback
= None,
321 dialogClass
= wxDirDialog
):
322 FileBrowseButton
.__init
__(self
, parent
, id, pos
, size
, style
,
323 labelText
, buttonText
, toolTip
,
324 dialogTitle
, startDirectory
,
325 changeCallback
= changeCallback
)
327 self
._dirDialog
= dialogClass(self
,
328 message
= dialogTitle
,
329 defaultPath
= startDirectory
)
331 def OnBrowse(self
, ev
= None):
332 dialog
= self
._dirDialog
333 if dialog
.ShowModal() == wxID_OK
:
334 self
.SetValue(dialog
.GetPath())
337 if self
.__dict
__.has_key('_dirDialog'):
338 self
._dirDialog
.Destroy()
341 #----------------------------------------------------------------------
344 if __name__
== "__main__":
345 #from skeletonbuilder import rulesfile
346 class SimpleCallback
:
347 def __init__( self
, tag
):
349 def __call__( self
, event
):
350 print self
.tag
, event
.GetString()
351 class DemoFrame( wxFrame
):
352 def __init__(self
, parent
):
353 wxFrame
.__init
__(self
, parent
, 2400, "File entry with browse", size
=(500,260) )
354 EVT_CLOSE(self
, self
.OnCloseWindow
)
355 panel
= wxPanel (self
,-1)
356 innerbox
= wxBoxSizer(wxVERTICAL
)
357 control
= FileBrowseButton(
359 initialValue
= "z:\\temp",
361 innerbox
.Add( control
, 0, wxEXPAND
)
362 middlecontrol
= FileBrowseButtonWithHistory(
364 labelText
= "With History",
365 initialValue
= "d:\\temp",
366 history
= ["c:\\temp", "c:\\tmp", "r:\\temp","z:\\temp"],
367 changeCallback
= SimpleCallback( "With History" ),
369 innerbox
.Add( middlecontrol
, 0, wxEXPAND
)
370 middlecontrol
= FileBrowseButtonWithHistory(
372 labelText
= "History callback",
373 initialValue
= "d:\\temp",
374 history
= self
.historyCallBack
,
375 changeCallback
= SimpleCallback( "History callback" ),
377 innerbox
.Add( middlecontrol
, 0, wxEXPAND
)
378 self
.bottomcontrol
= control
= FileBrowseButton(
380 labelText
= "With Callback",
381 style
= wxSUNKEN_BORDER|wxCLIP_CHILDREN
,
382 changeCallback
= SimpleCallback( "With Callback" ),
384 innerbox
.Add( control
, 0, wxEXPAND
)
385 self
.bottommostcontrol
= control
= DirBrowseButton(
387 labelText
= "Simple dir browse button",
388 style
= wxSUNKEN_BORDER|wxCLIP_CHILDREN
)
389 innerbox
.Add( control
, 0, wxEXPAND
)
391 innerbox
.Add( wxButton( panel
, ID
,"Change Label", ), 1, wxEXPAND
)
392 EVT_BUTTON( self
, ID
, self
.OnChangeLabel
)
394 innerbox
.Add( wxButton( panel
, ID
,"Change Value", ), 1, wxEXPAND
)
395 EVT_BUTTON( self
, ID
, self
.OnChangeValue
)
396 panel
.SetAutoLayout(true
)
397 panel
.SetSizer( innerbox
)
398 self
.history
={"c:\\temp":1, "c:\\tmp":1, "r:\\temp":1,"z:\\temp":1}
400 def historyCallBack(self
):
401 keys
=self
.history
.keys()
405 def OnFileNameChangedHistory (self
, event
):
406 self
.history
[event
.GetString ()]=1
408 def OnCloseMe(self
, event
):
410 def OnChangeLabel( self
, event
):
411 self
.bottomcontrol
.SetLabel( "Label Updated" )
412 def OnChangeValue( self
, event
):
413 self
.bottomcontrol
.SetValue( "r:\\somewhere\\over\\the\\rainbow.htm" )
415 def OnCloseWindow(self
, event
):
418 class DemoApp(wxApp
):
420 wxImage_AddHandler(wxJPEGHandler())
421 wxImage_AddHandler(wxPNGHandler())
422 wxImage_AddHandler(wxGIFHandler())
423 frame
= DemoFrame(NULL
)
424 #frame = RulesPanel(NULL )
426 self
.SetTopWindow(frame
)
432 print 'Creating dialog'