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