]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/ImageBrowser.py
1 #----------------------------------------------------------------------------
2 # Name: ImageBrowser.py
3 # Purpose: Image Selection dialog for wxPython demo
5 # Author: Lorne White (email: lorne.white@telusplanet.net)
9 # Licence: wxWindows license
10 #----------------------------------------------------------------------------
15 import wx
.lib
.imagebrowser
as ib
16 #---------------------------------------------------------------------------
18 def runTest(frame
, nb
, log
):
19 # get current working directory
22 # set the initial directory for the demo bitmaps
23 initial_dir
= os
.path
.join(dir, 'bitmaps')
25 # open the image browser dialog
26 win
= ib
.ImageDialog(frame
, initial_dir
)
30 if win
.ShowModal() == wx
.ID_OK
:
31 # show the selected file
32 log
.WriteText("You Selected File: " + win
.GetFile())
34 log
.WriteText("You pressed Cancel\n")
38 #---------------------------------------------------------------------------
44 if __name__
== '__main__':
47 run
.main(['', os
.path
.basename(sys
.argv
[0])] + sys
.argv
[1:])