]> Pileus Git - ~andy/gtk/blob - gtk/gtkprivate.h
gdk/gdktypes.h gdk/gdkprivate.h gtk/gtk*.h gtk/Makefile.am gtk/makenums.pl
[~andy/gtk] / gtk / gtkprivate.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 #ifndef __GTK_PRIVATE_H__
20 #define __GTK_PRIVATE_H__
21
22
23 #include <gtk/gtkobject.h>
24 #include <gtk/gtkwidget.h>
25
26
27 #ifdef __cplusplus
28 extern "C" {
29 #pragma }
30 #endif /* __cplusplus */
31
32
33 /* The private flags that are used in the private_flags member of GtkWidget.
34  */
35 typedef enum
36 {
37   PRIVATE_GTK_USER_STYLE        = 1 <<  0,
38   PRIVATE_GTK_REDRAW_PENDING    = 1 <<  1,
39   PRIVATE_GTK_RESIZE_PENDING    = 1 <<  2,
40   PRIVATE_GTK_RESIZE_NEEDED     = 1 <<  3,
41   PRIVATE_GTK_LEAVE_PENDING     = 1 <<  4,
42   PRIVATE_GTK_HAS_SHAPE_MASK    = 1 <<  5,
43   PRIVATE_GTK_IN_REPARENT       = 1 <<  6
44 } GtkPrivateFlags;
45
46 /* Macros for extracting a widgets private_flags from GtkWidget.
47  */
48 #define GTK_PRIVATE_FLAGS(wid)            (GTK_WIDGET (wid)->private_flags)
49 #define GTK_WIDGET_USER_STYLE(obj)        ((GTK_PRIVATE_FLAGS (obj) & PRIVATE_GTK_USER_STYLE) != 0)
50 #define GTK_WIDGET_REDRAW_PENDING(obj)    ((GTK_PRIVATE_FLAGS (obj) & PRIVATE_GTK_REDRAW_PENDING) != 0)
51 #define GTK_CONTAINER_RESIZE_PENDING(obj) ((GTK_PRIVATE_FLAGS (obj) & PRIVATE_GTK_RESIZE_PENDING) != 0)
52 #define GTK_WIDGET_RESIZE_NEEDED(obj)     ((GTK_PRIVATE_FLAGS (obj) & PRIVATE_GTK_RESIZE_NEEDED) != 0)
53 #define GTK_WIDGET_LEAVE_PENDING(obj)     ((GTK_PRIVATE_FLAGS (obj) & PRIVATE_GTK_LEAVE_PENDING) != 0)
54 #define GTK_WIDGET_HAS_SHAPE_MASK(obj)    ((GTK_PRIVATE_FLAGS (obj) & PRIVATE_GTK_HAS_SHAPE_MASK) != 0)
55 #define GTK_WIDGET_IN_REPARENT(obj)       ((GTK_PRIVATE_FLAGS (obj) & PRIVATE_GTK_IN_REPARENT) != 0)
56
57 /* Macros for setting and clearing private widget flags.
58  * we use a preprocessor string concatenation here for a clear
59  * flags/private_flags distinction at the cost of single flag operations.
60  */
61 #define GTK_PRIVATE_SET_FLAG(wid,flag)    G_STMT_START{ (GTK_PRIVATE_FLAGS (wid) |= (PRIVATE_ ## flag)); }G_STMT_END
62 #define GTK_PRIVATE_UNSET_FLAG(wid,flag)  G_STMT_START{ (GTK_PRIVATE_FLAGS (wid) &= ~(PRIVATE_ ## flag)); }G_STMT_END
63
64 /* True if there is a good chance the mb functions will handle things
65  * correctly - set if either mblen("\xc0", MB_CUR_MAX) == 1 in the
66  * C locale, or were using X's mb functions. (-DX_LOCALE && locale != C)
67  */
68 extern gint gtk_use_mb;
69
70 #ifdef __cplusplus
71 }
72 #endif /* __cplusplus */
73
74
75 #endif /* __GTK_PRIVATE_H__ */