1999-04-30 03:29:54 +00:00
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
import wx
|
1999-04-30 03:29:54 +00:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
2004-08-10 01:21:16 +00:00
|
|
|
class TestPanel(wx.Panel):
|
|
|
|
def __init__(self, parent, log):
|
|
|
|
self.log = log
|
|
|
|
wx.Panel.__init__(self, parent, -1)
|
|
|
|
|
|
|
|
b = wx.Button(self, -1, "Create and Show a DirDialog", (50,50))
|
|
|
|
self.Bind(wx.EVT_BUTTON, self.OnButton, b)
|
|
|
|
|
|
|
|
|
|
|
|
def OnButton(self, evt):
|
|
|
|
# In this case we include a "New directory" button.
|
|
|
|
dlg = wx.DirDialog(self, "Choose a directory:",
|
|
|
|
style=wx.DD_DEFAULT_STYLE|wx.DD_NEW_DIR_BUTTON)
|
|
|
|
|
|
|
|
# If the user selects OK, then we process the dialog's data.
|
|
|
|
# This is done by getting the path data from the dialog - BEFORE
|
|
|
|
# we destroy it.
|
|
|
|
if dlg.ShowModal() == wx.ID_OK:
|
|
|
|
self.log.WriteText('You selected: %s\n' % dlg.GetPath())
|
|
|
|
|
|
|
|
# Only destroy a dialog after you're done with it.
|
|
|
|
dlg.Destroy()
|
2003-12-09 01:23:28 +00:00
|
|
|
|
|
|
|
|
2004-08-10 01:21:16 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
def runTest(frame, nb, log):
|
|
|
|
win = TestPanel(nb, log)
|
|
|
|
return win
|
|
|
|
|
1999-04-30 03:29:54 +00:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-08-10 01:21:16 +00:00
|
|
|
|
1999-04-30 03:29:54 +00:00
|
|
|
overview = """\
|
2003-12-09 01:23:28 +00:00
|
|
|
This class represents the directory chooser dialog. It is used when all you
|
|
|
|
need from the user is the name of a directory. Data is retrieved via utility
|
|
|
|
methods; see the <code>DirDialog</code> documentation for specifics.
|
2002-06-05 16:45:04 +00:00
|
|
|
"""
|
1999-04-30 03:29:54 +00:00
|
|
|
|
|
|
|
|
2002-06-05 16:45:04 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys,os
|
|
|
|
import run
|
2004-03-05 00:06:33 +00:00
|
|
|
run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])
|
1999-04-30 03:29:54 +00:00
|
|
|
|