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
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def runTest(frame, nb, log):
|
2003-12-09 01:23:28 +00:00
|
|
|
dlg = wx.SingleChoiceDialog(
|
|
|
|
frame, 'Test Single Choice', 'The Caption',
|
|
|
|
['zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight'],
|
|
|
|
wx.CHOICEDLG_STYLE
|
|
|
|
)
|
|
|
|
|
|
|
|
if dlg.ShowModal() == wx.ID_OK:
|
1999-04-30 03:29:54 +00:00
|
|
|
log.WriteText('You selected: %s\n' % dlg.GetStringSelection())
|
2003-12-09 01:23:28 +00:00
|
|
|
|
1999-04-30 03:29:54 +00:00
|
|
|
dlg.Destroy()
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-07-02 23:13:10 +00:00
|
|
|
overview = """\
|
|
|
|
This class represents a dialog that shows a list of strings, and allows the user
|
|
|
|
to select one. Double-clicking on a list item is equivalent to single-clicking
|
|
|
|
and then pressing OK.
|
1999-04-30 03:29:54 +00:00
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
As with all dialogs, be sure to retrieve the information you need BEFORE you
|
|
|
|
destroy the dialog.
|
2003-07-02 23:13:10 +00:00
|
|
|
"""
|
1999-04-30 03:29:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2003-07-02 23:13:10 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys,os
|
|
|
|
import run
|
|
|
|
run.main(['', os.path.basename(sys.argv[0])])
|
2001-05-18 21:59:59 +00:00
|
|
|
|