Top |
PangoFontFamily * | gtk_font_chooser_get_font_family () |
PangoFontFace * | gtk_font_chooser_get_font_face () |
gint | gtk_font_chooser_get_font_size () |
gchar * | gtk_font_chooser_get_font () |
void | gtk_font_chooser_set_font () |
PangoFontDescription * | gtk_font_chooser_get_font_desc () |
void | gtk_font_chooser_set_font_desc () |
gchar * | gtk_font_chooser_get_preview_text () |
void | gtk_font_chooser_set_preview_text () |
gboolean | gtk_font_chooser_get_show_preview_entry () |
void | gtk_font_chooser_set_show_preview_entry () |
gboolean | (*GtkFontFilterFunc) () |
void | gtk_font_chooser_set_filter_func () |
void | gtk_font_chooser_set_font_map () |
PangoFontMap * | gtk_font_chooser_get_font_map () |
void | gtk_font_chooser_set_level () |
GtkFontChooserLevel | gtk_font_chooser_get_level () |
char * | gtk_font_chooser_get_font_features () |
void | gtk_font_chooser_set_language () |
char * | gtk_font_chooser_get_language () |
char * | font | Read / Write |
PangoFontDescription * | font-desc | Read / Write |
char * | font-features | Read |
char * | language | Read / Write |
GtkFontChooserLevel | level | Read / Write |
char * | preview-text | Read / Write |
gboolean | show-preview-entry | Read / Write |
GtkFontChooser is implemented by GtkFontButton, GtkFontChooserDialog and GtkFontChooserWidget.
GtkFontChooser is an interface that can be implemented by widgets displaying the list of fonts. In GTK+, the main objects that implement this interface are GtkFontChooserWidget, GtkFontChooserDialog and GtkFontButton. The GtkFontChooser interface has been introducted in GTK+ 3.2.
PangoFontFamily *
gtk_font_chooser_get_font_family (GtkFontChooser *fontchooser
);
Gets the PangoFontFamily representing the selected font family. Font families are a collection of font faces.
If the selected font is not installed, returns NULL
.
A PangoFontFamily representing the
selected font family, or NULL
. The returned object is owned by fontchooser
and must not be modified or freed.
[nullable][transfer none]
Since: 3.2
PangoFontFace *
gtk_font_chooser_get_font_face (GtkFontChooser *fontchooser
);
Gets the PangoFontFace representing the selected font group details (i.e. family, slant, weight, width, etc).
If the selected font is not installed, returns NULL
.
A PangoFontFace representing the
selected font group details, or NULL
. The returned object is owned by
fontchooser
and must not be modified or freed.
[nullable][transfer none]
Since: 3.2
gint
gtk_font_chooser_get_font_size (GtkFontChooser *fontchooser
);
The selected font size.
Since: 3.2
gchar *
gtk_font_chooser_get_font (GtkFontChooser *fontchooser
);
Gets the currently-selected font name.
Note that this can be a different string than what you set with
gtk_font_chooser_set_font()
, as the font chooser widget may
normalize font names and thus return a string with a different
structure. For example, “Helvetica Italic Bold 12” could be
normalized to “Helvetica Bold Italic 12”.
Use pango_font_description_equal()
if you want to compare two
font descriptions.
A string with the name
of the current font, or NULL
if no font is selected. You must
free this string with g_free()
.
[nullable][transfer full]
Since: 3.2
void gtk_font_chooser_set_font (GtkFontChooser *fontchooser
,const gchar *fontname
);
Sets the currently-selected font.
Since: 3.2
PangoFontDescription *
gtk_font_chooser_get_font_desc (GtkFontChooser *fontchooser
);
Gets the currently-selected font.
Note that this can be a different string than what you set with
gtk_font_chooser_set_font()
, as the font chooser widget may
normalize font names and thus return a string with a different
structure. For example, “Helvetica Italic Bold 12” could be
normalized to “Helvetica Bold Italic 12”.
Use pango_font_description_equal()
if you want to compare two
font descriptions.
A PangoFontDescription for the
current font, or NULL
if no font is selected.
[nullable][transfer full]
Since: 3.2
void gtk_font_chooser_set_font_desc (GtkFontChooser *fontchooser
,const PangoFontDescription *font_desc
);
Sets the currently-selected font from font_desc
.
Since: 3.2
gchar *
gtk_font_chooser_get_preview_text (GtkFontChooser *fontchooser
);
Gets the text displayed in the preview area.
Since: 3.2
void gtk_font_chooser_set_preview_text (GtkFontChooser *fontchooser
,const gchar *text
);
Sets the text displayed in the preview area.
The text
is used to show how the selected font looks.
Since: 3.2
gboolean
gtk_font_chooser_get_show_preview_entry
(GtkFontChooser *fontchooser
);
Returns whether the preview entry is shown or not.
Since: 3.2
void gtk_font_chooser_set_show_preview_entry (GtkFontChooser *fontchooser
,gboolean show_preview_entry
);
Shows or hides the editable preview entry.
Since: 3.2
gboolean (*GtkFontFilterFunc) (const PangoFontFamily *family
,const PangoFontFace *face
,gpointer data
);
The type of function that is used for deciding what fonts get
shown in a GtkFontChooser. See gtk_font_chooser_set_filter_func()
.
family |
a PangoFontFamily |
|
face |
a PangoFontFace belonging to |
|
data |
user data passed to |
[closure] |
void gtk_font_chooser_set_filter_func (GtkFontChooser *fontchooser
,GtkFontFilterFunc filter
,gpointer user_data
,GDestroyNotify destroy
);
Adds a filter function that decides which fonts to display in the font chooser.
fontchooser |
||
filter |
a GtkFontFilterFunc, or |
[allow-none] |
user_data |
data to pass to |
|
destroy |
function to call to free |
Since: 3.2
void gtk_font_chooser_set_font_map (GtkFontChooser *fontchooser
,PangoFontMap *fontmap
);
Sets a custom font map to use for this font chooser widget. A custom font map can be used to present application-specific fonts instead of or in addition to the normal system fonts.
1 2 3 4 5 6 7 8 9 10 |
FcConfig *config; PangoFontMap *fontmap; config = FcInitLoadConfigAndFonts (); FcConfigAppFontAddFile (config, my_app_font_file); fontmap = pango_cairo_font_map_new_for_font_type (CAIRO_FONT_TYPE_FT); pango_fc_font_map_set_config (PANGO_FC_FONT_MAP (fontmap), config); gtk_font_chooser_set_font_map (font_chooser, fontmap); |
Note that other GTK+ widgets will only be able to use the application-specific font if it is present in the font map they use:
1 2 |
context = gtk_widget_get_pango_context (label); pango_context_set_font_map (context, fontmap); |
Since: 3.18
PangoFontMap *
gtk_font_chooser_get_font_map (GtkFontChooser *fontchooser
);
Gets the custom font map of this font chooser widget,
or NULL
if it does not have one.
Since: 3.18
void gtk_font_chooser_set_level (GtkFontChooser *fontchooser
,GtkFontChooserLevel level
);
Sets the desired level of granularity for selecting fonts.
Since: 3.24
GtkFontChooserLevel
gtk_font_chooser_get_level (GtkFontChooser *fontchooser
);
Returns the current level of granularity for selecting fonts.
Since: 3.24
char *
gtk_font_chooser_get_font_features (GtkFontChooser *fontchooser
);
Gets the currently-selected font features.
Since: 3.24
void gtk_font_chooser_set_language (GtkFontChooser *fontchooser
,const char *language
);
Sets the language to use for font features.
Since: 3.24
char *
gtk_font_chooser_get_language (GtkFontChooser *fontchooser
);
Gets the language that is used for font features.
Since: 3.24
“font”
property “font” char *
The font description as a string, e.g. "Sans Italic 12".
Owner: GtkFontChooser
Flags: Read / Write
Default value: "Sans 10"
“font-desc”
property “font-desc” PangoFontDescription *
The font description as a PangoFontDescription.
Owner: GtkFontChooser
Flags: Read / Write
“font-features”
property “font-features” char *
The selected font features, in a format that is compatible with CSS and with Pango attributes.
Owner: GtkFontChooser
Flags: Read
Default value: ""
Since: 3.24.1
“language”
property “language” char *
The language for which the “font-features” were selected, in a format that is compatible with CSS and with Pango attributes.
Owner: GtkFontChooser
Flags: Read / Write
Default value: ""
Since: 3.24.1
“level”
property “level” GtkFontChooserLevel
The level of granularity to offer for selecting fonts.
Owner: GtkFontChooser
Flags: Read / Write
Default value: GTK_FONT_CHOOSER_LEVEL_STYLE | GTK_FONT_CHOOSER_LEVEL_SIZE
Since: 3.24.1
“preview-text”
property “preview-text” char *
The string with which to preview the font.
Owner: GtkFontChooser
Flags: Read / Write
Default value: "The quick brown fox jumps over the lazy dog."
“show-preview-entry”
property“show-preview-entry” gboolean
Whether to show an entry to change the preview text.
Owner: GtkFontChooser
Flags: Read / Write
Default value: TRUE
“font-activated”
signalvoid user_function (GtkFontChooser *self, char *fontname, gpointer user_data)
Emitted when a font is activated. This usually happens when the user double clicks an item, or an item is selected and the user presses one of the keys Space, Shift+Space, Return or Enter.
self |
the object which received the signal |
|
fontname |
the font name |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run First