]> Pileus Git - ~andy/gtk/blob - gtk/gtkpaned.h
s/refcount/ref_count/.
[~andy/gtk] / gtk / gtkpaned.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
20 /*
21  * Modified by the GTK+ Team and others 1997-1999.  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_PANED_H__
28 #define __GTK_PANED_H__
29
30
31 #include <gdk/gdk.h>
32 #include <gtk/gtkcontainer.h>
33
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif /* __cplusplus */
38
39
40 #define GTK_TYPE_PANED                  (gtk_paned_get_type ())
41 #define GTK_PANED(obj)                  (GTK_CHECK_CAST ((obj), GTK_TYPE_PANED, GtkPaned))
42 #define GTK_PANED_CLASS(klass)          (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_PANED, GtkPanedClass))
43 #define GTK_IS_PANED(obj)               (GTK_CHECK_TYPE ((obj), GTK_TYPE_PANED))
44 #define GTK_IS_PANED_CLASS(klass)       (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PANED))
45 #define GTK_PANED_GET_CLASS(obj)        (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_PANED, GtkPanedClass))
46
47
48 typedef struct _GtkPaned       GtkPaned;
49 typedef struct _GtkPanedClass  GtkPanedClass;
50
51 struct _GtkPaned
52 {
53   GtkContainer container;
54   
55   GtkWidget *child1;
56   GtkWidget *child2;
57   
58   GdkWindow *handle;
59   GdkRectangle groove_rectangle;
60   GdkGC *xor_gc;
61
62   /*< public >*/
63   guint16 handle_size;
64   guint16 gutter_size;
65
66   /*< private >*/
67   gint child1_size;
68   gint last_allocation;
69   gint min_position;
70   gint max_position;
71   
72   guint position_set : 1;
73   guint in_drag : 1;
74   guint child1_shrink : 1;
75   guint child1_resize : 1;
76   guint child2_shrink : 1;
77   guint child2_resize : 1;
78   
79   gint16 handle_xpos;
80   gint16 handle_ypos;
81 };
82
83 struct _GtkPanedClass
84 {
85   GtkContainerClass parent_class;
86 };
87
88
89 GtkType gtk_paned_get_type        (void);
90 void    gtk_paned_add1            (GtkPaned  *paned,
91                                    GtkWidget *child);
92 void    gtk_paned_add2            (GtkPaned  *paned,
93                                    GtkWidget *child);
94 void    gtk_paned_pack1           (GtkPaned  *paned,
95                                    GtkWidget *child,
96                                    gboolean   resize,
97                                    gboolean   shrink);
98 void    gtk_paned_pack2           (GtkPaned  *paned,
99                                    GtkWidget *child,
100                                    gboolean   resize,
101                                    gboolean   shrink);
102 void    gtk_paned_set_position    (GtkPaned  *paned,
103                                    gint       position);
104 void    gtk_paned_set_handle_size (GtkPaned *paned,
105                                    guint16   size);
106 void    gtk_paned_set_gutter_size (GtkPaned *paned,
107                                    guint16   size);
108
109 /* Internal function */
110 void    gtk_paned_compute_position (GtkPaned *paned,
111                                     gint      allocation,
112                                     gint      child1_req,
113                                     gint      child2_req);
114
115 #ifdef __cplusplus
116 }
117 #endif /* __cplusplus */
118
119
120 #endif /* __GTK_PANED_H__ */