- void EnableEffects(bool enable);
- bool GetAllowSymbols();
- wxColour GetColour();
- wxFont GetChosenFont();
- bool GetEnableEffects();
- wxFont GetInitialFont();
- bool GetShowHelp();
- void SetAllowSymbols(bool allowSymbols);
- void SetChosenFont(const wxFont& font);
- void SetColour(const wxColour& colour);
- void SetInitialFont(const wxFont& font);
- void SetRange(int min, int max);
- void SetShowHelp(bool showHelp);
+ DocDeclStr(
+ void , EnableEffects(bool enable),
+ "Enables or disables 'effects' under MS Windows only. This refers\n"
+ "to the controls for manipulating colour, strikeout and underline\n"
+ "properties. The default value is true.");
+
+ DocDeclStr(
+ bool , GetAllowSymbols(),
+ "Under MS Windows, returns a flag determining whether symbol fonts can be\n"
+ "selected. Has no effect on other platforms. The default value is true.");
+
+ DocDeclStr(
+ wxColour , GetColour(),
+ "Gets the colour associated with the font dialog. The default value is black.");
+
+ DocDeclStr(
+ wxFont , GetChosenFont(),
+ "Gets the font chosen by the user.");
+
+ DocDeclStr(
+ bool , GetEnableEffects(),
+ "Determines whether 'effects' are enabled under Windows.");
+
+ DocDeclStr(
+ wxFont , GetInitialFont(),
+ "Gets the font that will be initially used by the font dialog. This should have\n"
+ "previously been set by the application.");
+
+ DocDeclStr(
+ bool , GetShowHelp(),
+ "Returns true if the Help button will be shown (Windows only). The default\n"
+ "value is false.");
+
+ DocDeclStr(
+ void , SetAllowSymbols(bool allowSymbols),
+ "Under MS Windows, determines whether symbol fonts can be selected. Has no\n"
+ "effect on other platforms. The default value is true.");
+
+ DocDeclStr(
+ void , SetChosenFont(const wxFont& font),
+ "Sets the font that will be returned to the user (for internal use only).");
+
+ DocDeclStr(
+ void , SetColour(const wxColour& colour),
+ "Sets the colour that will be used for the font foreground colour. The default\n"
+ "colour is black.");
+
+ DocDeclStr(
+ void , SetInitialFont(const wxFont& font),
+ "Sets the font that will be initially used by the font dialog.");
+
+ DocDeclStr(
+ void , SetRange(int min, int max),
+ "Sets the valid range for the font point size (Windows only). The default is\n"
+ "0, 0 (unrestricted range).");
+
+ DocDeclStr(
+ void , SetShowHelp(bool showHelp),
+ "Determines whether the Help button will be displayed in the font dialog\n"
+ "(Windows only). The default value is false.");