]> Pileus Git - ~andy/gtk/blob - gtk/gtkpaned.h
Deprecate gtk_paned_computed_position(). (#97077)
[~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)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PANED, GtkPaned))
40 #define GTK_PANED_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PANED, GtkPanedClass))
41 #define GTK_IS_PANED(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PANED))
42 #define GTK_IS_PANED_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PANED))
43 #define GTK_PANED_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_PANED, GtkPanedClass))
44
45
46 typedef struct _GtkPaned        GtkPaned;
47 typedef struct _GtkPanedClass   GtkPanedClass;
48 typedef struct _GtkPanedPrivate GtkPanedPrivate;
49         
50 struct _GtkPaned
51 {
52   GtkContainer container;
53   
54   GtkWidget *child1;
55   GtkWidget *child2;
56   
57   GdkWindow *handle;
58   GdkGC *xor_gc;
59   GdkCursorType cursor_type;
60   
61   /*< private >*/
62   GdkRectangle handle_pos;
63
64   gint child1_size;
65   gint last_allocation;
66   gint min_position;
67   gint max_position;
68
69   guint position_set : 1;
70   guint in_drag : 1;
71   guint child1_shrink : 1;
72   guint child1_resize : 1;
73   guint child2_shrink : 1;
74   guint child2_resize : 1;
75   guint orientation : 1;
76   guint in_recursion : 1;
77   guint handle_prelit : 1;
78
79   GtkWidget *last_child1_focus;
80   GtkWidget *last_child2_focus;
81   GtkPanedPrivate *priv;
82
83   gint drag_pos;
84   gint original_position;
85 };
86  
87 struct _GtkPanedClass
88 {
89   GtkContainerClass parent_class;
90   
91   gboolean (* cycle_child_focus)   (GtkPaned      *paned,
92                                     gboolean       reverse); 
93   gboolean (* toggle_handle_focus) (GtkPaned      *paned);
94   gboolean (* move_handle)         (GtkPaned      *paned,
95                                     GtkScrollType  scroll);
96   gboolean (* cycle_handle_focus)  (GtkPaned      *paned,
97                                     gboolean       reverse);
98   gboolean (* accept_position)     (GtkPaned      *paned);
99   gboolean (* cancel_position)     (GtkPaned      *paned);
100
101   /* Padding for future expansion */
102   void (*_gtk_reserved1) (void);
103   void (*_gtk_reserved2) (void);
104   void (*_gtk_reserved3) (void);
105   void (*_gtk_reserved4) (void);
106 };
107
108
109 GType   gtk_paned_get_type        (void) G_GNUC_CONST;
110 void    gtk_paned_add1            (GtkPaned  *paned,
111                                    GtkWidget *child);
112 void    gtk_paned_add2            (GtkPaned  *paned,
113                                    GtkWidget *child);
114 void    gtk_paned_pack1           (GtkPaned  *paned,
115                                    GtkWidget *child,
116                                    gboolean   resize,
117                                    gboolean   shrink);
118 void    gtk_paned_pack2           (GtkPaned  *paned,
119                                    GtkWidget *child,
120                                    gboolean   resize,
121                                    gboolean   shrink);
122 gint    gtk_paned_get_position    (GtkPaned  *paned);
123 void    gtk_paned_set_position    (GtkPaned  *paned,
124                                    gint       position);
125
126 /* Internal function */
127 #if !defined (GTK_DISABLE_DEPRECATED) || defined (GTK_COMPILATION)
128 void    gtk_paned_compute_position (GtkPaned  *paned,
129                                     gint       allocation,
130                                     gint       child1_req,
131                                     gint       child2_req);
132 #endif /* !GTK_DISABLE_DEPRECATED || GTK_COMPILATION */
133 #ifndef GTK_DISABLE_DEPRECATED
134 #define gtk_paned_gutter_size(p,s)              (void) 0
135 #define gtk_paned_set_gutter_size(p,s)          (void) 0
136 #endif /* GTK_DISABLE_DEPRECATED */
137
138 #ifdef __cplusplus
139 }
140 #endif /* __cplusplus */
141
142 #endif /* __GTK_PANED_H__ */