]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/wxColourDialog.py
fixed wxWindow::SetCursor( wxNullCursor) for mac
[wxWidgets.git] / wxPython / demo / wxColourDialog.py
CommitLineData
cf694132
RD
1
2from wxPython.wx import *
3
4#---------------------------------------------------------------------------
5
6def runTest(frame, nb, log):
1b62f00d
RD
7 dlg = wxColourDialog(frame)
8 dlg.GetColourData().SetChooseFull(true)
cf694132
RD
9 if dlg.ShowModal() == wxID_OK:
10 data = dlg.GetColourData()
11 log.WriteText('You selected: %s\n' % str(data.GetColour().Get()))
12 dlg.Destroy()
13
14#---------------------------------------------------------------------------
15
16
17
18
19
20
21
22
23
24
25
26
27overview = """\
28This class represents the colour chooser dialog.
29
30wxColourDialog()
31------------------------------
32
33wxColourDialog(wxWindow* parent, wxColourData* data = NULL)
34
35Constructor. Pass a parent window, and optionally a pointer to a block of colour data, which will be copied to the colour dialog's colour data.
36
37"""