]> Pileus Git - ~andy/gtk/blob - gtk/gtkpaned.c
GtkPaned: Create the child window at the correct position
[~andy/gtk] / gtk / gtkpaned.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
25  */
26
27 #include "config.h"
28
29 #include "gtkpaned.h"
30
31 #include "gtkbindings.h"
32 #include "gtkmain.h"
33 #include "gtkmarshalers.h"
34 #include "gtkorientable.h"
35 #include "gtkwindow.h"
36 #include "gtktypebuiltins.h"
37 #include "gtkprivate.h"
38 #include "gtkintl.h"
39 #include "a11y/gtkpanedaccessible.h"
40
41 /**
42  * SECTION:gtkpaned
43  * @Short_description: A widget with two adjustable panes
44  * @Title: GtkPaned
45  *
46  * #GtkPaned has two panes, arranged either
47  * horizontally or vertically. The division between
48  * the two panes is adjustable by the user by dragging
49  * a handle.
50  *
51  * Child widgets are
52  * added to the panes of the widget with gtk_paned_pack1() and
53  * gtk_paned_pack2(). The division between the two children is set by default
54  * from the size requests of the children, but it can be adjusted by the
55  * user.
56  *
57  * A paned widget draws a separator between the two child widgets and a
58  * small handle that the user can drag to adjust the division. It does not
59  * draw any relief around the children or around the separator. (The space
60  * in which the separator is called the gutter.) Often, it is useful to put
61  * each child inside a #GtkFrame with the shadow type set to %GTK_SHADOW_IN
62  * so that the gutter appears as a ridge. No separator is drawn if one of
63  * the children is missing.
64  *
65  * Each child has two options that can be set, @resize and @shrink. If
66  * @resize is true, then when the #GtkPaned is resized, that child will
67  * expand or shrink along with the paned widget. If @shrink is true, then
68  * that child can be made smaller than its requisition by the user.
69  * Setting @shrink to %FALSE allows the application to set a minimum size.
70  * If @resize is false for both children, then this is treated as if
71  * @resize is true for both children.
72  *
73  * The application can set the position of the slider as if it were set
74  * by the user, by calling gtk_paned_set_position().
75  *
76  * <example>
77  * <title>Creating a paned widget with minimum sizes.</title>
78  * <programlisting>
79  * GtkWidget *hpaned = gtk_paned_new (GTK_ORIENTATION_HORIZONTAL);
80  * GtkWidget *frame1 = gtk_frame_new (NULL);
81  * GtkWidget *frame2 = gtk_frame_new (NULL);
82  * gtk_frame_set_shadow_type (GTK_FRAME (frame1), GTK_SHADOW_IN);
83  * gtk_frame_set_shadow_type (GTK_FRAME (frame2), GTK_SHADOW_IN);
84  *
85  * gtk_widget_set_size_request (hpaned, 200, -1);
86  *
87  * gtk_paned_pack1 (GTK_PANED (hpaned), frame1, TRUE, FALSE);
88  * gtk_widget_set_size_request (frame1, 50, -1);
89  *
90  * gtk_paned_pack2 (GTK_PANED (hpaned), frame2, FALSE, FALSE);
91  * gtk_widget_set_size_request (frame2, 50, -1);
92  * </programlisting>
93  * </example>
94  */
95
96 enum {
97   CHILD1,
98   CHILD2
99 };
100
101 struct _GtkPanedPrivate
102 {
103   GtkPaned       *first_paned;
104   GtkWidget      *child1;
105   GtkWidget      *child2;
106   GdkWindow      *child1_window;
107   GdkWindow      *child2_window;
108   GtkWidget      *last_child1_focus;
109   GtkWidget      *last_child2_focus;
110   GtkWidget      *saved_focus;
111   GtkOrientation  orientation;
112
113   GdkCursorType  cursor_type;
114   GdkDevice     *grab_device;
115   GdkRectangle   handle_pos;
116   GdkWindow     *handle;
117
118   gint          child1_size;
119   gint          drag_pos;
120   gint          last_allocation;
121   gint          max_position;
122   gint          min_position;
123   gint          original_position;
124
125   guint32       grab_time;
126
127   guint         handle_prelit : 1;
128   guint         in_drag       : 1;
129   guint         in_recursion  : 1;
130   guint         child1_resize : 1;
131   guint         child1_shrink : 1;
132   guint         child2_resize : 1;
133   guint         child2_shrink : 1;
134   guint         position_set  : 1;
135 };
136
137 enum {
138   PROP_0,
139   PROP_ORIENTATION,
140   PROP_POSITION,
141   PROP_POSITION_SET,
142   PROP_MIN_POSITION,
143   PROP_MAX_POSITION
144 };
145
146 enum {
147   CHILD_PROP_0,
148   CHILD_PROP_RESIZE,
149   CHILD_PROP_SHRINK
150 };
151
152 enum {
153   CYCLE_CHILD_FOCUS,
154   TOGGLE_HANDLE_FOCUS,
155   MOVE_HANDLE,
156   CYCLE_HANDLE_FOCUS,
157   ACCEPT_POSITION,
158   CANCEL_POSITION,
159   LAST_SIGNAL
160 };
161
162 static void     gtk_paned_set_property          (GObject          *object,
163                                                  guint             prop_id,
164                                                  const GValue     *value,
165                                                  GParamSpec       *pspec);
166 static void     gtk_paned_get_property          (GObject          *object,
167                                                  guint             prop_id,
168                                                  GValue           *value,
169                                                  GParamSpec       *pspec);
170 static void     gtk_paned_set_child_property    (GtkContainer     *container,
171                                                  GtkWidget        *child,
172                                                  guint             property_id,
173                                                  const GValue     *value,
174                                                  GParamSpec       *pspec);
175 static void     gtk_paned_get_child_property    (GtkContainer     *container,
176                                                  GtkWidget        *child,
177                                                  guint             property_id,
178                                                  GValue           *value,
179                                                  GParamSpec       *pspec);
180 static void     gtk_paned_finalize              (GObject          *object);
181
182 static void     gtk_paned_get_preferred_width   (GtkWidget        *widget,
183                                                  gint             *minimum,
184                                                  gint             *natural);
185 static void     gtk_paned_get_preferred_height  (GtkWidget        *widget,
186                                                  gint             *minimum,
187                                                  gint             *natural);
188 static void     gtk_paned_get_preferred_width_for_height
189                                                 (GtkWidget        *widget,
190                                                  gint              height,
191                                                  gint             *minimum,
192                                                  gint             *natural);
193 static void     gtk_paned_get_preferred_height_for_width
194                                                 (GtkWidget        *widget,
195                                                  gint              width,
196                                                  gint             *minimum,
197                                                  gint              *natural);
198
199 static void     gtk_paned_size_allocate         (GtkWidget        *widget,
200                                                  GtkAllocation    *allocation);
201 static void     gtk_paned_realize               (GtkWidget        *widget);
202 static void     gtk_paned_unrealize             (GtkWidget        *widget);
203 static void     gtk_paned_map                   (GtkWidget        *widget);
204 static void     gtk_paned_unmap                 (GtkWidget        *widget);
205 static void     gtk_paned_state_flags_changed   (GtkWidget        *widget,
206                                                  GtkStateFlags     previous_state);
207 static gboolean gtk_paned_draw                  (GtkWidget        *widget,
208                                                  cairo_t          *cr);
209 static gboolean gtk_paned_enter                 (GtkWidget        *widget,
210                                                  GdkEventCrossing *event);
211 static gboolean gtk_paned_leave                 (GtkWidget        *widget,
212                                                  GdkEventCrossing *event);
213 static gboolean gtk_paned_button_press          (GtkWidget        *widget,
214                                                  GdkEventButton   *event);
215 static gboolean gtk_paned_button_release        (GtkWidget        *widget,
216                                                  GdkEventButton   *event);
217 static gboolean gtk_paned_motion                (GtkWidget        *widget,
218                                                  GdkEventMotion   *event);
219 static gboolean gtk_paned_focus                 (GtkWidget        *widget,
220                                                  GtkDirectionType  direction);
221 static gboolean gtk_paned_grab_broken           (GtkWidget          *widget,
222                                                  GdkEventGrabBroken *event);
223 static void     gtk_paned_add                   (GtkContainer     *container,
224                                                  GtkWidget        *widget);
225 static void     gtk_paned_remove                (GtkContainer     *container,
226                                                  GtkWidget        *widget);
227 static void     gtk_paned_forall                (GtkContainer     *container,
228                                                  gboolean          include_internals,
229                                                  GtkCallback       callback,
230                                                  gpointer          callback_data);
231 static void     gtk_paned_calc_position         (GtkPaned         *paned,
232                                                  gint              allocation,
233                                                  gint              child1_req,
234                                                  gint              child2_req);
235 static void     gtk_paned_set_focus_child       (GtkContainer     *container,
236                                                  GtkWidget        *child);
237 static void     gtk_paned_set_saved_focus       (GtkPaned         *paned,
238                                                  GtkWidget        *widget);
239 static void     gtk_paned_set_first_paned       (GtkPaned         *paned,
240                                                  GtkPaned         *first_paned);
241 static void     gtk_paned_set_last_child1_focus (GtkPaned         *paned,
242                                                  GtkWidget        *widget);
243 static void     gtk_paned_set_last_child2_focus (GtkPaned         *paned,
244                                                  GtkWidget        *widget);
245 static gboolean gtk_paned_cycle_child_focus     (GtkPaned         *paned,
246                                                  gboolean          reverse);
247 static gboolean gtk_paned_cycle_handle_focus    (GtkPaned         *paned,
248                                                  gboolean          reverse);
249 static gboolean gtk_paned_move_handle           (GtkPaned         *paned,
250                                                  GtkScrollType     scroll);
251 static gboolean gtk_paned_accept_position       (GtkPaned         *paned);
252 static gboolean gtk_paned_cancel_position       (GtkPaned         *paned);
253 static gboolean gtk_paned_toggle_handle_focus   (GtkPaned         *paned);
254
255 static GType    gtk_paned_child_type            (GtkContainer     *container);
256 static void     gtk_paned_grab_notify           (GtkWidget        *widget,
257                                                  gboolean          was_grabbed);
258
259
260 G_DEFINE_TYPE_WITH_CODE (GtkPaned, gtk_paned, GTK_TYPE_CONTAINER,
261                          G_IMPLEMENT_INTERFACE (GTK_TYPE_ORIENTABLE,
262                                                 NULL))
263
264 static guint signals[LAST_SIGNAL] = { 0 };
265
266
267 static void
268 add_tab_bindings (GtkBindingSet    *binding_set,
269                   GdkModifierType   modifiers)
270 {
271   gtk_binding_entry_add_signal (binding_set, GDK_KEY_Tab, modifiers,
272                                 "toggle-handle-focus", 0);
273   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Tab, modifiers,
274                                 "toggle-handle-focus", 0);
275 }
276
277 static void
278 add_move_binding (GtkBindingSet   *binding_set,
279                   guint            keyval,
280                   GdkModifierType  mask,
281                   GtkScrollType    scroll)
282 {
283   gtk_binding_entry_add_signal (binding_set, keyval, mask,
284                                 "move-handle", 1,
285                                 GTK_TYPE_SCROLL_TYPE, scroll);
286 }
287
288 static void
289 gtk_paned_class_init (GtkPanedClass *class)
290 {
291   GObjectClass *object_class;
292   GtkWidgetClass *widget_class;
293   GtkContainerClass *container_class;
294   GtkPanedClass *paned_class;
295   GtkBindingSet *binding_set;
296
297   object_class = (GObjectClass *) class;
298   widget_class = (GtkWidgetClass *) class;
299   container_class = (GtkContainerClass *) class;
300   paned_class = (GtkPanedClass *) class;
301
302   object_class->set_property = gtk_paned_set_property;
303   object_class->get_property = gtk_paned_get_property;
304   object_class->finalize = gtk_paned_finalize;
305
306   widget_class->get_preferred_width = gtk_paned_get_preferred_width;
307   widget_class->get_preferred_height = gtk_paned_get_preferred_height;
308   widget_class->get_preferred_width_for_height = gtk_paned_get_preferred_width_for_height;
309   widget_class->get_preferred_height_for_width = gtk_paned_get_preferred_height_for_width;
310   widget_class->size_allocate = gtk_paned_size_allocate;
311   widget_class->realize = gtk_paned_realize;
312   widget_class->unrealize = gtk_paned_unrealize;
313   widget_class->map = gtk_paned_map;
314   widget_class->unmap = gtk_paned_unmap;
315   widget_class->draw = gtk_paned_draw;
316   widget_class->focus = gtk_paned_focus;
317   widget_class->enter_notify_event = gtk_paned_enter;
318   widget_class->leave_notify_event = gtk_paned_leave;
319   widget_class->button_press_event = gtk_paned_button_press;
320   widget_class->button_release_event = gtk_paned_button_release;
321   widget_class->motion_notify_event = gtk_paned_motion;
322   widget_class->grab_broken_event = gtk_paned_grab_broken;
323   widget_class->grab_notify = gtk_paned_grab_notify;
324   widget_class->state_flags_changed = gtk_paned_state_flags_changed;
325
326   container_class->add = gtk_paned_add;
327   container_class->remove = gtk_paned_remove;
328   container_class->forall = gtk_paned_forall;
329   container_class->child_type = gtk_paned_child_type;
330   container_class->set_focus_child = gtk_paned_set_focus_child;
331   container_class->set_child_property = gtk_paned_set_child_property;
332   container_class->get_child_property = gtk_paned_get_child_property;
333   gtk_container_class_handle_border_width (container_class);
334
335   paned_class->cycle_child_focus = gtk_paned_cycle_child_focus;
336   paned_class->toggle_handle_focus = gtk_paned_toggle_handle_focus;
337   paned_class->move_handle = gtk_paned_move_handle;
338   paned_class->cycle_handle_focus = gtk_paned_cycle_handle_focus;
339   paned_class->accept_position = gtk_paned_accept_position;
340   paned_class->cancel_position = gtk_paned_cancel_position;
341
342   g_object_class_override_property (object_class,
343                                     PROP_ORIENTATION,
344                                     "orientation");
345
346   g_object_class_install_property (object_class,
347                                    PROP_POSITION,
348                                    g_param_spec_int ("position",
349                                                      P_("Position"),
350                                                      P_("Position of paned separator in pixels (0 means all the way to the left/top)"),
351                                                      0,
352                                                      G_MAXINT,
353                                                      0,
354                                                      GTK_PARAM_READWRITE));
355
356   g_object_class_install_property (object_class,
357                                    PROP_POSITION_SET,
358                                    g_param_spec_boolean ("position-set",
359                                                          P_("Position Set"),
360                                                          P_("TRUE if the Position property should be used"),
361                                                          FALSE,
362                                                          GTK_PARAM_READWRITE));
363
364   gtk_widget_class_install_style_property (widget_class,
365                                            g_param_spec_int ("handle-size",
366                                                              P_("Handle Size"),
367                                                              P_("Width of handle"),
368                                                              0,
369                                                              G_MAXINT,
370                                                              5,
371                                                              GTK_PARAM_READABLE));
372   /**
373    * GtkPaned:min-position:
374    *
375    * The smallest possible value for the position property. This property is derived from the
376    * size and shrinkability of the widget's children.
377    *
378    * Since: 2.4
379    */
380   g_object_class_install_property (object_class,
381                                    PROP_MIN_POSITION,
382                                    g_param_spec_int ("min-position",
383                                                      P_("Minimal Position"),
384                                                      P_("Smallest possible value for the \"position\" property"),
385                                                      0,
386                                                      G_MAXINT,
387                                                      0,
388                                                      GTK_PARAM_READABLE));
389
390   /**
391    * GtkPaned:max-position:
392    *
393    * The largest possible value for the position property. This property is derived from the
394    * size and shrinkability of the widget's children.
395    *
396    * Since: 2.4
397    */
398   g_object_class_install_property (object_class,
399                                    PROP_MAX_POSITION,
400                                    g_param_spec_int ("max-position",
401                                                      P_("Maximal Position"),
402                                                      P_("Largest possible value for the \"position\" property"),
403                                                      0,
404                                                      G_MAXINT,
405                                                      G_MAXINT,
406                                                      GTK_PARAM_READABLE));
407
408   /**
409    * GtkPaned:resize:
410    *
411    * The "resize" child property determines whether the child expands and
412    * shrinks along with the paned widget.
413    *
414    * Since: 2.4
415    */
416   gtk_container_class_install_child_property (container_class,
417                                               CHILD_PROP_RESIZE,
418                                               g_param_spec_boolean ("resize", 
419                                                                     P_("Resize"),
420                                                                     P_("If TRUE, the child expands and shrinks along with the paned widget"),
421                                                                     TRUE,
422                                                                     GTK_PARAM_READWRITE));
423
424   /**
425    * GtkPaned:shrink:
426    *
427    * The "shrink" child property determines whether the child can be made
428    * smaller than its requisition.
429    *
430    * Since: 2.4
431    */
432   gtk_container_class_install_child_property (container_class,
433                                               CHILD_PROP_SHRINK,
434                                               g_param_spec_boolean ("shrink", 
435                                                                     P_("Shrink"),
436                                                                     P_("If TRUE, the child can be made smaller than its requisition"),
437                                                                     TRUE,
438                                                                     GTK_PARAM_READWRITE));
439
440   /**
441    * GtkPaned::cycle-child-focus:
442    * @widget: the object that received the signal
443    * @reversed: whether cycling backward or forward
444    *
445    * The ::cycle-child-focus signal is a 
446    * <link linkend="keybinding-signals">keybinding signal</link>
447    * which gets emitted to cycle the focus between the children of the paned.
448    *
449    * The default binding is f6.
450    *
451    * Since: 2.0
452    */
453   signals [CYCLE_CHILD_FOCUS] =
454     g_signal_new (I_("cycle-child-focus"),
455                   G_TYPE_FROM_CLASS (object_class),
456                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
457                   G_STRUCT_OFFSET (GtkPanedClass, cycle_child_focus),
458                   NULL, NULL,
459                   _gtk_marshal_BOOLEAN__BOOLEAN,
460                   G_TYPE_BOOLEAN, 1,
461                   G_TYPE_BOOLEAN);
462
463   /**
464    * GtkPaned::toggle-handle-focus:
465    * @widget: the object that received the signal
466    *
467    * The ::toggle-handle-focus is a 
468    * <link linkend="keybinding-signals">keybinding signal</link>
469    * which gets emitted to accept the current position of the handle and then 
470    * move focus to the next widget in the focus chain.
471    *
472    * The default binding is Tab.
473    *
474    * Since: 2.0
475    */
476   signals [TOGGLE_HANDLE_FOCUS] =
477     g_signal_new (I_("toggle-handle-focus"),
478                   G_TYPE_FROM_CLASS (object_class),
479                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
480                   G_STRUCT_OFFSET (GtkPanedClass, toggle_handle_focus),
481                   NULL, NULL,
482                   _gtk_marshal_BOOLEAN__VOID,
483                   G_TYPE_BOOLEAN, 0);
484
485   /**
486    * GtkPaned::move-handle:
487    * @widget: the object that received the signal
488    * @scroll_type: a #GtkScrollType
489    *
490    * The ::move-handle signal is a 
491    * <link linkend="keybinding-signals">keybinding signal</link>
492    * which gets emitted to move the handle when the user is using key bindings 
493    * to move it.
494    *
495    * Since: 2.0
496    */
497   signals[MOVE_HANDLE] =
498     g_signal_new (I_("move-handle"),
499                   G_TYPE_FROM_CLASS (object_class),
500                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
501                   G_STRUCT_OFFSET (GtkPanedClass, move_handle),
502                   NULL, NULL,
503                   _gtk_marshal_BOOLEAN__ENUM,
504                   G_TYPE_BOOLEAN, 1,
505                   GTK_TYPE_SCROLL_TYPE);
506
507   /**
508    * GtkPaned::cycle-handle-focus:
509    * @widget: the object that received the signal
510    * @reversed: whether cycling backward or forward
511    *
512    * The ::cycle-handle-focus signal is a 
513    * <link linkend="keybinding-signals">keybinding signal</link>
514    * which gets emitted to cycle whether the paned should grab focus to allow
515    * the user to change position of the handle by using key bindings.
516    *
517    * The default binding for this signal is f8.
518    *
519    * Since: 2.0
520    */
521   signals [CYCLE_HANDLE_FOCUS] =
522     g_signal_new (I_("cycle-handle-focus"),
523                   G_TYPE_FROM_CLASS (object_class),
524                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
525                   G_STRUCT_OFFSET (GtkPanedClass, cycle_handle_focus),
526                   NULL, NULL,
527                   _gtk_marshal_BOOLEAN__BOOLEAN,
528                   G_TYPE_BOOLEAN, 1,
529                   G_TYPE_BOOLEAN);
530
531   /**
532    * GtkPaned::accept-position:
533    * @widget: the object that received the signal
534    *
535    * The ::accept-position signal is a 
536    * <link linkend="keybinding-signals">keybinding signal</link>
537    * which gets emitted to accept the current position of the handle when 
538    * moving it using key bindings.
539    *
540    * The default binding for this signal is Return or Space.
541    *
542    * Since: 2.0
543    */
544   signals [ACCEPT_POSITION] =
545     g_signal_new (I_("accept-position"),
546                   G_TYPE_FROM_CLASS (object_class),
547                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
548                   G_STRUCT_OFFSET (GtkPanedClass, accept_position),
549                   NULL, NULL,
550                   _gtk_marshal_BOOLEAN__VOID,
551                   G_TYPE_BOOLEAN, 0);
552
553   /**
554    * GtkPaned::cancel-position:
555    * @widget: the object that received the signal
556    *
557    * The ::cancel-position signal is a 
558    * <link linkend="keybinding-signals">keybinding signal</link>
559    * which gets emitted to cancel moving the position of the handle using key 
560    * bindings. The position of the handle will be reset to the value prior to 
561    * moving it.
562    *
563    * The default binding for this signal is Escape.
564    *
565    * Since: 2.0
566    */
567   signals [CANCEL_POSITION] =
568     g_signal_new (I_("cancel-position"),
569                   G_TYPE_FROM_CLASS (object_class),
570                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
571                   G_STRUCT_OFFSET (GtkPanedClass, cancel_position),
572                   NULL, NULL,
573                   _gtk_marshal_BOOLEAN__VOID,
574                   G_TYPE_BOOLEAN, 0);
575
576   binding_set = gtk_binding_set_by_class (class);
577
578   /* F6 and friends */
579   gtk_binding_entry_add_signal (binding_set,
580                                 GDK_KEY_F6, 0,
581                                 "cycle-child-focus", 1, 
582                                 G_TYPE_BOOLEAN, FALSE);
583   gtk_binding_entry_add_signal (binding_set,
584                                 GDK_KEY_F6, GDK_SHIFT_MASK,
585                                 "cycle-child-focus", 1,
586                                 G_TYPE_BOOLEAN, TRUE);
587
588   /* F8 and friends */
589   gtk_binding_entry_add_signal (binding_set,
590                                 GDK_KEY_F8, 0,
591                                 "cycle-handle-focus", 1,
592                                 G_TYPE_BOOLEAN, FALSE);
593  
594   gtk_binding_entry_add_signal (binding_set,
595                                 GDK_KEY_F8, GDK_SHIFT_MASK,
596                                 "cycle-handle-focus", 1,
597                                 G_TYPE_BOOLEAN, TRUE);
598  
599   add_tab_bindings (binding_set, 0);
600   add_tab_bindings (binding_set, GDK_CONTROL_MASK);
601   add_tab_bindings (binding_set, GDK_SHIFT_MASK);
602   add_tab_bindings (binding_set, GDK_CONTROL_MASK | GDK_SHIFT_MASK);
603
604   /* accept and cancel positions */
605   gtk_binding_entry_add_signal (binding_set,
606                                 GDK_KEY_Escape, 0,
607                                 "cancel-position", 0);
608
609   gtk_binding_entry_add_signal (binding_set,
610                                 GDK_KEY_Return, 0,
611                                 "accept-position", 0);
612   gtk_binding_entry_add_signal (binding_set,
613                                 GDK_KEY_ISO_Enter, 0,
614                                 "accept-position", 0);
615   gtk_binding_entry_add_signal (binding_set,
616                                 GDK_KEY_KP_Enter, 0,
617                                 "accept-position", 0);
618   gtk_binding_entry_add_signal (binding_set,
619                                 GDK_KEY_space, 0,
620                                 "accept-position", 0);
621   gtk_binding_entry_add_signal (binding_set,
622                                 GDK_KEY_KP_Space, 0,
623                                 "accept-position", 0);
624
625   /* move handle */
626   add_move_binding (binding_set, GDK_KEY_Left, 0, GTK_SCROLL_STEP_LEFT);
627   add_move_binding (binding_set, GDK_KEY_KP_Left, 0, GTK_SCROLL_STEP_LEFT);
628   add_move_binding (binding_set, GDK_KEY_Left, GDK_CONTROL_MASK, GTK_SCROLL_PAGE_LEFT);
629   add_move_binding (binding_set, GDK_KEY_KP_Left, GDK_CONTROL_MASK, GTK_SCROLL_PAGE_LEFT);
630
631   add_move_binding (binding_set, GDK_KEY_Right, 0, GTK_SCROLL_STEP_RIGHT);
632   add_move_binding (binding_set, GDK_KEY_Right, GDK_CONTROL_MASK, GTK_SCROLL_PAGE_RIGHT);
633   add_move_binding (binding_set, GDK_KEY_KP_Right, 0, GTK_SCROLL_STEP_RIGHT);
634   add_move_binding (binding_set, GDK_KEY_KP_Right, GDK_CONTROL_MASK, GTK_SCROLL_PAGE_RIGHT);
635
636   add_move_binding (binding_set, GDK_KEY_Up, 0, GTK_SCROLL_STEP_UP);
637   add_move_binding (binding_set, GDK_KEY_Up, GDK_CONTROL_MASK, GTK_SCROLL_PAGE_UP);
638   add_move_binding (binding_set, GDK_KEY_KP_Up, 0, GTK_SCROLL_STEP_UP);
639   add_move_binding (binding_set, GDK_KEY_KP_Up, GDK_CONTROL_MASK, GTK_SCROLL_PAGE_UP);
640   add_move_binding (binding_set, GDK_KEY_Page_Up, 0, GTK_SCROLL_PAGE_UP);
641   add_move_binding (binding_set, GDK_KEY_KP_Page_Up, 0, GTK_SCROLL_PAGE_UP);
642
643   add_move_binding (binding_set, GDK_KEY_Down, 0, GTK_SCROLL_STEP_DOWN);
644   add_move_binding (binding_set, GDK_KEY_Down, GDK_CONTROL_MASK, GTK_SCROLL_PAGE_DOWN);
645   add_move_binding (binding_set, GDK_KEY_KP_Down, 0, GTK_SCROLL_STEP_DOWN);
646   add_move_binding (binding_set, GDK_KEY_KP_Down, GDK_CONTROL_MASK, GTK_SCROLL_PAGE_DOWN);
647   add_move_binding (binding_set, GDK_KEY_Page_Down, 0, GTK_SCROLL_PAGE_RIGHT);
648   add_move_binding (binding_set, GDK_KEY_KP_Page_Down, 0, GTK_SCROLL_PAGE_RIGHT);
649
650   add_move_binding (binding_set, GDK_KEY_Home, 0, GTK_SCROLL_START);
651   add_move_binding (binding_set, GDK_KEY_KP_Home, 0, GTK_SCROLL_START);
652   add_move_binding (binding_set, GDK_KEY_End, 0, GTK_SCROLL_END);
653   add_move_binding (binding_set, GDK_KEY_KP_End, 0, GTK_SCROLL_END);
654
655   g_type_class_add_private (object_class, sizeof (GtkPanedPrivate));
656   gtk_widget_class_set_accessible_type (widget_class, GTK_TYPE_PANED_ACCESSIBLE);
657 }
658
659 static GType
660 gtk_paned_child_type (GtkContainer *container)
661 {
662   GtkPaned *paned = GTK_PANED (container);
663   GtkPanedPrivate *priv = paned->priv;
664
665   if (!priv->child1 || !priv->child2)
666     return GTK_TYPE_WIDGET;
667   else
668     return G_TYPE_NONE;
669 }
670
671 static void
672 gtk_paned_init (GtkPaned *paned)
673 {
674   GtkPanedPrivate *priv;
675
676   gtk_widget_set_has_window (GTK_WIDGET (paned), FALSE);
677   gtk_widget_set_can_focus (GTK_WIDGET (paned), TRUE);
678
679   /* We only need to redraw when the handle position moves, which is
680    * independent of the overall allocation of the GtkPaned
681    */
682   gtk_widget_set_redraw_on_allocate (GTK_WIDGET (paned), FALSE);
683
684   paned->priv = G_TYPE_INSTANCE_GET_PRIVATE (paned, GTK_TYPE_PANED, GtkPanedPrivate);
685   priv = paned->priv;
686
687   priv->orientation = GTK_ORIENTATION_HORIZONTAL;
688   priv->cursor_type = GDK_SB_H_DOUBLE_ARROW;
689
690   priv->child1 = NULL;
691   priv->child2 = NULL;
692   priv->handle = NULL;
693   priv->cursor_type = GDK_CROSS;
694
695   priv->handle_pos.width = 5;
696   priv->handle_pos.height = 5;
697   priv->position_set = FALSE;
698   priv->last_allocation = -1;
699   priv->in_drag = FALSE;
700
701   priv->last_child1_focus = NULL;
702   priv->last_child2_focus = NULL;
703   priv->in_recursion = FALSE;
704   priv->handle_prelit = FALSE;
705   priv->original_position = -1;
706
707   priv->handle_pos.x = -1;
708   priv->handle_pos.y = -1;
709
710   priv->drag_pos = -1;
711 }
712
713 static void
714 gtk_paned_set_property (GObject        *object,
715                         guint           prop_id,
716                         const GValue   *value,
717                         GParamSpec     *pspec)
718 {
719   GtkPaned *paned = GTK_PANED (object);
720   GtkPanedPrivate *priv = paned->priv;
721
722   switch (prop_id)
723     {
724     case PROP_ORIENTATION:
725       priv->orientation = g_value_get_enum (value);
726
727       if (priv->orientation == GTK_ORIENTATION_HORIZONTAL)
728         priv->cursor_type = GDK_SB_H_DOUBLE_ARROW;
729       else
730         priv->cursor_type = GDK_SB_V_DOUBLE_ARROW;
731
732       /* state_flags_changed updates the cursor */
733       gtk_paned_state_flags_changed (GTK_WIDGET (paned), 0);
734       gtk_widget_queue_resize (GTK_WIDGET (paned));
735       break;
736     case PROP_POSITION:
737       gtk_paned_set_position (paned, g_value_get_int (value));
738       break;
739     case PROP_POSITION_SET:
740       priv->position_set = g_value_get_boolean (value);
741       gtk_widget_queue_resize_no_redraw (GTK_WIDGET (paned));
742       break;
743     default:
744       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
745       break;
746     }
747 }
748
749 static void
750 gtk_paned_get_property (GObject        *object,
751                         guint           prop_id,
752                         GValue         *value,
753                         GParamSpec     *pspec)
754 {
755   GtkPaned *paned = GTK_PANED (object);
756   GtkPanedPrivate *priv = paned->priv;
757
758   switch (prop_id)
759     {
760     case PROP_ORIENTATION:
761       g_value_set_enum (value, priv->orientation);
762       break;
763     case PROP_POSITION:
764       g_value_set_int (value, priv->child1_size);
765       break;
766     case PROP_POSITION_SET:
767       g_value_set_boolean (value, priv->position_set);
768       break;
769     case PROP_MIN_POSITION:
770       g_value_set_int (value, priv->min_position);
771       break;
772     case PROP_MAX_POSITION:
773       g_value_set_int (value, priv->max_position);
774       break;
775     default:
776       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
777       break;
778     }
779 }
780
781 static void
782 gtk_paned_set_child_property (GtkContainer    *container,
783                               GtkWidget       *child,
784                               guint            property_id,
785                               const GValue    *value,
786                               GParamSpec      *pspec)
787 {
788   GtkPaned *paned = GTK_PANED (container);
789   GtkPanedPrivate *priv = paned->priv;
790   gboolean old_value, new_value;
791
792   g_assert (child == priv->child1 || child == priv->child2);
793
794   new_value = g_value_get_boolean (value);
795   switch (property_id)
796     {
797     case CHILD_PROP_RESIZE:
798       if (child == priv->child1)
799         {
800           old_value = priv->child1_resize;
801           priv->child1_resize = new_value;
802         }
803       else
804         {
805           old_value = priv->child2_resize;
806           priv->child2_resize = new_value;
807         }
808       break;
809     case CHILD_PROP_SHRINK:
810       if (child == priv->child1)
811         {
812           old_value = priv->child1_shrink;
813           priv->child1_shrink = new_value;
814         }
815       else
816         {
817           old_value = priv->child2_shrink;
818           priv->child2_shrink = new_value;
819         }
820       break;
821     default:
822       GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID (container, property_id, pspec);
823       old_value = -1; /* quiet gcc */
824       break;
825     }
826   if (old_value != new_value)
827     gtk_widget_queue_resize_no_redraw (GTK_WIDGET (container));
828 }
829
830 static void
831 gtk_paned_get_child_property (GtkContainer *container,
832                               GtkWidget    *child,
833                               guint         property_id,
834                               GValue       *value,
835                               GParamSpec   *pspec)
836 {
837   GtkPaned *paned = GTK_PANED (container);
838   GtkPanedPrivate *priv = paned->priv;
839
840   g_assert (child == priv->child1 || child == priv->child2);
841   
842   switch (property_id)
843     {
844     case CHILD_PROP_RESIZE:
845       if (child == priv->child1)
846         g_value_set_boolean (value, priv->child1_resize);
847       else
848         g_value_set_boolean (value, priv->child2_resize);
849       break;
850     case CHILD_PROP_SHRINK:
851       if (child == priv->child1)
852         g_value_set_boolean (value, priv->child1_shrink);
853       else
854         g_value_set_boolean (value, priv->child2_shrink);
855       break;
856     default:
857       GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID (container, property_id, pspec);
858       break;
859     }
860 }
861
862 static void
863 gtk_paned_finalize (GObject *object)
864 {
865   GtkPaned *paned = GTK_PANED (object);
866   
867   gtk_paned_set_saved_focus (paned, NULL);
868   gtk_paned_set_first_paned (paned, NULL);
869
870   G_OBJECT_CLASS (gtk_paned_parent_class)->finalize (object);
871 }
872
873 static void
874 get_preferred_size_for_size (GtkWidget      *widget,
875                              GtkOrientation  orientation,
876                              gint            size,
877                              gint           *minimum,
878                              gint           *natural)
879 {
880   if (orientation == GTK_ORIENTATION_HORIZONTAL)
881     if (size < 0)
882       gtk_widget_get_preferred_width (widget, minimum, natural);
883     else
884       gtk_widget_get_preferred_width_for_height (widget, size, minimum, natural);
885   else
886     if (size < 0)
887       gtk_widget_get_preferred_height (widget, minimum, natural);
888     else
889       gtk_widget_get_preferred_height_for_width (widget, size, minimum, natural);
890 }
891
892 static void
893 gtk_paned_get_preferred_size (GtkWidget      *widget,
894                               GtkOrientation  orientation,
895                               gint            size,
896                               gint           *minimum,
897                               gint           *natural)
898 {
899   GtkPaned *paned = GTK_PANED (widget);
900   GtkPanedPrivate *priv = paned->priv;
901   gint child_min, child_nat;
902
903   *minimum = *natural = 0;
904
905   if (priv->child1 && gtk_widget_get_visible (priv->child1))
906     {
907       get_preferred_size_for_size (priv->child1, orientation, size, &child_min, &child_nat);
908       *minimum = child_min;
909       *natural = child_nat;
910     }
911
912   if (priv->child2 && gtk_widget_get_visible (priv->child2))
913     {
914       get_preferred_size_for_size (priv->child2, orientation, size, &child_min, &child_nat);
915
916       if (priv->orientation == orientation)
917         {
918           *minimum += child_min;
919           *natural += child_nat;
920         }
921       else
922         {
923           *minimum = MAX (*minimum, child_min);
924           *natural = MAX (*natural, child_nat);
925         }
926     }
927
928   if (priv->child1 && gtk_widget_get_visible (priv->child1) &&
929       priv->child2 && gtk_widget_get_visible (priv->child2))
930     {
931       gint handle_size;
932
933       gtk_widget_style_get (widget, "handle-size", &handle_size, NULL);
934
935       if (priv->orientation == orientation)
936         {
937           *minimum += handle_size;
938           *natural += handle_size;
939         }
940     }
941 }
942
943 static void
944 gtk_paned_get_preferred_width (GtkWidget *widget,
945                                gint      *minimum,
946                                gint      *natural)
947 {
948   gtk_paned_get_preferred_size (widget, GTK_ORIENTATION_HORIZONTAL, -1, minimum, natural);
949 }
950
951 static void
952 gtk_paned_get_preferred_height (GtkWidget *widget,
953                                 gint      *minimum,
954                                 gint      *natural)
955 {
956   gtk_paned_get_preferred_size (widget, GTK_ORIENTATION_VERTICAL, -1, minimum, natural);
957 }
958
959 static void
960 gtk_paned_get_preferred_width_for_height (GtkWidget *widget,
961                                           gint       height,
962                                           gint      *minimum,
963                                           gint      *natural)
964 {
965   gtk_paned_get_preferred_size (widget, GTK_ORIENTATION_HORIZONTAL, height, minimum, natural);
966 }
967
968 static void
969 gtk_paned_get_preferred_height_for_width (GtkWidget *widget,
970                                           gint       width,
971                                           gint      *minimum,
972                                           gint      *natural)
973 {
974   gtk_paned_get_preferred_size (widget, GTK_ORIENTATION_VERTICAL, width, minimum, natural);
975 }
976
977 static void
978 flip_child (GtkWidget     *widget,
979             GtkAllocation *child_pos)
980 {
981   GtkAllocation allocation;
982   gint x, width;
983
984   gtk_widget_get_allocation (widget, &allocation);
985   x = allocation.x;
986   width = allocation.width;
987
988   child_pos->x = 2 * x + width - child_pos->x - child_pos->width;
989 }
990
991 static void
992 gtk_paned_set_child_visible (GtkPaned  *paned,
993                              guint      id,
994                              gboolean   visible)
995 {
996   GtkPanedPrivate *priv = paned->priv;
997   GtkWidget *child;
998
999   child = id == CHILD1 ? priv->child1 : priv->child2;
1000
1001   if (child == NULL)
1002     return;
1003
1004   gtk_widget_set_child_visible (child, visible);
1005
1006   if (gtk_widget_get_mapped (GTK_WIDGET (paned)))
1007     {
1008       GdkWindow *window = id == CHILD1 ? priv->child1_window : priv->child2_window;
1009
1010       if (visible != gdk_window_is_visible (window))
1011         {
1012           if (visible)
1013             gdk_window_show (window);
1014           else
1015             gdk_window_hide (window);
1016         }
1017     }
1018 }
1019
1020 static void
1021 gtk_paned_child_allocate (GtkWidget           *child,
1022                           GdkWindow           *child_window, /* can be NULL */
1023                           const GtkAllocation *window_allocation,
1024                           GtkAllocation       *child_allocation)
1025 {
1026   if (child_window)
1027     gdk_window_move_resize (child_window,
1028                             window_allocation->x, window_allocation->y,
1029                             window_allocation->width, window_allocation->height);
1030
1031   gtk_widget_size_allocate (child, child_allocation);
1032 }
1033
1034 static void
1035 gtk_paned_size_allocate (GtkWidget     *widget,
1036                          GtkAllocation *allocation)
1037 {
1038   GtkPaned *paned = GTK_PANED (widget);
1039   GtkPanedPrivate *priv = paned->priv;
1040
1041   gtk_widget_set_allocation (widget, allocation);
1042
1043   if (priv->child1 && gtk_widget_get_visible (priv->child1) &&
1044       priv->child2 && gtk_widget_get_visible (priv->child2))
1045     {
1046       GtkAllocation child1_allocation, window1_allocation;
1047       GtkAllocation child2_allocation, window2_allocation;
1048       GtkAllocation priv_child1_allocation;
1049       GdkRectangle old_handle_pos;
1050       gint handle_size;
1051
1052       gtk_widget_style_get (widget, "handle-size", &handle_size, NULL);
1053
1054       old_handle_pos = priv->handle_pos;
1055
1056       if (priv->orientation == GTK_ORIENTATION_HORIZONTAL)
1057         {
1058           gint child1_width, child2_width;
1059
1060           gtk_widget_get_preferred_width_for_height (priv->child1,
1061                                                      allocation->height,
1062                                                      &child1_width, NULL);
1063           gtk_widget_get_preferred_width_for_height (priv->child2,
1064                                                      allocation->height,
1065                                                      &child2_width, NULL);
1066
1067           gtk_paned_calc_position (paned,
1068                                    MAX (1, allocation->width - handle_size),
1069                                    child1_width,
1070                                    child2_width);
1071
1072           priv->handle_pos.x = allocation->x + priv->child1_size;
1073           priv->handle_pos.y = allocation->y;
1074           priv->handle_pos.width = handle_size;
1075           priv->handle_pos.height = allocation->height;
1076
1077           window1_allocation.height = window2_allocation.height = allocation->height;
1078           window1_allocation.width = MAX (1, priv->child1_size);
1079           window1_allocation.x = allocation->x;
1080           window1_allocation.y = window2_allocation.y = allocation->y;
1081
1082           window2_allocation.x = window1_allocation.x + priv->child1_size + priv->handle_pos.width;
1083           window2_allocation.width = MAX (1, allocation->x + allocation->width - window2_allocation.x);
1084
1085           if (gtk_widget_get_direction (GTK_WIDGET (widget)) == GTK_TEXT_DIR_RTL)
1086             {
1087               flip_child (widget, &(window2_allocation));
1088               flip_child (widget, &(window1_allocation));
1089               flip_child (widget, &(priv->handle_pos));
1090             }
1091
1092           child1_allocation.x = child1_allocation.y = 0;
1093           child1_allocation.width = window1_allocation.width;
1094           child1_allocation.height = window1_allocation.height;
1095           if (child1_width > child1_allocation.width)
1096             {
1097               if (gtk_widget_get_direction (GTK_WIDGET (widget)) == GTK_TEXT_DIR_LTR)
1098                 child1_allocation.x -= child1_width - child1_allocation.width;
1099               child1_allocation.width = child1_width;
1100             }
1101
1102           child2_allocation.x = child2_allocation.y = 0;
1103           child2_allocation.width = window2_allocation.width;
1104           child2_allocation.height = window2_allocation.height;
1105           if (child2_width > child2_allocation.width)
1106             {
1107               if (gtk_widget_get_direction (GTK_WIDGET (widget)) == GTK_TEXT_DIR_RTL)
1108                 child2_allocation.x -= child2_width - child2_allocation.width;
1109               child2_allocation.width = child2_width;
1110             }
1111         }
1112       else
1113         {
1114           gint child1_height, child2_height;
1115
1116           gtk_widget_get_preferred_height_for_width (priv->child1,
1117                                                      allocation->width,
1118                                                      &child1_height, NULL);
1119           gtk_widget_get_preferred_height_for_width (priv->child2,
1120                                                      allocation->width,
1121                                                      &child2_height, NULL);
1122
1123           gtk_paned_calc_position (paned,
1124                                    MAX (1, allocation->height - handle_size),
1125                                    child1_height,
1126                                    child2_height);
1127
1128           priv->handle_pos.x = allocation->x;
1129           priv->handle_pos.y = allocation->y + priv->child1_size;
1130           priv->handle_pos.width = allocation->width;
1131           priv->handle_pos.height = handle_size;
1132
1133           window1_allocation.width = window2_allocation.width = allocation->width;
1134           window1_allocation.height = MAX (1, priv->child1_size);
1135           window1_allocation.x = window2_allocation.x = allocation->x;
1136           window1_allocation.y = allocation->y;
1137
1138           window2_allocation.y = window1_allocation.y + priv->child1_size + priv->handle_pos.height;
1139           window2_allocation.height = MAX (1, allocation->y + allocation->height - window2_allocation.y);
1140
1141           child1_allocation.x = child1_allocation.y = 0;
1142           child1_allocation.width = window1_allocation.width;
1143           child1_allocation.height = window1_allocation.height;
1144           if (child1_height > child1_allocation.height)
1145             {
1146               child1_allocation.y -= child1_height - child1_allocation.height;
1147               child1_allocation.height = child1_height;
1148             }
1149
1150           child2_allocation.x = child2_allocation.y = 0;
1151           child2_allocation.width = window2_allocation.width;
1152           child2_allocation.height = window2_allocation.height;
1153           if (child2_height > child2_allocation.height)
1154             child2_allocation.height = child2_height;
1155         }
1156
1157       if (gtk_widget_get_mapped (widget) &&
1158           (old_handle_pos.x != priv->handle_pos.x ||
1159            old_handle_pos.y != priv->handle_pos.y ||
1160            old_handle_pos.width != priv->handle_pos.width ||
1161            old_handle_pos.height != priv->handle_pos.height))
1162         {
1163           GdkWindow *window;
1164
1165           window = gtk_widget_get_window (widget);
1166           gdk_window_invalidate_rect (window, &old_handle_pos, FALSE);
1167           gdk_window_invalidate_rect (window, &priv->handle_pos, FALSE);
1168         }
1169
1170       if (gtk_widget_get_realized (widget))
1171         {
1172           if (gtk_widget_get_mapped (widget))
1173             gdk_window_show (priv->handle);
1174
1175           if (priv->orientation == GTK_ORIENTATION_HORIZONTAL)
1176             {
1177               gdk_window_move_resize (priv->handle,
1178                                       priv->handle_pos.x,
1179                                       priv->handle_pos.y,
1180                                       handle_size,
1181                                       priv->handle_pos.height);
1182             }
1183           else
1184             {
1185               gdk_window_move_resize (priv->handle,
1186                                       priv->handle_pos.x,
1187                                       priv->handle_pos.y,
1188                                       priv->handle_pos.width,
1189                                       handle_size);
1190             }
1191         }
1192
1193       /* Now allocate the childen, making sure, when resizing not to
1194        * overlap the windows
1195        */
1196       gtk_widget_get_allocation (priv->child1, &priv_child1_allocation);
1197       if (gtk_widget_get_mapped (widget) &&
1198           ((priv->orientation == GTK_ORIENTATION_HORIZONTAL &&
1199             priv_child1_allocation.width < child1_allocation.width) ||
1200
1201            (priv->orientation == GTK_ORIENTATION_VERTICAL &&
1202             priv_child1_allocation.height < child1_allocation.height)))
1203         {
1204           gtk_paned_child_allocate (priv->child2,
1205                                     priv->child2_window,
1206                                     &window2_allocation,
1207                                     &child2_allocation);
1208           gtk_paned_child_allocate (priv->child1,
1209                                     priv->child1_window,
1210                                     &window1_allocation,
1211                                     &child1_allocation);
1212         }
1213       else
1214         {
1215           gtk_paned_child_allocate (priv->child1,
1216                                     priv->child1_window,
1217                                     &window1_allocation,
1218                                     &child1_allocation);
1219           gtk_paned_child_allocate (priv->child2,
1220                                     priv->child2_window,
1221                                     &window2_allocation,
1222                                     &child2_allocation);
1223         }
1224     }
1225   else
1226     {
1227       GtkAllocation window_allocation, child_allocation;
1228
1229       if (gtk_widget_get_realized (widget))
1230         gdk_window_hide (priv->handle);
1231
1232       window_allocation.x = allocation->x;
1233       window_allocation.y = allocation->y;
1234       window_allocation.width = allocation->width;
1235       window_allocation.height = allocation->height;
1236       child_allocation.x = child_allocation.y = 0;
1237       child_allocation.width = allocation->width;
1238       child_allocation.height = allocation->height;
1239
1240       if (priv->child1 && gtk_widget_get_visible (priv->child1))
1241         {
1242           gtk_paned_set_child_visible (paned, 0, TRUE);
1243           if (priv->child2)
1244             gtk_paned_set_child_visible (paned, 1, FALSE);
1245
1246           gtk_paned_child_allocate (priv->child1,
1247                                     priv->child1_window,
1248                                     &window_allocation,
1249                                     &child_allocation);
1250         }
1251       else if (priv->child2 && gtk_widget_get_visible (priv->child2))
1252         {
1253           gtk_paned_set_child_visible (paned, 1, TRUE);
1254           if (priv->child1)
1255             gtk_paned_set_child_visible (paned, 0, FALSE);
1256
1257           gtk_paned_child_allocate (priv->child2,
1258                                     priv->child2_window,
1259                                     &window_allocation,
1260                                     &child_allocation);
1261         }
1262       else
1263         {
1264           if (priv->child1)
1265             gtk_paned_set_child_visible (paned, 0, FALSE);
1266           if (priv->child2)
1267             gtk_paned_set_child_visible (paned, 1, FALSE);
1268         }
1269     }
1270 }
1271
1272 static GdkWindow *
1273 gtk_paned_create_child_window (GtkPaned  *paned,
1274                                GtkWidget *child) /* may be NULL */
1275 {
1276   GtkWidget *widget = GTK_WIDGET (paned);
1277   GtkPanedPrivate *priv = paned->priv;
1278   GdkWindow *window;
1279   GdkWindowAttr attributes;
1280   gint attributes_mask;
1281
1282   attributes.window_type = GDK_WINDOW_CHILD;
1283   attributes.wclass = GDK_INPUT_OUTPUT;
1284   attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK;
1285   if (child)
1286     {
1287       GtkAllocation allocation;
1288       int handle_size;
1289
1290       gtk_widget_style_get (widget, "handle-size", &handle_size, NULL);
1291
1292       gtk_widget_get_allocation (widget, &allocation);
1293       if (priv->orientation == GTK_ORIENTATION_HORIZONTAL &&
1294           child == priv->child2 && priv->child1 &&
1295           gtk_widget_get_visible (priv->child1))
1296         attributes.x = priv->handle_pos.x + handle_size;
1297       else
1298         attributes.x = allocation.x;
1299       if (priv->orientation == GTK_ORIENTATION_VERTICAL &&
1300           child == priv->child2 && priv->child1 &&
1301           gtk_widget_get_visible (priv->child1))
1302         attributes.y = priv->handle_pos.y + handle_size;
1303       else
1304         attributes.y = allocation.y;
1305
1306       gtk_widget_get_allocation (child, &allocation);
1307       attributes.width = allocation.width;
1308       attributes.height = allocation.height;
1309       attributes_mask = GDK_WA_X | GDK_WA_Y;
1310     }
1311   else
1312     {
1313       attributes.width = 1;
1314       attributes.height = 1;
1315       attributes_mask = 0;
1316     }
1317
1318   window = gdk_window_new (gtk_widget_get_window (widget),
1319                            &attributes, attributes_mask);
1320   gdk_window_set_user_data (window, paned);
1321   gtk_style_context_set_background (gtk_widget_get_style_context (widget), window);
1322
1323   if (child)
1324     gtk_widget_set_parent_window (child, window);
1325
1326   return window;
1327 }
1328
1329 static void
1330 gtk_paned_realize (GtkWidget *widget)
1331 {
1332   GtkPaned *paned = GTK_PANED (widget);
1333   GtkPanedPrivate *priv = paned->priv;
1334   GdkWindow *window;
1335   GdkWindowAttr attributes;
1336   gint attributes_mask;
1337
1338   gtk_widget_set_realized (widget, TRUE);
1339
1340   window = gtk_widget_get_parent_window (widget);
1341   gtk_widget_set_window (widget, window);
1342   g_object_ref (window);
1343
1344   attributes.window_type = GDK_WINDOW_CHILD;
1345   attributes.wclass = GDK_INPUT_ONLY;
1346   attributes.x = priv->handle_pos.x;
1347   attributes.y = priv->handle_pos.y;
1348   attributes.width = priv->handle_pos.width;
1349   attributes.height = priv->handle_pos.height;
1350   attributes.event_mask = gtk_widget_get_events (widget);
1351   attributes.event_mask |= (GDK_BUTTON_PRESS_MASK |
1352                             GDK_BUTTON_RELEASE_MASK |
1353                             GDK_ENTER_NOTIFY_MASK |
1354                             GDK_LEAVE_NOTIFY_MASK |
1355                             GDK_POINTER_MOTION_MASK |
1356                             GDK_POINTER_MOTION_HINT_MASK);
1357   attributes_mask = GDK_WA_X | GDK_WA_Y;
1358   if (gtk_widget_is_sensitive (widget))
1359     {
1360       attributes.cursor = gdk_cursor_new_for_display (gtk_widget_get_display (widget),
1361                                                       priv->cursor_type);
1362       attributes_mask |= GDK_WA_CURSOR;
1363     }
1364
1365   priv->handle = gdk_window_new (window,
1366                                  &attributes, attributes_mask);
1367   gdk_window_set_user_data (priv->handle, paned);
1368   if (attributes_mask & GDK_WA_CURSOR)
1369     g_object_unref (attributes.cursor);
1370
1371   priv->child1_window = gtk_paned_create_child_window (paned, priv->child1);
1372   priv->child2_window = gtk_paned_create_child_window (paned, priv->child2);
1373 }
1374
1375 static void
1376 gtk_paned_unrealize (GtkWidget *widget)
1377 {
1378   GtkPaned *paned = GTK_PANED (widget);
1379   GtkPanedPrivate *priv = paned->priv;
1380
1381   if (priv->child2)
1382     gtk_widget_set_parent_window (priv->child2, NULL);
1383   gdk_window_set_user_data (priv->child2_window, NULL);
1384   gdk_window_destroy (priv->child2_window);
1385   priv->child2_window = NULL;
1386
1387   if (priv->child1)
1388     gtk_widget_set_parent_window (priv->child1, NULL);
1389   gdk_window_set_user_data (priv->child1_window, NULL);
1390   gdk_window_destroy (priv->child1_window);
1391   priv->child1_window = NULL;
1392
1393   if (priv->handle)
1394     {
1395       gdk_window_set_user_data (priv->handle, NULL);
1396       gdk_window_destroy (priv->handle);
1397       priv->handle = NULL;
1398     }
1399
1400   gtk_paned_set_last_child1_focus (paned, NULL);
1401   gtk_paned_set_last_child2_focus (paned, NULL);
1402   gtk_paned_set_saved_focus (paned, NULL);
1403   gtk_paned_set_first_paned (paned, NULL);
1404
1405   GTK_WIDGET_CLASS (gtk_paned_parent_class)->unrealize (widget);
1406 }
1407
1408 static void
1409 gtk_paned_map (GtkWidget *widget)
1410 {
1411   GtkPaned *paned = GTK_PANED (widget);
1412   GtkPanedPrivate *priv = paned->priv;
1413
1414   if (priv->child1 && gtk_widget_get_visible (priv->child1) &&
1415       priv->child2 && gtk_widget_get_visible (priv->child2))
1416     gdk_window_show (priv->handle);
1417
1418   if (priv->child1 && gtk_widget_get_visible (priv->child1) && gtk_widget_get_child_visible (priv->child1))
1419     gdk_window_show (priv->child1_window);
1420   if (priv->child2 && gtk_widget_get_visible (priv->child2) && gtk_widget_get_child_visible (priv->child2))
1421     gdk_window_show (priv->child2_window);
1422
1423   GTK_WIDGET_CLASS (gtk_paned_parent_class)->map (widget);
1424 }
1425
1426 static void
1427 gtk_paned_unmap (GtkWidget *widget)
1428 {
1429   GtkPaned *paned = GTK_PANED (widget);
1430   GtkPanedPrivate *priv = paned->priv;
1431
1432   gdk_window_hide (priv->handle);
1433   
1434   if (gdk_window_is_visible (priv->child1_window))
1435     gdk_window_hide (priv->child1_window);
1436   if (gdk_window_is_visible (priv->child2_window))
1437     gdk_window_hide (priv->child2_window);
1438
1439   GTK_WIDGET_CLASS (gtk_paned_parent_class)->unmap (widget);
1440 }
1441
1442 static gboolean
1443 gtk_paned_draw (GtkWidget *widget,
1444                 cairo_t   *cr)
1445 {
1446   GtkPaned *paned = GTK_PANED (widget);
1447   GtkPanedPrivate *priv = paned->priv;
1448
1449   if (gtk_cairo_should_draw_window (cr, priv->child1_window))
1450     {
1451       cairo_save (cr);
1452       gtk_cairo_transform_to_window (cr, widget, priv->child1_window);
1453       gtk_render_background (gtk_widget_get_style_context (widget),
1454                              cr,
1455                              0, 0,
1456                              gdk_window_get_width (priv->child1_window),
1457                              gdk_window_get_height (priv->child1_window));
1458       cairo_restore (cr);
1459     }
1460
1461   if (gtk_cairo_should_draw_window (cr, priv->child2_window))
1462     {
1463       cairo_save (cr);
1464       gtk_cairo_transform_to_window (cr, widget, priv->child2_window);
1465       gtk_render_background (gtk_widget_get_style_context (widget),
1466                              cr,
1467                              0, 0,
1468                              gdk_window_get_width (priv->child2_window),
1469                              gdk_window_get_height (priv->child2_window));
1470       cairo_restore (cr);
1471     }
1472
1473   if (gtk_cairo_should_draw_window (cr, gtk_widget_get_window (widget)) &&
1474       priv->child1 && gtk_widget_get_visible (priv->child1) &&
1475       priv->child2 && gtk_widget_get_visible (priv->child2))
1476     {
1477       GtkStyleContext *context;
1478       GtkStateFlags state;
1479       GtkAllocation allocation;
1480
1481       gtk_widget_get_allocation (widget, &allocation);
1482       context = gtk_widget_get_style_context (widget);
1483       state = gtk_widget_get_state_flags (widget);
1484
1485       if (gtk_widget_is_focus (widget))
1486         state |= GTK_STATE_FLAG_SELECTED;
1487       if (priv->handle_prelit)
1488         state |= GTK_STATE_FLAG_PRELIGHT;
1489
1490       gtk_style_context_save (context);
1491       gtk_style_context_set_state (context, state);
1492       gtk_style_context_add_class (context, GTK_STYLE_CLASS_PANE_SEPARATOR);
1493       gtk_render_handle (context, cr,
1494                          priv->handle_pos.x - allocation.x,
1495                          priv->handle_pos.y - allocation.y,
1496                          priv->handle_pos.width,
1497                          priv->handle_pos.height);
1498
1499       gtk_style_context_restore (context);
1500     }
1501
1502   /* Chain up to draw children */
1503   GTK_WIDGET_CLASS (gtk_paned_parent_class)->draw (widget, cr);
1504   
1505   return FALSE;
1506 }
1507
1508 static gboolean
1509 is_rtl (GtkPaned *paned)
1510 {
1511   GtkPanedPrivate *priv = paned->priv;
1512
1513   if (priv->orientation == GTK_ORIENTATION_HORIZONTAL &&
1514       gtk_widget_get_direction (GTK_WIDGET (paned)) == GTK_TEXT_DIR_RTL)
1515     {
1516       return TRUE;
1517     }
1518
1519   return FALSE;
1520 }
1521
1522 static void
1523 update_drag (GtkPaned *paned)
1524 {
1525   GtkPanedPrivate *priv = paned->priv;
1526   GtkAllocation allocation;
1527   GtkWidget *widget = GTK_WIDGET (paned);
1528   gint pos;
1529   gint handle_size;
1530   gint size;
1531
1532   if (priv->orientation == GTK_ORIENTATION_HORIZONTAL)
1533     gtk_widget_get_pointer (widget, &pos, NULL);
1534   else
1535     gtk_widget_get_pointer (widget, NULL, &pos);
1536
1537   pos -= priv->drag_pos;
1538
1539   if (is_rtl (paned))
1540     {
1541       gtk_widget_style_get (widget,
1542                             "handle-size", &handle_size,
1543                             NULL);
1544
1545       gtk_widget_get_allocation (widget, &allocation);
1546       size = allocation.width - pos - handle_size;
1547     }
1548   else
1549     {
1550       size = pos;
1551     }
1552
1553   size = CLAMP (size, priv->min_position, priv->max_position);
1554
1555   if (size != priv->child1_size)
1556     gtk_paned_set_position (paned, size);
1557 }
1558
1559 static gboolean
1560 gtk_paned_enter (GtkWidget        *widget,
1561                  GdkEventCrossing *event)
1562 {
1563   GtkPaned *paned = GTK_PANED (widget);
1564   GtkPanedPrivate *priv = paned->priv;
1565
1566   if (priv->in_drag)
1567     update_drag (paned);
1568   else
1569     {
1570       priv->handle_prelit = TRUE;
1571       gtk_widget_queue_draw_area (widget,
1572                                   priv->handle_pos.x,
1573                                   priv->handle_pos.y,
1574                                   priv->handle_pos.width,
1575                                   priv->handle_pos.height);
1576     }
1577   
1578   return TRUE;
1579 }
1580
1581 static gboolean
1582 gtk_paned_leave (GtkWidget        *widget,
1583                  GdkEventCrossing *event)
1584 {
1585   GtkPaned *paned = GTK_PANED (widget);
1586   GtkPanedPrivate *priv = paned->priv;
1587
1588   if (priv->in_drag)
1589     update_drag (paned);
1590   else
1591     {
1592       priv->handle_prelit = FALSE;
1593       gtk_widget_queue_draw_area (widget,
1594                                   priv->handle_pos.x,
1595                                   priv->handle_pos.y,
1596                                   priv->handle_pos.width,
1597                                   priv->handle_pos.height);
1598     }
1599
1600   return TRUE;
1601 }
1602
1603 static gboolean
1604 gtk_paned_focus (GtkWidget        *widget,
1605                  GtkDirectionType  direction)
1606
1607 {
1608   gboolean retval;
1609   
1610   /* This is a hack, but how can this be done without
1611    * excessive cut-and-paste from gtkcontainer.c?
1612    */
1613
1614   gtk_widget_set_can_focus (widget, FALSE);
1615   retval = GTK_WIDGET_CLASS (gtk_paned_parent_class)->focus (widget, direction);
1616   gtk_widget_set_can_focus (widget, TRUE);
1617
1618   return retval;
1619 }
1620
1621 static gboolean
1622 gtk_paned_button_press (GtkWidget      *widget,
1623                         GdkEventButton *event)
1624 {
1625   GtkPaned *paned = GTK_PANED (widget);
1626   GtkPanedPrivate *priv = paned->priv;
1627
1628   if (!priv->in_drag &&
1629       (event->window == priv->handle) && (event->button == 1))
1630     {
1631       /* We need a server grab here, not gtk_grab_add(), since
1632        * we don't want to pass events on to the widget's children */
1633       if (gdk_device_grab (event->device,
1634                            priv->handle,
1635                            GDK_OWNERSHIP_WINDOW, FALSE,
1636                            GDK_POINTER_MOTION_HINT_MASK
1637                            | GDK_BUTTON1_MOTION_MASK
1638                            | GDK_BUTTON_RELEASE_MASK
1639                            | GDK_ENTER_NOTIFY_MASK
1640                            | GDK_LEAVE_NOTIFY_MASK,
1641                            NULL, event->time) != GDK_GRAB_SUCCESS)
1642         return FALSE;
1643
1644       priv->in_drag = TRUE;
1645       priv->grab_time = event->time;
1646       priv->grab_device = event->device;
1647
1648       if (priv->orientation == GTK_ORIENTATION_HORIZONTAL)
1649         priv->drag_pos = event->x;
1650       else
1651         priv->drag_pos = event->y;
1652
1653       return TRUE;
1654     }
1655
1656   return FALSE;
1657 }
1658
1659 static gboolean
1660 gtk_paned_grab_broken (GtkWidget          *widget,
1661                        GdkEventGrabBroken *event)
1662 {
1663   GtkPaned *paned = GTK_PANED (widget);
1664   GtkPanedPrivate *priv = paned->priv;
1665
1666   priv->in_drag = FALSE;
1667   priv->drag_pos = -1;
1668   priv->position_set = TRUE;
1669
1670   return TRUE;
1671 }
1672
1673 static void
1674 stop_drag (GtkPaned *paned)
1675 {
1676   GtkPanedPrivate *priv = paned->priv;
1677
1678   priv->in_drag = FALSE;
1679   priv->drag_pos = -1;
1680   priv->position_set = TRUE;
1681
1682   gdk_device_ungrab (priv->grab_device,
1683                      priv->grab_time);
1684   priv->grab_device = NULL;
1685 }
1686
1687 static void
1688 gtk_paned_grab_notify (GtkWidget *widget,
1689                        gboolean   was_grabbed)
1690 {
1691   GtkPaned *paned = GTK_PANED (widget);
1692   GtkPanedPrivate *priv = paned->priv;
1693   GdkDevice *grab_device;
1694
1695   grab_device = priv->grab_device;
1696
1697   if (priv->in_drag && grab_device &&
1698       gtk_widget_device_is_shadowed (widget, grab_device))
1699     stop_drag (paned);
1700 }
1701
1702 static void
1703 gtk_paned_state_flags_changed (GtkWidget     *widget,
1704                                GtkStateFlags  previous_state)
1705 {
1706   GtkPaned *paned = GTK_PANED (widget);
1707   GtkPanedPrivate *priv = paned->priv;
1708   GdkCursor *cursor;
1709
1710   if (gtk_widget_get_realized (widget))
1711     {
1712       if (gtk_widget_is_sensitive (widget))
1713         cursor = gdk_cursor_new_for_display (gtk_widget_get_display (widget),
1714                                              priv->cursor_type);
1715       else
1716         cursor = NULL;
1717
1718       gdk_window_set_cursor (priv->handle, cursor);
1719
1720       if (cursor)
1721         g_object_unref (cursor);
1722     }
1723 }
1724
1725 static gboolean
1726 gtk_paned_button_release (GtkWidget      *widget,
1727                           GdkEventButton *event)
1728 {
1729   GtkPaned *paned = GTK_PANED (widget);
1730   GtkPanedPrivate *priv = paned->priv;
1731
1732   if (priv->in_drag && (event->button == 1))
1733     {
1734       stop_drag (paned);
1735
1736       return TRUE;
1737     }
1738
1739   return FALSE;
1740 }
1741
1742 static gboolean
1743 gtk_paned_motion (GtkWidget      *widget,
1744                   GdkEventMotion *event)
1745 {
1746   GtkPaned *paned = GTK_PANED (widget);
1747   GtkPanedPrivate *priv = paned->priv;
1748
1749   if (priv->in_drag)
1750     {
1751       update_drag (paned);
1752       return TRUE;
1753     }
1754   
1755   return FALSE;
1756 }
1757
1758 /**
1759  * gtk_paned_new:
1760  * @orientation: the paned's orientation.
1761  *
1762  * Creates a new #GtkPaned widget.
1763  *
1764  * Return value: a new #GtkPaned.
1765  *
1766  * Since: 3.0
1767  **/
1768 GtkWidget *
1769 gtk_paned_new (GtkOrientation orientation)
1770 {
1771   return g_object_new (GTK_TYPE_PANED,
1772                        "orientation", orientation,
1773                        NULL);
1774 }
1775
1776 /**
1777  * gtk_paned_add1:
1778  * @paned: a paned widget
1779  * @child: the child to add
1780  *
1781  * Adds a child to the top or left pane with default parameters. This is
1782  * equivalent to
1783  * <literal>gtk_paned_pack1 (paned, child, FALSE, TRUE)</literal>.
1784  */
1785 void
1786 gtk_paned_add1 (GtkPaned  *paned,
1787                 GtkWidget *widget)
1788 {
1789   gtk_paned_pack1 (paned, widget, FALSE, TRUE);
1790 }
1791
1792 /**
1793  * gtk_paned_add2:
1794  * @paned: a paned widget
1795  * @child: the child to add
1796  *
1797  * Adds a child to the bottom or right pane with default parameters. This
1798  * is equivalent to
1799  * <literal>gtk_paned_pack2 (paned, child, TRUE, TRUE)</literal>.
1800  */
1801 void
1802 gtk_paned_add2 (GtkPaned  *paned,
1803                 GtkWidget *widget)
1804 {
1805   gtk_paned_pack2 (paned, widget, TRUE, TRUE);
1806 }
1807
1808 /**
1809  * gtk_paned_pack1:
1810  * @paned: a paned widget
1811  * @child: the child to add
1812  * @resize: should this child expand when the paned widget is resized.
1813  * @shrink: can this child be made smaller than its requisition.
1814  *
1815  * Adds a child to the top or left pane.
1816  */
1817 void
1818 gtk_paned_pack1 (GtkPaned  *paned,
1819                  GtkWidget *child,
1820                  gboolean   resize,
1821                  gboolean   shrink)
1822 {
1823   GtkPanedPrivate *priv;
1824
1825   g_return_if_fail (GTK_IS_PANED (paned));
1826   g_return_if_fail (GTK_IS_WIDGET (child));
1827
1828   priv = paned->priv;
1829
1830   if (!priv->child1)
1831     {
1832       priv->child1 = child;
1833       priv->child1_resize = resize;
1834       priv->child1_shrink = shrink;
1835
1836       gtk_widget_set_parent_window (child, priv->child1_window);
1837       gtk_widget_set_parent (child, GTK_WIDGET (paned));
1838     }
1839 }
1840
1841 /**
1842  * gtk_paned_pack2:
1843  * @paned: a paned widget
1844  * @child: the child to add
1845  * @resize: should this child expand when the paned widget is resized.
1846  * @shrink: can this child be made smaller than its requisition.
1847  *
1848  * Adds a child to the bottom or right pane.
1849  */
1850 void
1851 gtk_paned_pack2 (GtkPaned  *paned,
1852                  GtkWidget *child,
1853                  gboolean   resize,
1854                  gboolean   shrink)
1855 {
1856   GtkPanedPrivate *priv;
1857
1858   g_return_if_fail (GTK_IS_PANED (paned));
1859   g_return_if_fail (GTK_IS_WIDGET (child));
1860
1861   priv = paned->priv;
1862
1863   if (!priv->child2)
1864     {
1865       priv->child2 = child;
1866       priv->child2_resize = resize;
1867       priv->child2_shrink = shrink;
1868
1869       gtk_widget_set_parent_window (child, priv->child2_window);
1870       gtk_widget_set_parent (child, GTK_WIDGET (paned));
1871     }
1872 }
1873
1874
1875 static void
1876 gtk_paned_add (GtkContainer *container,
1877                GtkWidget    *widget)
1878 {
1879   GtkPanedPrivate *priv;
1880   GtkPaned *paned;
1881
1882   g_return_if_fail (GTK_IS_PANED (container));
1883
1884   paned = GTK_PANED (container);
1885   priv = paned->priv;
1886
1887   if (!priv->child1)
1888     gtk_paned_add1 (paned, widget);
1889   else if (!priv->child2)
1890     gtk_paned_add2 (paned, widget);
1891   else
1892     g_warning ("GtkPaned cannot have more than 2 children\n");
1893 }
1894
1895 static void
1896 gtk_paned_remove (GtkContainer *container,
1897                   GtkWidget    *widget)
1898 {
1899   GtkPaned *paned = GTK_PANED (container);
1900   GtkPanedPrivate *priv = paned->priv;
1901   gboolean was_visible;
1902
1903   was_visible = gtk_widget_get_visible (widget);
1904
1905   if (priv->child1 == widget)
1906     {
1907       if (priv->child1_window && gdk_window_is_visible (priv->child1_window))
1908         gdk_window_hide (priv->child1_window);
1909
1910       gtk_widget_unparent (widget);
1911
1912       priv->child1 = NULL;
1913
1914       if (was_visible && gtk_widget_get_visible (GTK_WIDGET (container)))
1915         gtk_widget_queue_resize_no_redraw (GTK_WIDGET (container));
1916     }
1917   else if (priv->child2 == widget)
1918     {
1919       if (priv->child2_window && gdk_window_is_visible (priv->child2_window))
1920         gdk_window_hide (priv->child2_window);
1921
1922       gtk_widget_unparent (widget);
1923
1924       priv->child2 = NULL;
1925
1926       if (was_visible && gtk_widget_get_visible (GTK_WIDGET (container)))
1927         gtk_widget_queue_resize_no_redraw (GTK_WIDGET (container));
1928     }
1929 }
1930
1931 static void
1932 gtk_paned_forall (GtkContainer *container,
1933                   gboolean      include_internals,
1934                   GtkCallback   callback,
1935                   gpointer      callback_data)
1936 {
1937   GtkPanedPrivate *priv;
1938   GtkPaned *paned;
1939
1940   g_return_if_fail (callback != NULL);
1941
1942   paned = GTK_PANED (container);
1943   priv = paned->priv;
1944
1945   if (priv->child1)
1946     (*callback) (priv->child1, callback_data);
1947   if (priv->child2)
1948     (*callback) (priv->child2, callback_data);
1949 }
1950
1951 /**
1952  * gtk_paned_get_position:
1953  * @paned: a #GtkPaned widget
1954  * 
1955  * Obtains the position of the divider between the two panes.
1956  * 
1957  * Return value: position of the divider
1958  **/
1959 gint
1960 gtk_paned_get_position (GtkPaned  *paned)
1961 {
1962   g_return_val_if_fail (GTK_IS_PANED (paned), 0);
1963
1964   return paned->priv->child1_size;
1965 }
1966
1967 /**
1968  * gtk_paned_set_position:
1969  * @paned: a #GtkPaned widget
1970  * @position: pixel position of divider, a negative value means that the position
1971  *            is unset.
1972  * 
1973  * Sets the position of the divider between the two panes.
1974  **/
1975 void
1976 gtk_paned_set_position (GtkPaned *paned,
1977                         gint      position)
1978 {
1979   GtkPanedPrivate *priv;
1980   GObject *object;
1981
1982   g_return_if_fail (GTK_IS_PANED (paned));
1983
1984   priv = paned->priv;
1985
1986   if (priv->child1_size == position)
1987     return;
1988
1989   object = G_OBJECT (paned);
1990   
1991   if (position >= 0)
1992     {
1993       /* We don't clamp here - the assumption is that
1994        * if the total allocation changes at the same time
1995        * as the position, the position set is with reference
1996        * to the new total size. If only the position changes,
1997        * then clamping will occur in gtk_paned_calc_position()
1998        */
1999
2000       priv->child1_size = position;
2001       priv->position_set = TRUE;
2002     }
2003   else
2004     {
2005       priv->position_set = FALSE;
2006     }
2007
2008   g_object_freeze_notify (object);
2009   g_object_notify (object, "position");
2010   g_object_notify (object, "position-set");
2011   g_object_thaw_notify (object);
2012
2013   gtk_widget_queue_resize_no_redraw (GTK_WIDGET (paned));
2014
2015 #ifdef G_OS_WIN32
2016   /* Hacky work-around for bug #144269 */
2017   if (priv->child2 != NULL)
2018     {
2019       gtk_widget_queue_draw (priv->child2);
2020     }
2021 #endif
2022 }
2023
2024 /**
2025  * gtk_paned_get_child1:
2026  * @paned: a #GtkPaned widget
2027  * 
2028  * Obtains the first child of the paned widget.
2029  * 
2030  * Return value: (transfer none): first child, or %NULL if it is not set.
2031  *
2032  * Since: 2.4
2033  **/
2034 GtkWidget *
2035 gtk_paned_get_child1 (GtkPaned *paned)
2036 {
2037   g_return_val_if_fail (GTK_IS_PANED (paned), NULL);
2038
2039   return paned->priv->child1;
2040 }
2041
2042 /**
2043  * gtk_paned_get_child2:
2044  * @paned: a #GtkPaned widget
2045  * 
2046  * Obtains the second child of the paned widget.
2047  * 
2048  * Return value: (transfer none): second child, or %NULL if it is not set.
2049  *
2050  * Since: 2.4
2051  **/
2052 GtkWidget *
2053 gtk_paned_get_child2 (GtkPaned *paned)
2054 {
2055   g_return_val_if_fail (GTK_IS_PANED (paned), NULL);
2056
2057   return paned->priv->child2;
2058 }
2059
2060 static void
2061 gtk_paned_calc_position (GtkPaned *paned,
2062                          gint      allocation,
2063                          gint      child1_req,
2064                          gint      child2_req)
2065 {
2066   GtkPanedPrivate *priv = paned->priv;
2067   gint old_position;
2068   gint old_min_position;
2069   gint old_max_position;
2070
2071   old_position = priv->child1_size;
2072   old_min_position = priv->min_position;
2073   old_max_position = priv->max_position;
2074
2075   priv->min_position = priv->child1_shrink ? 0 : child1_req;
2076
2077   priv->max_position = allocation;
2078   if (!priv->child2_shrink)
2079     priv->max_position = MAX (1, priv->max_position - child2_req);
2080   priv->max_position = MAX (priv->min_position, priv->max_position);
2081
2082   if (!priv->position_set)
2083     {
2084       if (priv->child1_resize && !priv->child2_resize)
2085         priv->child1_size = MAX (0, allocation - child2_req);
2086       else if (!priv->child1_resize && priv->child2_resize)
2087         priv->child1_size = child1_req;
2088       else if (child1_req + child2_req != 0)
2089         priv->child1_size = allocation * ((gdouble)child1_req / (child1_req + child2_req)) + 0.5;
2090       else
2091         priv->child1_size = allocation * 0.5 + 0.5;
2092     }
2093   else
2094     {
2095       /* If the position was set before the initial allocation.
2096        * (priv->last_allocation <= 0) just clamp it and leave it.
2097        */
2098       if (priv->last_allocation > 0)
2099         {
2100           if (priv->child1_resize && !priv->child2_resize)
2101             priv->child1_size += allocation - priv->last_allocation;
2102           else if (!(!priv->child1_resize && priv->child2_resize))
2103             priv->child1_size = allocation * ((gdouble) priv->child1_size / (priv->last_allocation)) + 0.5;
2104         }
2105     }
2106
2107   priv->child1_size = CLAMP (priv->child1_size,
2108                               priv->min_position,
2109                               priv->max_position);
2110
2111   if (priv->child1)
2112     gtk_paned_set_child_visible (paned, 0, priv->child1_size != 0);
2113   
2114   if (priv->child2)
2115     gtk_paned_set_child_visible (paned, 1, priv->child1_size != allocation); 
2116
2117   g_object_freeze_notify (G_OBJECT (paned));
2118   if (priv->child1_size != old_position)
2119     g_object_notify (G_OBJECT (paned), "position");
2120   if (priv->min_position != old_min_position)
2121     g_object_notify (G_OBJECT (paned), "min-position");
2122   if (priv->max_position != old_max_position)
2123     g_object_notify (G_OBJECT (paned), "max-position");
2124   g_object_thaw_notify (G_OBJECT (paned));
2125
2126   priv->last_allocation = allocation;
2127 }
2128
2129 static void
2130 gtk_paned_set_saved_focus (GtkPaned *paned, GtkWidget *widget)
2131 {
2132   GtkPanedPrivate *priv = paned->priv;
2133
2134   if (priv->saved_focus)
2135     g_object_remove_weak_pointer (G_OBJECT (priv->saved_focus),
2136                                   (gpointer *)&(priv->saved_focus));
2137
2138   priv->saved_focus = widget;
2139
2140   if (priv->saved_focus)
2141     g_object_add_weak_pointer (G_OBJECT (priv->saved_focus),
2142                                (gpointer *)&(priv->saved_focus));
2143 }
2144
2145 static void
2146 gtk_paned_set_first_paned (GtkPaned *paned, GtkPaned *first_paned)
2147 {
2148   GtkPanedPrivate *priv = paned->priv;
2149
2150   if (priv->first_paned)
2151     g_object_remove_weak_pointer (G_OBJECT (priv->first_paned),
2152                                   (gpointer *)&(priv->first_paned));
2153
2154   priv->first_paned = first_paned;
2155
2156   if (priv->first_paned)
2157     g_object_add_weak_pointer (G_OBJECT (priv->first_paned),
2158                                (gpointer *)&(priv->first_paned));
2159 }
2160
2161 static void
2162 gtk_paned_set_last_child1_focus (GtkPaned *paned, GtkWidget *widget)
2163 {
2164   GtkPanedPrivate *priv = paned->priv;
2165
2166   if (priv->last_child1_focus)
2167     g_object_remove_weak_pointer (G_OBJECT (priv->last_child1_focus),
2168                                   (gpointer *)&(priv->last_child1_focus));
2169
2170   priv->last_child1_focus = widget;
2171
2172   if (priv->last_child1_focus)
2173     g_object_add_weak_pointer (G_OBJECT (priv->last_child1_focus),
2174                                (gpointer *)&(priv->last_child1_focus));
2175 }
2176
2177 static void
2178 gtk_paned_set_last_child2_focus (GtkPaned *paned, GtkWidget *widget)
2179 {
2180   GtkPanedPrivate *priv = paned->priv;
2181
2182   if (priv->last_child2_focus)
2183     g_object_remove_weak_pointer (G_OBJECT (priv->last_child2_focus),
2184                                   (gpointer *)&(priv->last_child2_focus));
2185
2186   priv->last_child2_focus = widget;
2187
2188   if (priv->last_child2_focus)
2189     g_object_add_weak_pointer (G_OBJECT (priv->last_child2_focus),
2190                                (gpointer *)&(priv->last_child2_focus));
2191 }
2192
2193 static GtkWidget *
2194 paned_get_focus_widget (GtkPaned *paned)
2195 {
2196   GtkWidget *toplevel;
2197
2198   toplevel = gtk_widget_get_toplevel (GTK_WIDGET (paned));
2199   if (gtk_widget_is_toplevel (toplevel))
2200     return gtk_window_get_focus (GTK_WINDOW (toplevel));
2201
2202   return NULL;
2203 }
2204
2205 static void
2206 gtk_paned_set_focus_child (GtkContainer *container,
2207                            GtkWidget    *focus_child)
2208 {
2209   GtkPaned *paned;
2210   GtkPanedPrivate *priv;
2211   GtkWidget *container_focus_child;
2212
2213   g_return_if_fail (GTK_IS_PANED (container));
2214
2215   paned = GTK_PANED (container);
2216   priv = paned->priv;
2217
2218   if (focus_child == NULL)
2219     {
2220       GtkWidget *last_focus;
2221       GtkWidget *w;
2222       
2223       last_focus = paned_get_focus_widget (paned);
2224
2225       if (last_focus)
2226         {
2227           /* If there is one or more paned widgets between us and the
2228            * focus widget, we want the topmost of those as last_focus
2229            */
2230           for (w = last_focus; w != GTK_WIDGET (paned); w = gtk_widget_get_parent (w))
2231             if (GTK_IS_PANED (w))
2232               last_focus = w;
2233
2234           container_focus_child = gtk_container_get_focus_child (container);
2235           if (container_focus_child == priv->child1)
2236             gtk_paned_set_last_child1_focus (paned, last_focus);
2237           else if (container_focus_child == priv->child2)
2238             gtk_paned_set_last_child2_focus (paned, last_focus);
2239         }
2240     }
2241
2242   if (GTK_CONTAINER_CLASS (gtk_paned_parent_class)->set_focus_child)
2243     GTK_CONTAINER_CLASS (gtk_paned_parent_class)->set_focus_child (container, focus_child);
2244 }
2245
2246 static void
2247 gtk_paned_get_cycle_chain (GtkPaned          *paned,
2248                            GtkDirectionType   direction,
2249                            GList            **widgets)
2250 {
2251   GtkPanedPrivate *priv = paned->priv;
2252   GtkContainer *container = GTK_CONTAINER (paned);
2253   GtkWidget *ancestor = NULL;
2254   GtkWidget *focus_child;
2255   GtkWidget *parent;
2256   GtkWidget *widget = GTK_WIDGET (paned);
2257   GList *temp_list = NULL;
2258   GList *list;
2259
2260   if (priv->in_recursion)
2261     return;
2262
2263   g_assert (widgets != NULL);
2264
2265   if (priv->last_child1_focus &&
2266       !gtk_widget_is_ancestor (priv->last_child1_focus, widget))
2267     {
2268       gtk_paned_set_last_child1_focus (paned, NULL);
2269     }
2270
2271   if (priv->last_child2_focus &&
2272       !gtk_widget_is_ancestor (priv->last_child2_focus, widget))
2273     {
2274       gtk_paned_set_last_child2_focus (paned, NULL);
2275     }
2276
2277   parent = gtk_widget_get_parent (widget);
2278   if (parent)
2279     ancestor = gtk_widget_get_ancestor (parent, GTK_TYPE_PANED);
2280
2281   /* The idea here is that temp_list is a list of widgets we want to cycle
2282    * to. The list is prioritized so that the first element is our first
2283    * choice, the next our second, and so on.
2284    *
2285    * We can't just use g_list_reverse(), because we want to try
2286    * priv->last_child?_focus before priv->child?, both when we
2287    * are going forward and backward.
2288    */
2289   focus_child = gtk_container_get_focus_child (container);
2290   if (direction == GTK_DIR_TAB_FORWARD)
2291     {
2292       if (focus_child == priv->child1)
2293         {
2294           temp_list = g_list_append (temp_list, priv->last_child2_focus);
2295           temp_list = g_list_append (temp_list, priv->child2);
2296           temp_list = g_list_append (temp_list, ancestor);
2297         }
2298       else if (focus_child == priv->child2)
2299         {
2300           temp_list = g_list_append (temp_list, ancestor);
2301           temp_list = g_list_append (temp_list, priv->last_child1_focus);
2302           temp_list = g_list_append (temp_list, priv->child1);
2303         }
2304       else
2305         {
2306           temp_list = g_list_append (temp_list, priv->last_child1_focus);
2307           temp_list = g_list_append (temp_list, priv->child1);
2308           temp_list = g_list_append (temp_list, priv->last_child2_focus);
2309           temp_list = g_list_append (temp_list, priv->child2);
2310           temp_list = g_list_append (temp_list, ancestor);
2311         }
2312     }
2313   else
2314     {
2315       if (focus_child == priv->child1)
2316         {
2317           temp_list = g_list_append (temp_list, ancestor);
2318           temp_list = g_list_append (temp_list, priv->last_child2_focus);
2319           temp_list = g_list_append (temp_list, priv->child2);
2320         }
2321       else if (focus_child == priv->child2)
2322         {
2323           temp_list = g_list_append (temp_list, priv->last_child1_focus);
2324           temp_list = g_list_append (temp_list, priv->child1);
2325           temp_list = g_list_append (temp_list, ancestor);
2326         }
2327       else
2328         {
2329           temp_list = g_list_append (temp_list, priv->last_child2_focus);
2330           temp_list = g_list_append (temp_list, priv->child2);
2331           temp_list = g_list_append (temp_list, priv->last_child1_focus);
2332           temp_list = g_list_append (temp_list, priv->child1);
2333           temp_list = g_list_append (temp_list, ancestor);
2334         }
2335     }
2336
2337   /* Walk the list and expand all the paned widgets. */
2338   for (list = temp_list; list != NULL; list = list->next)
2339     {
2340       GtkWidget *widget = list->data;
2341
2342       if (widget)
2343         {
2344           if (GTK_IS_PANED (widget))
2345             {
2346               priv->in_recursion = TRUE;
2347               gtk_paned_get_cycle_chain (GTK_PANED (widget), direction, widgets);
2348               priv->in_recursion = FALSE;
2349             }
2350           else
2351             {
2352               *widgets = g_list_append (*widgets, widget);
2353             }
2354         }
2355     }
2356
2357   g_list_free (temp_list);
2358 }
2359
2360 static gboolean
2361 gtk_paned_cycle_child_focus (GtkPaned *paned,
2362                              gboolean  reversed)
2363 {
2364   GList *cycle_chain = NULL;
2365   GList *list;
2366   
2367   GtkDirectionType direction = reversed? GTK_DIR_TAB_BACKWARD : GTK_DIR_TAB_FORWARD;
2368
2369   /* ignore f6 if the handle is focused */
2370   if (gtk_widget_is_focus (GTK_WIDGET (paned)))
2371     return TRUE;
2372   
2373   /* we can't just let the event propagate up the hierarchy,
2374    * because the paned will want to cycle focus _unless_ an
2375    * ancestor paned handles the event
2376    */
2377   gtk_paned_get_cycle_chain (paned, direction, &cycle_chain);
2378
2379   for (list = cycle_chain; list != NULL; list = list->next)
2380     if (gtk_widget_child_focus (GTK_WIDGET (list->data), direction))
2381       break;
2382
2383   g_list_free (cycle_chain);
2384   
2385   return TRUE;
2386 }
2387
2388 static void
2389 get_child_panes (GtkWidget  *widget,
2390                  GList     **panes)
2391 {
2392   if (!widget || !gtk_widget_get_realized (widget))
2393     return;
2394
2395   if (GTK_IS_PANED (widget))
2396     {
2397       GtkPaned *paned = GTK_PANED (widget);
2398       GtkPanedPrivate *priv = paned->priv;
2399
2400       get_child_panes (priv->child1, panes);
2401       *panes = g_list_prepend (*panes, widget);
2402       get_child_panes (priv->child2, panes);
2403     }
2404   else if (GTK_IS_CONTAINER (widget))
2405     {
2406       gtk_container_forall (GTK_CONTAINER (widget),
2407                             (GtkCallback)get_child_panes, panes);
2408     }
2409 }
2410
2411 static GList *
2412 get_all_panes (GtkPaned *paned)
2413 {
2414   GtkPaned *topmost = NULL;
2415   GList *result = NULL;
2416   GtkWidget *w;
2417
2418   for (w = GTK_WIDGET (paned); w != NULL; w = gtk_widget_get_parent (w))
2419     {
2420       if (GTK_IS_PANED (w))
2421         topmost = GTK_PANED (w);
2422     }
2423
2424   g_assert (topmost);
2425
2426   get_child_panes (GTK_WIDGET (topmost), &result);
2427
2428   return g_list_reverse (result);
2429 }
2430
2431 static void
2432 gtk_paned_find_neighbours (GtkPaned  *paned,
2433                            GtkPaned **next,
2434                            GtkPaned **prev)
2435 {
2436   GList *all_panes;
2437   GList *this_link;
2438
2439   all_panes = get_all_panes (paned);
2440   g_assert (all_panes);
2441
2442   this_link = g_list_find (all_panes, paned);
2443
2444   g_assert (this_link);
2445   
2446   if (this_link->next)
2447     *next = this_link->next->data;
2448   else
2449     *next = all_panes->data;
2450
2451   if (this_link->prev)
2452     *prev = this_link->prev->data;
2453   else
2454     *prev = g_list_last (all_panes)->data;
2455
2456   g_list_free (all_panes);
2457 }
2458
2459 static gboolean
2460 gtk_paned_move_handle (GtkPaned      *paned,
2461                        GtkScrollType  scroll)
2462 {
2463   GtkPanedPrivate *priv = paned->priv;
2464
2465   if (gtk_widget_is_focus (GTK_WIDGET (paned)))
2466     {
2467       gint old_position;
2468       gint new_position;
2469       gint increment;
2470       
2471       enum {
2472         SINGLE_STEP_SIZE = 1,
2473         PAGE_STEP_SIZE   = 75
2474       };
2475       
2476       new_position = old_position = gtk_paned_get_position (paned);
2477       increment = 0;
2478       
2479       switch (scroll)
2480         {
2481         case GTK_SCROLL_STEP_LEFT:
2482         case GTK_SCROLL_STEP_UP:
2483         case GTK_SCROLL_STEP_BACKWARD:
2484           increment = - SINGLE_STEP_SIZE;
2485           break;
2486           
2487         case GTK_SCROLL_STEP_RIGHT:
2488         case GTK_SCROLL_STEP_DOWN:
2489         case GTK_SCROLL_STEP_FORWARD:
2490           increment = SINGLE_STEP_SIZE;
2491           break;
2492           
2493         case GTK_SCROLL_PAGE_LEFT:
2494         case GTK_SCROLL_PAGE_UP:
2495         case GTK_SCROLL_PAGE_BACKWARD:
2496           increment = - PAGE_STEP_SIZE;
2497           break;
2498           
2499         case GTK_SCROLL_PAGE_RIGHT:
2500         case GTK_SCROLL_PAGE_DOWN:
2501         case GTK_SCROLL_PAGE_FORWARD:
2502           increment = PAGE_STEP_SIZE;
2503           break;
2504           
2505         case GTK_SCROLL_START:
2506           new_position = priv->min_position;
2507           break;
2508           
2509         case GTK_SCROLL_END:
2510           new_position = priv->max_position;
2511           break;
2512
2513         default:
2514           break;
2515         }
2516
2517       if (increment)
2518         {
2519           if (is_rtl (paned))
2520             increment = -increment;
2521           
2522           new_position = old_position + increment;
2523         }
2524       
2525       new_position = CLAMP (new_position, priv->min_position, priv->max_position);
2526       
2527       if (old_position != new_position)
2528         gtk_paned_set_position (paned, new_position);
2529
2530       return TRUE;
2531     }
2532
2533   return FALSE;
2534 }
2535
2536 static void
2537 gtk_paned_restore_focus (GtkPaned *paned)
2538 {
2539   GtkPanedPrivate *priv = paned->priv;
2540
2541   if (gtk_widget_is_focus (GTK_WIDGET (paned)))
2542     {
2543       if (priv->saved_focus &&
2544           gtk_widget_get_sensitive (priv->saved_focus))
2545         {
2546           gtk_widget_grab_focus (priv->saved_focus);
2547         }
2548       else
2549         {
2550           /* the saved focus is somehow not available for focusing,
2551            * try
2552            *   1) tabbing into the paned widget
2553            * if that didn't work,
2554            *   2) unset focus for the window if there is one
2555            */
2556           
2557           if (!gtk_widget_child_focus (GTK_WIDGET (paned), GTK_DIR_TAB_FORWARD))
2558             {
2559               GtkWidget *toplevel = gtk_widget_get_toplevel (GTK_WIDGET (paned));
2560               
2561               if (GTK_IS_WINDOW (toplevel))
2562                 gtk_window_set_focus (GTK_WINDOW (toplevel), NULL);
2563             }
2564         }
2565       
2566       gtk_paned_set_saved_focus (paned, NULL);
2567       gtk_paned_set_first_paned (paned, NULL);
2568     }
2569 }
2570
2571 static gboolean
2572 gtk_paned_accept_position (GtkPaned *paned)
2573 {
2574   GtkPanedPrivate *priv = paned->priv;
2575
2576   if (gtk_widget_is_focus (GTK_WIDGET (paned)))
2577     {
2578       priv->original_position = -1;
2579       gtk_paned_restore_focus (paned);
2580
2581       return TRUE;
2582     }
2583
2584   return FALSE;
2585 }
2586
2587
2588 static gboolean
2589 gtk_paned_cancel_position (GtkPaned *paned)
2590 {
2591   GtkPanedPrivate *priv = paned->priv;
2592
2593   if (gtk_widget_is_focus (GTK_WIDGET (paned)))
2594     {
2595       if (priv->original_position != -1)
2596         {
2597           gtk_paned_set_position (paned, priv->original_position);
2598           priv->original_position = -1;
2599         }
2600
2601       gtk_paned_restore_focus (paned);
2602       return TRUE;
2603     }
2604
2605   return FALSE;
2606 }
2607
2608 static gboolean
2609 gtk_paned_cycle_handle_focus (GtkPaned *paned,
2610                               gboolean  reversed)
2611 {
2612   GtkPanedPrivate *priv = paned->priv;
2613   GtkPaned *next, *prev;
2614
2615   if (gtk_widget_is_focus (GTK_WIDGET (paned)))
2616     {
2617       GtkPaned *focus = NULL;
2618
2619       if (!priv->first_paned)
2620         {
2621           /* The first_pane has disappeared. As an ad-hoc solution,
2622            * we make the currently focused paned the first_paned. To the
2623            * user this will seem like the paned cycling has been reset.
2624            */
2625           
2626           gtk_paned_set_first_paned (paned, paned);
2627         }
2628       
2629       gtk_paned_find_neighbours (paned, &next, &prev);
2630
2631       if (reversed && prev &&
2632           prev != paned && paned != priv->first_paned)
2633         {
2634           focus = prev;
2635         }
2636       else if (!reversed && next &&
2637                next != paned && next != priv->first_paned)
2638         {
2639           focus = next;
2640         }
2641       else
2642         {
2643           gtk_paned_accept_position (paned);
2644           return TRUE;
2645         }
2646
2647       g_assert (focus);
2648       
2649       gtk_paned_set_saved_focus (focus, priv->saved_focus);
2650       gtk_paned_set_first_paned (focus, priv->first_paned);
2651       
2652       gtk_paned_set_saved_focus (paned, NULL);
2653       gtk_paned_set_first_paned (paned, NULL);
2654       
2655       gtk_widget_grab_focus (GTK_WIDGET (focus));
2656       
2657       if (!gtk_widget_is_focus (GTK_WIDGET (paned)))
2658         {
2659           priv->original_position = -1;
2660           focus->priv->original_position = gtk_paned_get_position (focus);
2661         }
2662     }
2663   else
2664     {
2665       GtkContainer *container = GTK_CONTAINER (paned);
2666       GtkPaned *focus;
2667       GtkPaned *first;
2668       GtkPaned *prev, *next;
2669       GtkWidget *toplevel;
2670       GtkWidget *focus_child;
2671
2672       gtk_paned_find_neighbours (paned, &next, &prev);
2673       focus_child = gtk_container_get_focus_child (container);
2674
2675       if (focus_child == priv->child1)
2676         {
2677           if (reversed)
2678             {
2679               focus = prev;
2680               first = paned;
2681             }
2682           else
2683             {
2684               focus = paned;
2685               first = paned;
2686             }
2687         }
2688       else if (focus_child == priv->child2)
2689         {
2690           if (reversed)
2691             {
2692               focus = paned;
2693               first = next;
2694             }
2695           else
2696             {
2697               focus = next;
2698               first = next;
2699             }
2700         }
2701       else
2702         {
2703           /* Focus is not inside this paned, and we don't have focus.
2704            * Presumably this happened because the application wants us
2705            * to start keyboard navigating.
2706            */
2707           focus = paned;
2708
2709           if (reversed)
2710             first = paned;
2711           else
2712             first = next;
2713         }
2714
2715       toplevel = gtk_widget_get_toplevel (GTK_WIDGET (paned));
2716
2717       if (GTK_IS_WINDOW (toplevel))
2718         gtk_paned_set_saved_focus (focus, gtk_window_get_focus (GTK_WINDOW (toplevel)));
2719       gtk_paned_set_first_paned (focus, first);
2720       focus->priv->original_position = gtk_paned_get_position (focus);
2721
2722       gtk_widget_grab_focus (GTK_WIDGET (focus));
2723    }
2724
2725   return TRUE;
2726 }
2727
2728 static gboolean
2729 gtk_paned_toggle_handle_focus (GtkPaned *paned)
2730 {
2731   /* This function/signal has the wrong name. It is called when you
2732    * press Tab or Shift-Tab and what we do is act as if
2733    * the user pressed Return and then Tab or Shift-Tab
2734    */
2735   if (gtk_widget_is_focus (GTK_WIDGET (paned)))
2736     gtk_paned_accept_position (paned);
2737
2738   return FALSE;
2739 }
2740
2741 /**
2742  * gtk_paned_get_handle_window:
2743  * @paned: a #GtkPaned
2744  *
2745  * Returns the #GdkWindow of the handle. This function is
2746  * useful when handling button or motion events because it
2747  * enables the callback to distinguish between the window
2748  * of the paned, a child and the handle.
2749  *
2750  * Return value: (transfer none): the paned's handle window.
2751  *
2752  * Since: 2.20
2753  **/
2754 GdkWindow *
2755 gtk_paned_get_handle_window (GtkPaned *paned)
2756 {
2757   g_return_val_if_fail (GTK_IS_PANED (paned), NULL);
2758
2759   return paned->priv->handle;
2760 }