1/* gtkfontchooserutils.h - Private utility functions for implementing a
2 * GtkFontChooser interface
3 *
4 * Copyright (C) 2006 Emmanuele Bassi
5 *
6 * All rights reserved
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details.
17 *
18 * You should have received a copy of the GNU Library General Public
19 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
20 *
21 * Based on gtkfilechooserutils.h:
22 * Copyright (C) 2003 Red Hat, Inc.
23 */
24
25#ifndef __GTK_FONT_CHOOSER_UTILS_H__
26#define __GTK_FONT_CHOOSER_UTILS_H__
27
28#include "gtkfontchooserprivate.h"
29
30G_BEGIN_DECLS
31
32#define GTK_FONT_CHOOSER_DELEGATE_QUARK (_gtk_font_chooser_delegate_get_quark ())
33
34typedef enum {
35 GTK_FONT_CHOOSER_PROP_FIRST = 0x4000,
36 GTK_FONT_CHOOSER_PROP_FONT,
37 GTK_FONT_CHOOSER_PROP_FONT_DESC,
38 GTK_FONT_CHOOSER_PROP_PREVIEW_TEXT,
39 GTK_FONT_CHOOSER_PROP_SHOW_PREVIEW_ENTRY,
40 GTK_FONT_CHOOSER_PROP_LEVEL,
41 GTK_FONT_CHOOSER_PROP_FONT_FEATURES,
42 GTK_FONT_CHOOSER_PROP_LANGUAGE,
43 GTK_FONT_CHOOSER_PROP_LAST
44} GtkFontChooserProp;
45
46void _gtk_font_chooser_install_properties (GObjectClass *klass);
47void _gtk_font_chooser_delegate_iface_init (GtkFontChooserIface *iface);
48void _gtk_font_chooser_set_delegate (GtkFontChooser *receiver,
49 GtkFontChooser *delegate);
50
51GQuark _gtk_font_chooser_delegate_get_quark (void) G_GNUC_CONST;
52
53G_END_DECLS
54
55#endif /* __GTK_FONT_CHOOSER_UTILS_H__ */
56

source code of gtk/gtk/gtkfontchooserutils.h