]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/wxFontDialog.py
Added wxGenericDirCtrl and other varioius updates
[wxWidgets.git] / wxPython / demo / wxFontDialog.py
CommitLineData
cf694132
RD
1
2from wxPython.wx import *
3
4#---------------------------------------------------------------------------
5
6def runTest(frame, nb, log):
0c3d4bfd 7 data = wxFontData()
68320e40
RD
8 data.EnableEffects(true)
9 font_colour = wxColour(255, 0, 0) # colour of font (red)
10 data.SetColour(font_colour) # set colour
11 print data.GetColour()
0c3d4bfd 12 dlg = wxFontDialog(frame, data)
cf694132
RD
13 if dlg.ShowModal() == wxID_OK:
14 data = dlg.GetFontData()
15 font = data.GetChosenFont()
16 log.WriteText('You selected: "%s", %d points, color %s\n' %
17 (font.GetFaceName(), font.GetPointSize(),
18 data.GetColour().Get()))
19 dlg.Destroy()
20
21#---------------------------------------------------------------------------
22
23
24
25
26
27
28
29
30
31
32
33
34
35overview = """\
36This class represents the font chooser dialog.
37
38wxFontDialog()
39----------------------------
40
0c3d4bfd 41wxFontDialog(wxWindow* parent, wxFontData* data)
cf694132 42
0c3d4bfd 43Constructor. Pass a parent window and a font data object, which will be copied to the font dialog's font data.
cf694132 44"""