wx.FontDialog¶This class represents the font chooser dialog.
See also
Class Hierarchy¶
Inheritance diagram for class FontDialog:
Methods Summary¶Default constructor. |
|
Creates the dialog if the wx.FontDialog object had been initialized using the default constructor. |
|
Returns the font data associated with the font dialog. |
|
Shows the dialog, returning |
Properties Summary¶See |
Class API¶Possible constructors:
FontDialog()
FontDialog(parent)
FontDialog(parent, data)
This class represents the font chooser dialog.
__init__ (self)
Default constructor.
Create must be called before the dialog can be shown.
__init__ (self, parent)
Constructor with parent window.
parent (wx.Window) –
__init__ (self, parent, data)
Constructor.
Pass a parent window, and the font data object to be used to initialize the dialog controls.
parent (wx.Window) –
data (wx.FontData) –
Creates the dialog if the wx.FontDialog object had been initialized using the default constructor.
True on success and False if an error occurred.
Create (self, parent)
parent (wx.Window) –
bool
Create (self, parent, data)
parent (wx.Window) –
data (wx.FontData) –
bool
variant (WindowVariant) –
Shows the dialog, returning ID_OK if the user pressed Ok, and ID_CANCEL otherwise.
If the user cancels the dialog (ShowModal returns ID_CANCEL ), no font will be created. If the user presses wx.OK, a new wx.Font will be created and stored in the font dialog’s wx.FontData structure.
int
See also
See GetFontData