]> Pileus Git - ~andy/gtk/blob - gtk/gtkprivate.h
Remove GtkObject completely
[~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 Lesser 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  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser 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
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
25  */
26
27 #ifndef __GTK_PRIVATE_H__
28 #define __GTK_PRIVATE_H__
29
30 #include <gtk/gtkwidget.h>
31
32 G_BEGIN_DECLS
33
34 void         _gtk_widget_set_visible_flag   (GtkWidget *widget,
35                                              gboolean   visible);
36 gboolean     _gtk_widget_get_resize_pending (GtkWidget *widget);
37 void         _gtk_widget_set_resize_pending (GtkWidget *widget,
38                                              gboolean   resize_pending);
39 gboolean     _gtk_widget_get_in_reparent    (GtkWidget *widget);
40 void         _gtk_widget_set_in_reparent    (GtkWidget *widget,
41                                              gboolean   in_reparent);
42 gboolean     _gtk_widget_get_anchored       (GtkWidget *widget);
43 void         _gtk_widget_set_anchored       (GtkWidget *widget,
44                                              gboolean   anchored);
45 gboolean     _gtk_widget_get_shadowed       (GtkWidget *widget);
46 void         _gtk_widget_set_shadowed       (GtkWidget *widget,
47                                              gboolean   shadowed);
48 gboolean     _gtk_widget_get_alloc_needed   (GtkWidget *widget);
49 void         _gtk_widget_set_alloc_needed   (GtkWidget *widget,
50                                              gboolean   alloc_needed);
51 gboolean     _gtk_widget_get_width_request_needed  (GtkWidget *widget);
52 void         _gtk_widget_set_width_request_needed  (GtkWidget *widget,
53                                                     gboolean   width_request_needed);
54 gboolean     _gtk_widget_get_height_request_needed (GtkWidget *widget);
55 void         _gtk_widget_set_height_request_needed (GtkWidget *widget,
56                                                     gboolean   height_request_needed);
57
58 #ifdef G_OS_WIN32
59
60 const gchar *_gtk_get_datadir ();
61 const gchar *_gtk_get_libdir ();
62 const gchar *_gtk_get_sysconfdir ();
63 const gchar *_gtk_get_localedir ();
64 const gchar *_gtk_get_data_prefix ();
65
66 #undef GTK_DATADIR
67 #define GTK_DATADIR _gtk_get_datadir ()
68 #undef GTK_LIBDIR
69 #define GTK_LIBDIR _gtk_get_libdir ()
70 #undef GTK_LOCALEDIR
71 #define GTK_LOCALEDIR _gtk_get_localedir ()
72 #undef GTK_SYSCONFDIR
73 #define GTK_SYSCONFDIR _gtk_get_sysconfdir ()
74 #undef GTK_DATA_PREFIX
75 #define GTK_DATA_PREFIX _gtk_get_data_prefix ()
76
77 #endif /* G_OS_WIN32 */
78
79 gboolean _gtk_fnmatch (const char *pattern,
80                        const char *string,
81                        gboolean    no_leading_period);
82
83 #define GTK_PARAM_READABLE G_PARAM_READABLE|G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB
84 #define GTK_PARAM_WRITABLE G_PARAM_WRITABLE|G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB
85 #define GTK_PARAM_READWRITE G_PARAM_READWRITE|G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB
86
87 /* Many keyboard shortcuts for Mac are the same as for X
88  * except they use Command key instead of Control (e.g. Cut,
89  * Copy, Paste). This symbol is for those simple cases. */
90 #ifndef GDK_WINDOWING_QUARTZ
91 #define GTK_DEFAULT_ACCEL_MOD_MASK GDK_CONTROL_MASK
92 #else
93 #define GTK_DEFAULT_ACCEL_MOD_MASK GDK_META_MASK
94 #endif
95
96
97 /* With GtkWidget     , a widget may be requested
98  * its width for 2 or maximum 3 heights in one resize
99  * (Note this define is limited by the bitfield sizes
100  * defined on the SizeRequestCache structure).
101  */
102 #define GTK_SIZE_REQUEST_CACHED_SIZES 3
103
104 typedef struct
105 {
106   gint   for_size;
107   gint   minimum_size;
108   gint   natural_size;
109 } SizeRequest;
110
111 typedef struct {
112   SizeRequest widths[GTK_SIZE_REQUEST_CACHED_SIZES];
113   SizeRequest heights[GTK_SIZE_REQUEST_CACHED_SIZES];
114   guint       cached_widths : 2;
115   guint       cached_heights : 2;
116   guint       last_cached_width : 2;
117   guint       last_cached_height : 2;
118 } SizeRequestCache;
119
120
121 G_END_DECLS
122
123 #endif /* __GTK_PRIVATE_H__ */