]> Pileus Git - ~andy/gtk/blob - gtk/gtkpaned.h
Make PLT-reduction work with gcc4, and don't include everything in
[~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 G_BEGIN_DECLS
34
35 #define GTK_TYPE_PANED                  (gtk_paned_get_type ())
36 #define GTK_PANED(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PANED, GtkPaned))
37 #define GTK_PANED_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PANED, GtkPanedClass))
38 #define GTK_IS_PANED(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PANED))
39 #define GTK_IS_PANED_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PANED))
40 #define GTK_PANED_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_PANED, GtkPanedClass))
41
42
43 typedef struct _GtkPaned        GtkPaned;
44 typedef struct _GtkPanedClass   GtkPanedClass;
45 typedef struct _GtkPanedPrivate GtkPanedPrivate;
46         
47 struct _GtkPaned
48 {
49   GtkContainer container;
50   
51   GtkWidget *child1;
52   GtkWidget *child2;
53   
54   GdkWindow *handle;
55   GdkGC *xor_gc;
56   GdkCursorType cursor_type;
57   
58   /*< private >*/
59   GdkRectangle handle_pos;
60
61   gint child1_size;
62   gint last_allocation;
63   gint min_position;
64   gint max_position;
65
66   guint position_set : 1;
67   guint in_drag : 1;
68   guint child1_shrink : 1;
69   guint child1_resize : 1;
70   guint child2_shrink : 1;
71   guint child2_resize : 1;
72   guint orientation : 1;
73   guint in_recursion : 1;
74   guint handle_prelit : 1;
75
76   GtkWidget *last_child1_focus;
77   GtkWidget *last_child2_focus;
78   GtkPanedPrivate *priv;
79
80   gint drag_pos;
81   gint original_position;
82 };
83  
84 struct _GtkPanedClass
85 {
86   GtkContainerClass parent_class;
87   
88   gboolean (* cycle_child_focus)   (GtkPaned      *paned,
89                                     gboolean       reverse); 
90   gboolean (* toggle_handle_focus) (GtkPaned      *paned);
91   gboolean (* move_handle)         (GtkPaned      *paned,
92                                     GtkScrollType  scroll);
93   gboolean (* cycle_handle_focus)  (GtkPaned      *paned,
94                                     gboolean       reverse);
95   gboolean (* accept_position)     (GtkPaned      *paned);
96   gboolean (* cancel_position)     (GtkPaned      *paned);
97
98   /* Padding for future expansion */
99   void (*_gtk_reserved1) (void);
100   void (*_gtk_reserved2) (void);
101   void (*_gtk_reserved3) (void);
102   void (*_gtk_reserved4) (void);
103 };
104
105
106 GType   gtk_paned_get_type        (void) G_GNUC_CONST;
107 void    gtk_paned_add1            (GtkPaned  *paned,
108                                    GtkWidget *child);
109 void    gtk_paned_add2            (GtkPaned  *paned,
110                                    GtkWidget *child);
111 void    gtk_paned_pack1           (GtkPaned  *paned,
112                                    GtkWidget *child,
113                                    gboolean   resize,
114                                    gboolean   shrink);
115 void    gtk_paned_pack2           (GtkPaned  *paned,
116                                    GtkWidget *child,
117                                    gboolean   resize,
118                                    gboolean   shrink);
119 gint    gtk_paned_get_position    (GtkPaned  *paned);
120 void    gtk_paned_set_position    (GtkPaned  *paned,
121                                    gint       position);
122
123 GtkWidget *gtk_paned_get_child1   (GtkPaned  *paned);
124 GtkWidget *gtk_paned_get_child2   (GtkPaned  *paned);
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 G_END_DECLS
139
140 #endif /* __GTK_PANED_H__ */