]> Pileus Git - ~andy/gtk/blob - gtk/deprecated/gtkhandlebox.h
445398d61714aeafb434afe7c31007f2d1c1d059
[~andy/gtk] / gtk / deprecated / 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 Lesser 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  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser 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 /*
22  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
23  * file for a list of people on the GTK+ Team.  See the ChangeLog
24  * files for a list of changes.  These files are distributed with
25  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
26  */
27
28 /* The GtkHandleBox is to allow widgets to be dragged in and out of
29  * their parents.
30  */
31
32 #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
33 #error "Only <gtk/gtk.h> can be included directly."
34 #endif
35
36 #ifndef __GTK_HANDLE_BOX_H__
37 #define __GTK_HANDLE_BOX_H__
38
39 #include <gtk/gtkbin.h>
40
41 G_BEGIN_DECLS
42
43 #define GTK_TYPE_HANDLE_BOX            (gtk_handle_box_get_type ())
44 #define GTK_HANDLE_BOX(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_HANDLE_BOX, GtkHandleBox))
45 #define GTK_HANDLE_BOX_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_HANDLE_BOX, GtkHandleBoxClass))
46 #define GTK_IS_HANDLE_BOX(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_HANDLE_BOX))
47 #define GTK_IS_HANDLE_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_HANDLE_BOX))
48 #define GTK_HANDLE_BOX_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_HANDLE_BOX, GtkHandleBoxClass))
49
50 typedef struct _GtkHandleBox              GtkHandleBox;
51 typedef struct _GtkHandleBoxPrivate       GtkHandleBoxPrivate;
52 typedef struct _GtkHandleBoxClass         GtkHandleBoxClass;
53
54 struct _GtkHandleBox
55 {
56   GtkBin bin;
57
58   /*< private >*/
59   GtkHandleBoxPrivate *priv;
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   /* Padding for future expansion */
72   void (*_gtk_reserved1) (void);
73   void (*_gtk_reserved2) (void);
74   void (*_gtk_reserved3) (void);
75   void (*_gtk_reserved4) (void);
76 };
77
78
79 GType         gtk_handle_box_get_type             (void) G_GNUC_CONST;
80 GDK_DEPRECATED_IN_3_4
81 GtkWidget*    gtk_handle_box_new                  (void);
82 GDK_DEPRECATED_IN_3_4
83 void          gtk_handle_box_set_shadow_type      (GtkHandleBox    *handle_box,
84                                                    GtkShadowType    type);
85 GDK_DEPRECATED_IN_3_4
86 GtkShadowType gtk_handle_box_get_shadow_type      (GtkHandleBox    *handle_box);
87 GDK_DEPRECATED_IN_3_4
88 void          gtk_handle_box_set_handle_position  (GtkHandleBox    *handle_box,
89                                                    GtkPositionType  position);
90 GDK_DEPRECATED_IN_3_4
91 GtkPositionType gtk_handle_box_get_handle_position(GtkHandleBox    *handle_box);
92 GDK_DEPRECATED_IN_3_4
93 void          gtk_handle_box_set_snap_edge        (GtkHandleBox    *handle_box,
94                                                    GtkPositionType  edge);
95 GDK_DEPRECATED_IN_3_4
96 GtkPositionType gtk_handle_box_get_snap_edge      (GtkHandleBox    *handle_box);
97 GDK_DEPRECATED_IN_3_4
98 gboolean      gtk_handle_box_get_child_detached   (GtkHandleBox    *handle_box);
99
100 G_END_DECLS
101
102 #endif /* __GTK_HANDLE_BOX_H__ */