#ifndef __SP_FONT_SELECTOR_H__ #define __SP_FONT_SELECTOR_H__ /* * Font selection widgets * * Authors: * Chris Lahey * Lauris Kaplinski * * Copyright (C) 1999-2001 Ximian, Inc. * Copyright (C) 2002 Lauris Kaplinski * * Released under GNU GPL, read the file 'COPYING' for more information */ #include struct SPFontSelector; struct SPFontPreview; #define SP_TYPE_FONT_SELECTOR (sp_font_selector_get_type ()) #define SP_FONT_SELECTOR(o) (GTK_CHECK_CAST ((o), SP_TYPE_FONT_SELECTOR, SPFontSelector)) #define SP_IS_FONT_SELECTOR(o) (GTK_CHECK_TYPE ((o), SP_TYPE_FONT_SELECTOR)) #define SP_TYPE_FONT_PREVIEW (sp_font_preview_get_type ()) #define SP_FONT_PREVIEW(o) (GTK_CHECK_CAST ((o), SP_TYPE_FONT_PREVIEW, SPFontPreview)) #define SP_IS_FONT_PREVIEW(o) (GTK_CHECK_TYPE ((o), SP_TYPE_FONT_PREVIEW)) #include #include /* SPFontSelector */ GtkType sp_font_selector_get_type (void); GtkWidget *sp_font_selector_new (void); void sp_font_selector_set_font (SPFontSelector *fsel, font_instance *font, double size); font_instance *sp_font_selector_get_font (SPFontSelector *fsel); double sp_font_selector_get_size (SPFontSelector *fsel); /* SPFontPreview */ GtkType sp_font_preview_get_type (void); GtkWidget *sp_font_preview_new (void); void sp_font_preview_set_font (SPFontPreview *fprev, font_instance *font, SPFontSelector *fsel); void sp_font_preview_set_rgba32 (SPFontPreview *fprev, guint32 rgba); void sp_font_preview_set_phrase (SPFontPreview *fprev, const gchar *phrase); #endif /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :