Top | ![]() |
![]() |
![]() |
![]() |
The GtkFontButton is a button which displays the currently selected font an allows to open a font chooser dialog to change the font. It is suitable widget for selecting a font in a preference dialog.
GtkWidget *
gtk_font_button_new (void
);
Creates a new font picker widget.
Since: 2.4
GtkWidget *
gtk_font_button_new_with_font (const gchar *fontname
);
Creates a new font picker widget.
Since: 2.4
gboolean gtk_font_button_set_font_name (GtkFontButton *font_button
,const gchar *fontname
);
Sets or updates the currently-displayed font in font picker dialog.
Since: 2.4
const gchar *
gtk_font_button_get_font_name (GtkFontButton *font_button
);
Retrieves the name of the currently selected font. This name includes
style and size information as well. If you want to render something
with the font, use this string with pango_font_description_from_string()
.
If you’re interested in peeking certain values (family name,
style, size, weight) just query these properties from the
PangoFontDescription object.
Since: 2.4
void gtk_font_button_set_show_style (GtkFontButton *font_button
,gboolean show_style
);
If show_style
is TRUE
, the font style will be displayed along with name of the selected font.
Since: 2.4
gboolean
gtk_font_button_get_show_style (GtkFontButton *font_button
);
Returns whether the name of the font style will be shown in the label.
Since: 2.4
void gtk_font_button_set_show_size (GtkFontButton *font_button
,gboolean show_size
);
If show_size
is TRUE
, the font size will be displayed along with the name of the selected font.
Since: 2.4
gboolean
gtk_font_button_get_show_size (GtkFontButton *font_button
);
Returns whether the font size will be shown in the label.
Since: 2.4
void gtk_font_button_set_use_font (GtkFontButton *font_button
,gboolean use_font
);
If use_font
is TRUE
, the font name will be written using the selected font.
Since: 2.4
gboolean
gtk_font_button_get_use_font (GtkFontButton *font_button
);
Returns whether the selected font is used in the label.
Since: 2.4
void gtk_font_button_set_use_size (GtkFontButton *font_button
,gboolean use_size
);
If use_size
is TRUE
, the font name will be written using the selected size.
Since: 2.4
gboolean
gtk_font_button_get_use_size (GtkFontButton *font_button
);
Returns whether the selected size is used in the label.
Since: 2.4
void gtk_font_button_set_title (GtkFontButton *font_button
,const gchar *title
);
Sets the title for the font chooser dialog.
Since: 2.4
const gchar *
gtk_font_button_get_title (GtkFontButton *font_button
);
Retrieves the title of the font chooser dialog.
Since: 2.4