Name
GtkFontSelectionDialog -- a dialog box for selecting fonts.
Synopsis
#include <gtk/gtk.h>
struct GtkFontSelectionDialog;
GtkWidget* gtk_font_selection_dialog_new (const gchar *title);
GdkFont* gtk_font_selection_dialog_get_font
(GtkFontSelectionDialog *fsd);
gchar* gtk_font_selection_dialog_get_font_name
(GtkFontSelectionDialog *fsd);
gboolean gtk_font_selection_dialog_set_font_name
(GtkFontSelectionDialog *fsd,
const gchar *fontname);
gchar* gtk_font_selection_dialog_get_preview_text
(GtkFontSelectionDialog *fsd);
void gtk_font_selection_dialog_set_preview_text
(GtkFontSelectionDialog *fsd,
const gchar *text);
void gtk_font_selection_dialog_set_filter
(GtkFontSelectionDialog *fsd,
GtkFontFilterType filter_type,
GtkFontType font_type,
gchar **foundries,
gchar **weights,
gchar **slants,
gchar **setwidths,
gchar **spacings,
gchar **charsets);
enum GtkFontType;
enum GtkFontFilterType;
|
Description
The GtkFontSelectionDialog widget is a dialog box for selecting a font.
To set the font which is initially selected, use
gtk_font_selection_dialog_set_font_name().
To get the selected font use gtk_font_selection_dialog_get_font()
or gtk_font_selection_dialog_get_font_name().
To change the text which is shown in the preview area, use
gtk_font_selection_dialog_set_preview_text().
Filters can be used to limit the fonts shown. There are 2 filters in the
GtkFontSelectionDialog - a base filter and a user filter. The base filter
can not be changed by the user, so this can be used when the user must choose
from the restricted set of fonts (e.g. for a terminal-type application you may
want to force the user to select a fixed-width font). The user filter can be
changed or reset by the user, by using the 'Reset Filter' button or changing
the options on the 'Filter' page of the dialog.
Example 1. Setting a filter to show only fixed-width fonts.
gchar *spacings[] = { "c", "m", NULL };
gtk_font_selection_dialog_set_filter (GTK_FONT_SELECTION_DIALOG (fontsel),
GTK_FONT_FILTER_BASE, GTK_FONT_ALL,
NULL, NULL, NULL, NULL, spacings, NULL); |
To allow only true scalable fonts to be selected use:
Example 2. Setting a filter to show only true scalable fonts.
gtk_font_selection_dialog_set_filter (GTK_FONT_SELECTION_DIALOG (fontsel),
GTK_FONT_FILTER_BASE, GTK_FONT_SCALABLE,
NULL, NULL, NULL, NULL, NULL, NULL); |
Details
struct GtkFontSelectionDialog
struct GtkFontSelectionDialog; |
The GtkFontSelectionDialog struct contains private data only, and should
only be accessed using the functions below.
gtk_font_selection_dialog_get_font ()
Gets the currently-selected font.
gtk_font_selection_dialog_get_font_name ()
Gets the currently-selected font name.
gtk_font_selection_dialog_set_font_name ()
Sets the currently-selected font.
gtk_font_selection_dialog_get_preview_text ()
Gets the text displayed in the preview area.
gtk_font_selection_dialog_set_preview_text ()
Sets the text displayed in the preview area.
gtk_font_selection_dialog_set_filter ()
Sets one of the two font filters, to limit the fonts shown.