View Source wxFontData (wx v2.4.2)
Functions for wxFontData class
This class holds a variety of information related to font dialogs.
See:
Overview cmndlg,
wxFont
, wxFontDialog
wxWidgets docs: wxFontData
Summary
Functions
Destroys the object.
Enables or disables "effects" under Windows or generic only.
Under Windows, returns a flag determining whether symbol fonts can be selected.
Gets the font chosen by the user if the user pressed OK
(wxFontDialog::ShowModal()
(not implemented in wx) returned wxID_OK).
Gets the colour associated with the font dialog.
Determines whether "effects" are enabled under Windows.
Gets the font that will be initially used by the font dialog.
Returns true if the Help button will be shown (Windows only).
Constructor.
Copy Constructor.
Under Windows, determines whether symbol fonts can be selected.
Sets the font that will be returned to the user (for internal use only).
Sets the colour that will be used for the font foreground colour.
Sets the font that will be initially used by the font dialog.
Sets the valid range for the font point size (Windows only).
Determines whether the Help button will be displayed in the font dialog (Windows only).
Types
-type wxFontData() :: wx:wx_object().
Functions
-spec destroy(This :: wxFontData()) -> ok.
Destroys the object.
-spec enableEffects(This, Enable) -> ok when This :: wxFontData(), Enable :: boolean().
Enables or disables "effects" under Windows or generic only.
This refers to the controls for manipulating colour, strikeout and underline properties.
The default value is true.
-spec getAllowSymbols(This) -> boolean() when This :: wxFontData().
Under Windows, returns a flag determining whether symbol fonts can be selected.
Has no effect on other platforms.
The default value is true.
-spec getChosenFont(This) -> wxFont:wxFont() when This :: wxFontData().
Gets the font chosen by the user if the user pressed OK
(wxFontDialog::ShowModal()
(not implemented in wx) returned wxID_OK).
-spec getColour(This) -> wx:wx_colour4() when This :: wxFontData().
Gets the colour associated with the font dialog.
The default value is black.
-spec getEnableEffects(This) -> boolean() when This :: wxFontData().
Determines whether "effects" are enabled under Windows.
This refers to the controls for manipulating colour, strikeout and underline properties.
The default value is true.
-spec getInitialFont(This) -> wxFont:wxFont() when This :: wxFontData().
Gets the font that will be initially used by the font dialog.
This should have previously been set by the application.
-spec getShowHelp(This) -> boolean() when This :: wxFontData().
Returns true if the Help button will be shown (Windows only).
The default value is false.
-spec new() -> wxFontData().
Constructor.
Initializes fontColour
to black, showHelp
to false, allowSymbols
to true,
enableEffects
to true, minSize
to 0 and maxSize
to 0.
-spec new(Data) -> wxFontData() when Data :: wxFontData().
Copy Constructor.
-spec setAllowSymbols(This, AllowSymbols) -> ok when This :: wxFontData(), AllowSymbols :: boolean().
Under Windows, determines whether symbol fonts can be selected.
Has no effect on other platforms.
The default value is true.
-spec setChosenFont(This, Font) -> ok when This :: wxFontData(), Font :: wxFont:wxFont().
Sets the font that will be returned to the user (for internal use only).
-spec setColour(This, Colour) -> ok when This :: wxFontData(), Colour :: wx:wx_colour().
Sets the colour that will be used for the font foreground colour.
The default colour is black.
-spec setInitialFont(This, Font) -> ok when This :: wxFontData(), Font :: wxFont:wxFont().
Sets the font that will be initially used by the font dialog.
-spec setRange(This, Min, Max) -> ok when This :: wxFontData(), Min :: integer(), Max :: integer().
Sets the valid range for the font point size (Windows only).
The default is 0, 0 (unrestricted range).
-spec setShowHelp(This, ShowHelp) -> ok when This :: wxFontData(), ShowHelp :: boolean().
Determines whether the Help button will be displayed in the font dialog (Windows only).
The default value is false.