]> Pileus Git - ~andy/gtk/blob - gtk/gtkhandlebox.h
Added gdk_text/string_extents() - too calculate all the metrics at once of
[~andy/gtk] / gtk / gtkhandlebox.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  * Copyright (C) 1998 Elliot Lee
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 /* The GtkHandleBox is to allow widgets to be dragged in and out of
22  * their parents.
23  */
24
25
26 #ifndef __GTK_HANDLE_BOX_H__
27 #define __GTK_HANDLE_BOX_H__
28
29
30 #include <gdk/gdk.h>
31 #include <gtk/gtkbin.h>
32
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif /* __cplusplus */
37
38
39 #define GTK_HANDLE_BOX(obj)          GTK_CHECK_CAST (obj, gtk_handle_box_get_type (), GtkHandleBox)
40 #define GTK_HANDLE_BOX_CLASS(klass)  GTK_CHECK_CLASS_CAST (klass, gtk_handle_box_get_type (), GtkHandleBoxClass)
41 #define GTK_IS_HANDLE_BOX(obj)       GTK_CHECK_TYPE (obj, gtk_handle_box_get_type ())
42
43
44 typedef struct _GtkHandleBox       GtkHandleBox;
45 typedef struct _GtkHandleBoxClass  GtkHandleBoxClass;
46
47 struct _GtkHandleBox
48 {
49   GtkBin bin;
50
51   GdkWindow      *bin_window;   /* parent window for children */
52   GdkWindow      *float_window;
53   guint           handle_position : 2;
54   guint           float_window_mapped : 1;
55   guint           child_detached : 1;
56   guint           in_drag : 1;
57   guint           shrink_on_detach : 1;
58
59   gint dragoff_x, dragoff_y; /* start drag position (wrt widget->window) */
60 };
61
62 struct _GtkHandleBoxClass
63 {
64   GtkBinClass parent_class;
65
66   void  (*child_attached)       (GtkHandleBox   *handle_box,
67                                  GtkWidget      *child);
68   void  (*child_detached)       (GtkHandleBox   *handle_box,
69                                  GtkWidget      *child);
70 };
71
72
73 guint          gtk_handle_box_get_type        (void);
74 GtkWidget*     gtk_handle_box_new             (void);
75
76
77 #ifdef __cplusplus
78 }
79 #endif /* __cplusplus */
80
81 #endif /* __GTK_HANDLE_BOX_H__ */