]> Pileus Git - ~andy/gtk/blob - gtk/gtkpaned.h
applied patch from Andreas Persenius <ndap@swipnet.se> that updates the
[~andy/gtk] / gtk / gtkpaned.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* GTK - The GIMP Toolkit
3  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
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 #ifndef __GTK_PANED_H__
29 #define __GTK_PANED_H__
30
31 #include <gtk/gtkcontainer.h>
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif /* __cplusplus */
36
37
38 #define GTK_TYPE_PANED                  (gtk_paned_get_type ())
39 #define GTK_PANED(obj)                  (GTK_CHECK_CAST ((obj), GTK_TYPE_PANED, GtkPaned))
40 #define GTK_PANED_CLASS(klass)          (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_PANED, GtkPanedClass))
41 #define GTK_IS_PANED(obj)               (GTK_CHECK_TYPE ((obj), GTK_TYPE_PANED))
42 #define GTK_IS_PANED_CLASS(klass)       (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PANED))
43 #define GTK_PANED_GET_CLASS(obj)        (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_PANED, GtkPanedClass))
44
45
46 typedef struct _GtkPaned      GtkPaned;
47 typedef struct _GtkPanedClass GtkPanedClass;
48
49 struct _GtkPaned
50 {
51   GtkContainer container;
52   
53   GtkWidget *child1;
54   GtkWidget *child2;
55   
56   GdkWindow *handle;
57   GdkGC *xor_gc;
58   GdkCursorType cursor_type;
59   
60   /*< public >*/
61   guint16 handle_size;
62   
63   /*< private >*/
64   guint16 handle_width;
65   guint16 handle_height;
66
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 gint    gtk_paned_get_position    (GtkPaned  *paned);
103 void    gtk_paned_set_position    (GtkPaned  *paned,
104                                    gint       position);
105 void    gtk_paned_set_handle_size (GtkPaned  *paned,
106                                    guint16    size);
107
108 /* Internal function */
109 void    gtk_paned_compute_position (GtkPaned  *paned,
110                                     gint       allocation,
111                                     gint       child1_req,
112                                     gint       child2_req);
113 #ifdef __cplusplus
114 }
115 #endif /* __cplusplus */
116
117 #endif /* __GTK_PANED_H__ */