]> Pileus Git - ~andy/gtk/blob - gtk/gtkpaned.h
Opaque resizing + prelighting for paned widget. move reszing logic to
[~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   /*< private >*/
61   GdkRectangle handle_pos;
62
63   gint child1_size;
64   gint last_allocation;
65   gint min_position;
66   gint max_position;
67
68   guint position_set : 1;
69   guint in_drag : 1;
70   guint child1_shrink : 1;
71   guint child1_resize : 1;
72   guint child2_shrink : 1;
73   guint child2_resize : 1;
74   guint orientation : 1;
75   guint in_recursion : 1;
76   guint handle_prelit : 1;
77
78   GtkWidget *last_child1_focus;
79   GtkWidget *last_child2_focus;
80   GtkWidget *saved_focus;
81
82   gint drag_pos;
83   gint original_position;
84 };
85  
86 struct _GtkPanedClass
87 {
88   GtkContainerClass parent_class;
89   
90   gboolean (* cycle_child_focus)   (GtkPaned      *paned,
91                                     gboolean       reverse); 
92   gboolean (* toggle_handle_focus) (GtkPaned      *paned);
93   gboolean (* move_handle)         (GtkPaned      *paned,
94                                     GtkScrollType  scroll);
95   gboolean (* cycle_handle_focus)  (GtkPaned      *paned,
96                                     gboolean       reverse);
97   gboolean (* accept_position)     (GtkPaned      *paned);
98   gboolean (* cancel_position)     (GtkPaned      *paned);
99 };
100
101
102 GtkType gtk_paned_get_type        (void) G_GNUC_CONST;
103 void    gtk_paned_add1            (GtkPaned  *paned,
104                                    GtkWidget *child);
105 void    gtk_paned_add2            (GtkPaned  *paned,
106                                    GtkWidget *child);
107 void    gtk_paned_pack1           (GtkPaned  *paned,
108                                    GtkWidget *child,
109                                    gboolean   resize,
110                                    gboolean   shrink);
111 void    gtk_paned_pack2           (GtkPaned  *paned,
112                                    GtkWidget *child,
113                                    gboolean   resize,
114                                    gboolean   shrink);
115 gint    gtk_paned_get_position    (GtkPaned  *paned);
116 void    gtk_paned_set_position    (GtkPaned  *paned,
117                                    gint       position);
118
119 /* Internal function */
120 void    gtk_paned_compute_position (GtkPaned  *paned,
121                                     gint       allocation,
122                                     gint       child1_req,
123                                     gint       child2_req);
124
125 #ifndef GTK_DISABLE_DEPRECATED
126 #define gtk_paned_gutter_size(p,s)              (void) 0
127 #define gtk_paned_set_gutter_size(p,s)          (void) 0
128 #endif /* GTK_DISABLE_DEPRECATED */
129
130 #ifdef __cplusplus
131 }
132 #endif /* __cplusplus */
133
134 #endif /* __GTK_PANED_H__ */