]> Pileus Git - ~andy/gtk/blob - gtk/gtkfontchooserutils.h
stylecontext: Do invalidation on first resize container
[~andy/gtk] / gtk / gtkfontchooserutils.h
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
30 G_BEGIN_DECLS
31
32 #define GTK_FONT_CHOOSER_DELEGATE_QUARK (_gtk_font_chooser_delegate_get_quark ())
33
34 typedef 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_LAST
41 } GtkFontChooserProp;
42
43 void   _gtk_font_chooser_install_properties  (GObjectClass          *klass);
44 void   _gtk_font_chooser_delegate_iface_init (GtkFontChooserIface *iface);
45 void   _gtk_font_chooser_set_delegate        (GtkFontChooser      *receiver,
46                                               GtkFontChooser      *delegate);
47
48 GQuark _gtk_font_chooser_delegate_get_quark  (void) G_GNUC_CONST;
49
50 G_END_DECLS
51
52 #endif /* __GTK_FONT_CHOOSER_UTILS_H__ */