1997-11-24 22:37:52 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1997-11-24 22:37:52 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1997-11-24 22:37:52 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1998-04-13 02:02:47 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
*/
|
|
|
|
|
2004-03-06 03:38:59 +00:00
|
|
|
#include <config.h>
|
1997-11-24 22:37:52 +00:00
|
|
|
#include "gtkvpaned.h"
|
2005-09-01 05:11:46 +00:00
|
|
|
#include "gtkintl.h"
|
2005-03-20 07:01:23 +00:00
|
|
|
#include "gtkalias.h"
|
2000-02-17 22:12:25 +00:00
|
|
|
|
|
|
|
static void gtk_vpaned_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition);
|
|
|
|
static void gtk_vpaned_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2006-05-14 04:25:34 +00:00
|
|
|
G_DEFINE_TYPE (GtkVPaned, gtk_vpaned, GTK_TYPE_PANED)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_vpaned_class_init (GtkVPanedClass *class)
|
|
|
|
{
|
|
|
|
GtkWidgetClass *widget_class;
|
|
|
|
|
2000-02-17 22:12:25 +00:00
|
|
|
widget_class = (GtkWidgetClass *) class;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
widget_class->size_request = gtk_vpaned_size_request;
|
|
|
|
widget_class->size_allocate = gtk_vpaned_size_allocate;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_vpaned_init (GtkVPaned *vpaned)
|
|
|
|
{
|
2000-02-17 22:12:25 +00:00
|
|
|
GtkPaned *paned;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_PANED (vpaned));
|
|
|
|
|
|
|
|
paned = GTK_PANED (vpaned);
|
|
|
|
|
|
|
|
paned->cursor_type = GDK_SB_V_DOUBLE_ARROW;
|
2001-11-16 15:20:28 +00:00
|
|
|
paned->orientation = GTK_ORIENTATION_HORIZONTAL;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2000-02-17 22:12:25 +00:00
|
|
|
GtkWidget *
|
1998-05-03 22:41:32 +00:00
|
|
|
gtk_vpaned_new (void)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
|
|
|
GtkVPaned *vpaned;
|
|
|
|
|
2002-10-08 23:07:02 +00:00
|
|
|
vpaned = g_object_new (GTK_TYPE_VPANED, NULL);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
return GTK_WIDGET (vpaned);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_vpaned_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition)
|
|
|
|
{
|
Fix G_VALUE_NO_COPY_CONTENTS instead of G_SIGNAL_TYPE_STATIC_SCOPE
Mon Apr 2 10:47:57 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_class_init): Fix
G_VALUE_NO_COPY_CONTENTS instead of G_SIGNAL_TYPE_STATIC_SCOPE
stupidity.
Mon Apr 2 00:51:11 2001 Owen Taylor <otaylor@redhat.com>
[ First pass at adding style properties. Still needs some definite
fine-tuning. ]
* gtk/gtkbutton.c: Add ::default_spacing style property.
* gtk/gtkcheckbutton.[ch] gtkradiobutton.c: Add ::indicator_size,
::indicator_spacing style properties.
* gtk/gtkoptionmenu.c: Add ::indicator_size, ::indicator_spacing
style properties.
* gtk/gtk{,h,v}paned.[ch]: Make handle_size a style property
rather than a normal property.
* gtk/gtkwidget.c: Add an ::interior_focus style property to
draw focus inside buttons, in the Windows/Java Metal/etc. style.
* gtk/gtkbutton.c gtk/gtkcheckbutton.c gtk/gtktogglenbutton.c:
Honor ::interior_focus.
* gtk/gtkentry.c: Don't draw focus at all when ::interior_focus is
TRUE.
* gtk/gtkrange.[ch] gtk/gtk{h,v}scrollbar.c gtk/gtk{h,v}scale.c:
Add ::slider_width, ::trough_border, ::stepper_size,
::stepper_spacing style properties.
* gtk/gtkscale.[ch] Add ::slider-length style property.
2001-04-02 15:51:28 +00:00
|
|
|
GtkPaned *paned = GTK_PANED (widget);
|
1999-02-10 02:35:09 +00:00
|
|
|
GtkRequisition child_requisition;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
requisition->width = 0;
|
|
|
|
requisition->height = 0;
|
|
|
|
|
|
|
|
if (paned->child1 && GTK_WIDGET_VISIBLE (paned->child1))
|
|
|
|
{
|
1999-02-10 02:35:09 +00:00
|
|
|
gtk_widget_size_request (paned->child1, &child_requisition);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1999-02-10 02:35:09 +00:00
|
|
|
requisition->height = child_requisition.height;
|
|
|
|
requisition->width = child_requisition.width;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (paned->child2 && GTK_WIDGET_VISIBLE (paned->child2))
|
|
|
|
{
|
1999-02-10 02:35:09 +00:00
|
|
|
gtk_widget_size_request (paned->child2, &child_requisition);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1999-02-10 02:35:09 +00:00
|
|
|
requisition->width = MAX (requisition->width, child_requisition.width);
|
|
|
|
requisition->height += child_requisition.height;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2001-05-21 15:56:19 +00:00
|
|
|
requisition->height += GTK_CONTAINER (paned)->border_width * 2;
|
1997-11-24 22:37:52 +00:00
|
|
|
requisition->width += GTK_CONTAINER (paned)->border_width * 2;
|
2001-05-21 15:56:19 +00:00
|
|
|
|
|
|
|
if (paned->child1 && GTK_WIDGET_VISIBLE (paned->child1) &&
|
|
|
|
paned->child2 && GTK_WIDGET_VISIBLE (paned->child2))
|
|
|
|
{
|
|
|
|
gint handle_size;
|
|
|
|
|
2005-03-26 05:49:15 +00:00
|
|
|
gtk_widget_style_get (widget, "handle-size", &handle_size, NULL);
|
2001-05-21 15:56:19 +00:00
|
|
|
requisition->height += handle_size;
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_vpaned_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation)
|
|
|
|
{
|
Fix G_VALUE_NO_COPY_CONTENTS instead of G_SIGNAL_TYPE_STATIC_SCOPE
Mon Apr 2 10:47:57 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_class_init): Fix
G_VALUE_NO_COPY_CONTENTS instead of G_SIGNAL_TYPE_STATIC_SCOPE
stupidity.
Mon Apr 2 00:51:11 2001 Owen Taylor <otaylor@redhat.com>
[ First pass at adding style properties. Still needs some definite
fine-tuning. ]
* gtk/gtkbutton.c: Add ::default_spacing style property.
* gtk/gtkcheckbutton.[ch] gtkradiobutton.c: Add ::indicator_size,
::indicator_spacing style properties.
* gtk/gtkoptionmenu.c: Add ::indicator_size, ::indicator_spacing
style properties.
* gtk/gtk{,h,v}paned.[ch]: Make handle_size a style property
rather than a normal property.
* gtk/gtkwidget.c: Add an ::interior_focus style property to
draw focus inside buttons, in the Windows/Java Metal/etc. style.
* gtk/gtkbutton.c gtk/gtkcheckbutton.c gtk/gtktogglenbutton.c:
Honor ::interior_focus.
* gtk/gtkentry.c: Don't draw focus at all when ::interior_focus is
TRUE.
* gtk/gtkrange.[ch] gtk/gtk{h,v}scrollbar.c gtk/gtk{h,v}scale.c:
Add ::slider_width, ::trough_border, ::stepper_size,
::stepper_spacing style properties.
* gtk/gtkscale.[ch] Add ::slider-length style property.
2001-04-02 15:51:28 +00:00
|
|
|
GtkPaned *paned = GTK_PANED (widget);
|
2001-05-21 15:56:19 +00:00
|
|
|
gint border_width = GTK_CONTAINER (paned)->border_width;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
widget->allocation = *allocation;
|
2001-05-21 15:56:19 +00:00
|
|
|
|
|
|
|
if (paned->child1 && GTK_WIDGET_VISIBLE (paned->child1) &&
|
|
|
|
paned->child2 && GTK_WIDGET_VISIBLE (paned->child2))
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2001-05-21 15:56:19 +00:00
|
|
|
GtkRequisition child1_requisition;
|
|
|
|
GtkRequisition child2_requisition;
|
|
|
|
GtkAllocation child1_allocation;
|
|
|
|
GtkAllocation child2_allocation;
|
|
|
|
gint handle_size;
|
|
|
|
|
2005-03-26 05:49:15 +00:00
|
|
|
gtk_widget_style_get (widget, "handle-size", &handle_size, NULL);
|
2001-05-21 15:56:19 +00:00
|
|
|
|
|
|
|
gtk_widget_get_child_requisition (paned->child1, &child1_requisition);
|
|
|
|
gtk_widget_get_child_requisition (paned->child2, &child2_requisition);
|
|
|
|
|
|
|
|
gtk_paned_compute_position (paned,
|
|
|
|
MAX (1, widget->allocation.height
|
|
|
|
- handle_size
|
|
|
|
- 2 * border_width),
|
|
|
|
child1_requisition.height,
|
|
|
|
child2_requisition.height);
|
|
|
|
|
2001-11-16 15:20:28 +00:00
|
|
|
paned->handle_pos.x = widget->allocation.x + border_width;
|
|
|
|
paned->handle_pos.y = widget->allocation.y + paned->child1_size + border_width;
|
|
|
|
paned->handle_pos.width = MAX (1, (gint) widget->allocation.width - 2 * border_width);
|
|
|
|
paned->handle_pos.height = handle_size;
|
2001-05-21 15:56:19 +00:00
|
|
|
|
2002-03-29 00:15:11 +00:00
|
|
|
if (GTK_WIDGET_REALIZED (widget))
|
2001-05-21 15:56:19 +00:00
|
|
|
{
|
2002-03-29 00:15:11 +00:00
|
|
|
if (GTK_WIDGET_MAPPED (widget))
|
|
|
|
gdk_window_show (paned->handle);
|
2001-05-21 15:56:19 +00:00
|
|
|
gdk_window_move_resize (paned->handle,
|
2001-11-16 15:20:28 +00:00
|
|
|
paned->handle_pos.x,
|
|
|
|
paned->handle_pos.y,
|
|
|
|
paned->handle_pos.width,
|
2001-05-21 15:56:19 +00:00
|
|
|
handle_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
child1_allocation.width = child2_allocation.width = MAX (1, (gint) allocation->width - border_width * 2);
|
2002-10-07 22:33:43 +00:00
|
|
|
child1_allocation.height = MAX (1, paned->child1_size);
|
2001-11-16 15:20:28 +00:00
|
|
|
child1_allocation.x = child2_allocation.x = widget->allocation.x + border_width;
|
2001-11-20 13:55:08 +00:00
|
|
|
child1_allocation.y = widget->allocation.y + border_width;
|
2001-05-21 15:56:19 +00:00
|
|
|
|
2002-10-07 22:33:43 +00:00
|
|
|
child2_allocation.y = child1_allocation.y + paned->child1_size + paned->handle_pos.height;
|
2001-12-07 04:16:16 +00:00
|
|
|
child2_allocation.height = MAX (1, widget->allocation.y + widget->allocation.height - child2_allocation.y - border_width);
|
2001-05-21 15:56:19 +00:00
|
|
|
|
|
|
|
/* Now allocate the childen, making sure, when resizing not to
|
2001-11-20 13:55:08 +00:00
|
|
|
* overlap the windows
|
|
|
|
*/
|
2001-05-21 15:56:19 +00:00
|
|
|
if (GTK_WIDGET_MAPPED (widget) &&
|
|
|
|
paned->child1->allocation.height < child1_allocation.height)
|
|
|
|
{
|
2001-11-20 13:55:08 +00:00
|
|
|
gtk_widget_size_allocate (paned->child2, &child2_allocation);
|
|
|
|
gtk_widget_size_allocate (paned->child1, &child1_allocation);
|
2001-05-21 15:56:19 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-20 13:55:08 +00:00
|
|
|
gtk_widget_size_allocate (paned->child1, &child1_allocation);
|
|
|
|
gtk_widget_size_allocate (paned->child2, &child2_allocation);
|
2001-05-21 15:56:19 +00:00
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-05-21 15:56:19 +00:00
|
|
|
GtkAllocation child_allocation;
|
|
|
|
|
|
|
|
if (GTK_WIDGET_REALIZED (widget))
|
|
|
|
gdk_window_hide (paned->handle);
|
2002-11-07 19:53:49 +00:00
|
|
|
|
|
|
|
if (paned->child1)
|
|
|
|
gtk_widget_set_child_visible (paned->child1, TRUE);
|
|
|
|
if (paned->child2)
|
|
|
|
gtk_widget_set_child_visible (paned->child2, TRUE);
|
2002-10-07 22:33:43 +00:00
|
|
|
|
2001-11-20 13:55:08 +00:00
|
|
|
child_allocation.x = widget->allocation.x + border_width;
|
|
|
|
child_allocation.y = widget->allocation.y + border_width;
|
2001-05-21 15:56:19 +00:00
|
|
|
child_allocation.width = MAX (1, allocation->width - 2 * border_width);
|
|
|
|
child_allocation.height = MAX (1, allocation->height - 2 * border_width);
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
if (paned->child1 && GTK_WIDGET_VISIBLE (paned->child1))
|
2001-05-21 15:56:19 +00:00
|
|
|
gtk_widget_size_allocate (paned->child1, &child_allocation);
|
|
|
|
else if (paned->child2 && GTK_WIDGET_VISIBLE (paned->child2))
|
|
|
|
gtk_widget_size_allocate (paned->child2, &child_allocation);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
}
|
2005-03-20 07:01:23 +00:00
|
|
|
|
|
|
|
#define __GTK_VPANED_C__
|
|
|
|
#include "gtkaliasdef.c"
|