1wxFontDialog(3) Erlang Module Definition wxFontDialog(3)
2
3
4
6 wxFontDialog - Functions for wxFontDialog class
7
9 This class represents the font chooser dialog.
10
11 See: Overview cmndlg, wxFontData, ?wxGetFontFromUser()
12
13 This class is derived (and can use functions) from: wxDialog wxTo‐
14 pLevelWindow wxWindow wxEvtHandler
15
16 wxWidgets docs: wxFontDialog
17
19 wxFontDialog() = wx:wx_object()
20
22 new() -> wxFontDialog()
23
24 Default ctor.
25
26 create/3 must be called before the dialog can be shown.
27
28 new(Parent, Data) -> wxFontDialog()
29
30 Types:
31
32 Parent = wxWindow:wxWindow()
33 Data = wxFontData:wxFontData()
34
35 Constructor.
36
37 Pass a parent window, and the wxFontData object to be used to
38 initialize the dialog controls.
39
40 create(This, Parent, Data) -> boolean()
41
42 Types:
43
44 This = wxFontDialog()
45 Parent = wxWindow:wxWindow()
46 Data = wxFontData:wxFontData()
47
48 Creates the dialog if the wxFontDialog object had been initial‐
49 ized using the default constructor.
50
51 Return: true on success and false if an error occurred.
52
53 getFontData(This) -> wxFontData:wxFontData()
54
55 Types:
56
57 This = wxFontDialog()
58
59 Returns the wxFontData associated with the font dialog.
60
61 destroy(This :: wxFontDialog()) -> ok
62
63 Destroys the object.
64
65
66
67wxWidgets team. wx 2.3.1 wxFontDialog(3)