forked from AuroraMiddleware/gtk
e63d08e43f
Sun Jun 28 04:29:10 1998 Tim Janik <timj@gtk.org> * gtk/gtktypeutils.c (gtk_type_class_init): call the base class init fucntions from all parent types upon class initialization. * gtk/gtkcontainer.c: (gtk_container_get_type): announce gtk_container_base_class_init to the type system. (gtk_container_base_class_init): new function to feature base class initialization. (gtk_container_get_child_arg): (gtk_container_set_child_arg): call the GtkContainerClass get_child_arg and set_child_arg methods of the class indicated through the argument name. * gtk/gtkobject.c: (gtk_object_base_class_init): new function to feature base class initialization. (gtk_object_init_type): announce gtk_object_base_class_init to the type system. (gtk_object_class_init): setup the get_arg and set_arg pointers for GtkObjectClass. (gtk_object_setv): (gtk_object_getv): call the GtkObjectClass get_arg and set_arg methods, instead of bothering the type system with this. * gtk/gtkaccellabel.c: * gtk/gtkbutton.c: * gtk/gtkradiobutton.c: * gtk/gtktable.c: * gtk/gtktogglebutton.c: * gtk/gtktipsquery.c: * gtk/gtkbox.c: * gtk/gtkpacker.c: * gtk/gtkwidget.c: * gtk/gtkwindow.c: * gtk/gtkframe.c: * gtk/gtkmisc.c: * gtk/gtklabel.c: set the object_class->{g|s}et_arg pointers to the corresponding gtk_*_{g|s]et_arg functions and updated the gtk_*_get_type functions wrt GtkTypeInfo initialization. changed a lot of the set/get arg functions to take a GtkObject argument. gtk/gtkadjustment.c: gtk/gtkalignment.c: gtk/gtkarrow.c: gtk/gtkaspectframe.c: gtk/gtkbbox.c: gtk/gtkbin.c: gtk/gtkcheckbutton.c: gtk/gtkcheckmenuitem.c: gtk/gtkclist.c: gtk/gtkcolorsel.c: gtk/gtkcombo.c: gtk/gtkctree.c: gtk/gtkcurve.c: gtk/gtkdata.c: gtk/gtkdialog.c: gtk/gtkdrawingarea.c: gtk/gtkeditable.c: gtk/gtkentry.c: gtk/gtkeventbox.c: gtk/gtkfilesel.c: gtk/gtkfixed.c: gtk/gtkfontsel.c: gtk/gtkgamma.c: gtk/gtkhandlebox.c: gtk/gtkhbbox.c: gtk/gtkhbox.c: gtk/gtkhpaned.c: gtk/gtkhruler.c: gtk/gtkhscale.c: gtk/gtkhscrollbar.c: gtk/gtkhseparator.c: gtk/gtkimage.c: gtk/gtkinputdialog.c: gtk/gtkitem.c: gtk/gtkitemfactory.c: gtk/gtklist.c: gtk/gtklistitem.c: gtk/gtkmenu.c: gtk/gtkmenubar.c: gtk/gtkmenuitem.c: gtk/gtkmenushell.c: gtk/gtknotebook.c: gtk/gtkoptionmenu.c: gtk/gtkpaned.c: gtk/gtkpixmap.c: gtk/gtkpreview.c: gtk/gtkprogressbar.c: gtk/gtkradiomenuitem.c: gtk/gtkrange.c: gtk/gtkruler.c: gtk/gtkscale.c: gtk/gtkscrollbar.c: gtk/gtkscrolledwindow.c: gtk/gtkseparator.c: gtk/gtkspinbutton.c: gtk/gtkstatusbar.c: gtk/gtktext.c: gtk/gtktoolbar.c: gtk/gtktooltips.c: gtk/gtktree.c: gtk/gtktreeitem.c: gtk/gtkvbbox.c: gtk/gtkvbox.c: gtk/gtkviewport.c: gtk/gtkvpaned.c: gtk/gtkvruler.c: gtk/gtkvscale.c: gtk/gtkvscrollbar.c: gtk/gtkvseparator.c: updated the GtkTypeInfo initialization code to match the modified GtkTypeInfo structure.
394 lines
12 KiB
C
394 lines
12 KiB
C
/* 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
|
|
* modify it under the terms of the GNU Library General Public
|
|
* 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
#include "gtkvscrollbar.h"
|
|
#include "gtksignal.h"
|
|
#include "gdk/gdkkeysyms.h"
|
|
|
|
|
|
#define EPSILON 0.01
|
|
|
|
#define RANGE_CLASS(w) GTK_RANGE_CLASS (GTK_OBJECT (w)->klass)
|
|
|
|
|
|
static void gtk_vscrollbar_class_init (GtkVScrollbarClass *klass);
|
|
static void gtk_vscrollbar_init (GtkVScrollbar *vscrollbar);
|
|
static void gtk_vscrollbar_realize (GtkWidget *widget);
|
|
static void gtk_vscrollbar_size_allocate (GtkWidget *widget,
|
|
GtkAllocation *allocation);
|
|
static void gtk_vscrollbar_draw_step_forw (GtkRange *range);
|
|
static void gtk_vscrollbar_draw_step_back (GtkRange *range);
|
|
static void gtk_vscrollbar_slider_update (GtkRange *range);
|
|
static void gtk_vscrollbar_calc_slider_size (GtkVScrollbar *vscrollbar);
|
|
static gint gtk_vscrollbar_trough_keys (GtkRange *range,
|
|
GdkEventKey *key,
|
|
GtkScrollType *scroll,
|
|
GtkTroughType *pos);
|
|
|
|
guint
|
|
gtk_vscrollbar_get_type (void)
|
|
{
|
|
static guint vscrollbar_type = 0;
|
|
|
|
if (!vscrollbar_type)
|
|
{
|
|
GtkTypeInfo vscrollbar_info =
|
|
{
|
|
"GtkVScrollbar",
|
|
sizeof (GtkVScrollbar),
|
|
sizeof (GtkVScrollbarClass),
|
|
(GtkClassInitFunc) gtk_vscrollbar_class_init,
|
|
(GtkObjectInitFunc) gtk_vscrollbar_init,
|
|
/* reversed_1 */ NULL,
|
|
/* reversed_2 */ NULL,
|
|
(GtkClassInitFunc) NULL,
|
|
};
|
|
|
|
vscrollbar_type = gtk_type_unique (gtk_scrollbar_get_type (), &vscrollbar_info);
|
|
}
|
|
|
|
return vscrollbar_type;
|
|
}
|
|
|
|
static void
|
|
gtk_vscrollbar_class_init (GtkVScrollbarClass *klass)
|
|
{
|
|
GtkWidgetClass *widget_class;
|
|
GtkRangeClass *range_class;
|
|
|
|
widget_class = (GtkWidgetClass*) klass;
|
|
range_class = (GtkRangeClass*) klass;
|
|
|
|
widget_class->realize = gtk_vscrollbar_realize;
|
|
widget_class->size_allocate = gtk_vscrollbar_size_allocate;
|
|
|
|
range_class->draw_step_forw = gtk_vscrollbar_draw_step_forw;
|
|
range_class->draw_step_back = gtk_vscrollbar_draw_step_back;
|
|
range_class->slider_update = gtk_vscrollbar_slider_update;
|
|
range_class->trough_click = gtk_range_default_vtrough_click;
|
|
range_class->trough_keys = gtk_vscrollbar_trough_keys;
|
|
range_class->motion = gtk_range_default_vmotion;
|
|
}
|
|
|
|
static void
|
|
gtk_vscrollbar_init (GtkVScrollbar *vscrollbar)
|
|
{
|
|
GtkWidget *widget;
|
|
GtkRequisition *requisition;
|
|
|
|
widget = GTK_WIDGET (vscrollbar);
|
|
GTK_WIDGET_SET_FLAGS (widget, GTK_CAN_FOCUS);
|
|
requisition = &widget->requisition;
|
|
|
|
requisition->width = (RANGE_CLASS (widget)->slider_width +
|
|
widget->style->klass->xthickness * 2);
|
|
requisition->height = (RANGE_CLASS (widget)->min_slider_size +
|
|
RANGE_CLASS (widget)->stepper_size +
|
|
RANGE_CLASS (widget)->stepper_slider_spacing +
|
|
widget->style->klass->ythickness) * 2;
|
|
}
|
|
|
|
GtkWidget*
|
|
gtk_vscrollbar_new (GtkAdjustment *adjustment)
|
|
{
|
|
GtkVScrollbar *vscrollbar;
|
|
|
|
vscrollbar = gtk_type_new (gtk_vscrollbar_get_type ());
|
|
|
|
if (!adjustment)
|
|
adjustment = (GtkAdjustment*) gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
|
|
|
|
gtk_range_set_adjustment (GTK_RANGE (vscrollbar), adjustment);
|
|
|
|
return GTK_WIDGET (vscrollbar);
|
|
}
|
|
|
|
|
|
static void
|
|
gtk_vscrollbar_realize (GtkWidget *widget)
|
|
{
|
|
GtkRange *range;
|
|
GdkWindowAttr attributes;
|
|
gint attributes_mask;
|
|
|
|
g_return_if_fail (widget != NULL);
|
|
g_return_if_fail (GTK_IS_VSCROLLBAR (widget));
|
|
|
|
GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
|
|
range = GTK_RANGE (widget);
|
|
|
|
attributes.x = widget->allocation.x + (widget->allocation.width - widget->requisition.width) / 2;
|
|
attributes.y = widget->allocation.y;
|
|
attributes.width = widget->requisition.width;
|
|
attributes.height = widget->allocation.height;
|
|
attributes.wclass = GDK_INPUT_OUTPUT;
|
|
attributes.window_type = GDK_WINDOW_CHILD;
|
|
attributes.visual = gtk_widget_get_visual (widget);
|
|
attributes.colormap = gtk_widget_get_colormap (widget);
|
|
attributes.event_mask = gtk_widget_get_events (widget);
|
|
attributes.event_mask |= (GDK_EXPOSURE_MASK |
|
|
GDK_BUTTON_PRESS_MASK |
|
|
GDK_BUTTON_RELEASE_MASK |
|
|
GDK_ENTER_NOTIFY_MASK |
|
|
GDK_LEAVE_NOTIFY_MASK);
|
|
|
|
attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
|
|
widget->window = gdk_window_new (gtk_widget_get_parent_window (widget), &attributes, attributes_mask);
|
|
|
|
range->trough = widget->window;
|
|
gdk_window_ref (range->trough);
|
|
|
|
attributes.x = widget->style->klass->xthickness;
|
|
attributes.y = widget->style->klass->ythickness;
|
|
attributes.width = RANGE_CLASS (widget)->stepper_size;
|
|
attributes.height = RANGE_CLASS (widget)->stepper_size;
|
|
|
|
range->step_back = gdk_window_new (range->trough, &attributes, attributes_mask);
|
|
|
|
attributes.y = (widget->allocation.height -
|
|
widget->style->klass->ythickness -
|
|
RANGE_CLASS (widget)->stepper_size);
|
|
|
|
range->step_forw = gdk_window_new (range->trough, &attributes, attributes_mask);
|
|
|
|
attributes.x = widget->style->klass->ythickness;
|
|
attributes.y = 0;
|
|
attributes.width = RANGE_CLASS (widget)->slider_width;
|
|
attributes.height = RANGE_CLASS (widget)->min_slider_size;
|
|
attributes.event_mask |= (GDK_BUTTON_MOTION_MASK |
|
|
GDK_POINTER_MOTION_HINT_MASK);
|
|
|
|
range->slider = gdk_window_new (range->trough, &attributes, attributes_mask);
|
|
|
|
gtk_vscrollbar_calc_slider_size (GTK_VSCROLLBAR (widget));
|
|
gtk_range_slider_update (GTK_RANGE (widget));
|
|
|
|
widget->style = gtk_style_attach (widget->style, widget->window);
|
|
|
|
gdk_window_set_user_data (range->trough, widget);
|
|
gdk_window_set_user_data (range->slider, widget);
|
|
gdk_window_set_user_data (range->step_forw, widget);
|
|
gdk_window_set_user_data (range->step_back, widget);
|
|
|
|
gtk_style_set_background (widget->style, range->trough, GTK_STATE_ACTIVE);
|
|
gtk_style_set_background (widget->style, range->slider, GTK_STATE_NORMAL);
|
|
gtk_style_set_background (widget->style, range->step_forw, GTK_STATE_ACTIVE);
|
|
gtk_style_set_background (widget->style, range->step_back, GTK_STATE_ACTIVE);
|
|
|
|
gdk_window_show (range->slider);
|
|
gdk_window_show (range->step_forw);
|
|
gdk_window_show (range->step_back);
|
|
}
|
|
|
|
static void
|
|
gtk_vscrollbar_size_allocate (GtkWidget *widget,
|
|
GtkAllocation *allocation)
|
|
{
|
|
GtkRange *range;
|
|
|
|
g_return_if_fail (widget != NULL);
|
|
g_return_if_fail (GTK_IS_VSCROLLBAR (widget));
|
|
g_return_if_fail (allocation != NULL);
|
|
|
|
widget->allocation = *allocation;
|
|
if (GTK_WIDGET_REALIZED (widget))
|
|
{
|
|
range = GTK_RANGE (widget);
|
|
|
|
gdk_window_move_resize (range->trough,
|
|
allocation->x + (allocation->width - widget->requisition.width) / 2,
|
|
allocation->y,
|
|
widget->requisition.width, allocation->height);
|
|
gdk_window_move_resize (range->step_back,
|
|
widget->style->klass->xthickness,
|
|
widget->style->klass->ythickness,
|
|
widget->requisition.width - widget->style->klass->xthickness * 2,
|
|
RANGE_CLASS (widget)->stepper_size);
|
|
gdk_window_move_resize (range->step_forw,
|
|
widget->style->klass->xthickness,
|
|
allocation->height - widget->style->klass->ythickness -
|
|
RANGE_CLASS (widget)->stepper_size,
|
|
widget->requisition.width - widget->style->klass->xthickness * 2,
|
|
RANGE_CLASS (widget)->stepper_size);
|
|
gdk_window_resize (range->slider,
|
|
widget->requisition.width - widget->style->klass->xthickness * 2,
|
|
RANGE_CLASS (range)->min_slider_size);
|
|
|
|
gtk_range_slider_update (GTK_RANGE (widget));
|
|
}
|
|
}
|
|
|
|
static void
|
|
gtk_vscrollbar_draw_step_forw (GtkRange *range)
|
|
{
|
|
GtkStateType state_type;
|
|
GtkShadowType shadow_type;
|
|
|
|
g_return_if_fail (range != NULL);
|
|
g_return_if_fail (GTK_IS_VSCROLLBAR (range));
|
|
|
|
if (GTK_WIDGET_DRAWABLE (range))
|
|
{
|
|
if (range->in_child == RANGE_CLASS (range)->step_forw)
|
|
{
|
|
if (range->click_child == RANGE_CLASS (range)->step_forw)
|
|
state_type = GTK_STATE_ACTIVE;
|
|
else
|
|
state_type = GTK_STATE_PRELIGHT;
|
|
}
|
|
else
|
|
state_type = GTK_STATE_NORMAL;
|
|
|
|
if (range->click_child == RANGE_CLASS (range)->step_forw)
|
|
shadow_type = GTK_SHADOW_IN;
|
|
else
|
|
shadow_type = GTK_SHADOW_OUT;
|
|
|
|
gtk_draw_arrow (GTK_WIDGET (range)->style, range->step_forw,
|
|
state_type, shadow_type, GTK_ARROW_DOWN,
|
|
TRUE, 0, 0, -1, -1);
|
|
}
|
|
}
|
|
|
|
static void
|
|
gtk_vscrollbar_draw_step_back (GtkRange *range)
|
|
{
|
|
GtkStateType state_type;
|
|
GtkShadowType shadow_type;
|
|
|
|
g_return_if_fail (range != NULL);
|
|
g_return_if_fail (GTK_IS_VSCROLLBAR (range));
|
|
|
|
if (GTK_WIDGET_DRAWABLE (range))
|
|
{
|
|
if (range->in_child == RANGE_CLASS (range)->step_back)
|
|
{
|
|
if (range->click_child == RANGE_CLASS (range)->step_back)
|
|
state_type = GTK_STATE_ACTIVE;
|
|
else
|
|
state_type = GTK_STATE_PRELIGHT;
|
|
}
|
|
else
|
|
state_type = GTK_STATE_NORMAL;
|
|
|
|
if (range->click_child == RANGE_CLASS (range)->step_back)
|
|
shadow_type = GTK_SHADOW_IN;
|
|
else
|
|
shadow_type = GTK_SHADOW_OUT;
|
|
|
|
gtk_draw_arrow (GTK_WIDGET (range)->style, range->step_back,
|
|
state_type, shadow_type, GTK_ARROW_UP,
|
|
TRUE, 0, 0, -1, -1);
|
|
}
|
|
}
|
|
|
|
static void
|
|
gtk_vscrollbar_slider_update (GtkRange *range)
|
|
{
|
|
g_return_if_fail (range != NULL);
|
|
g_return_if_fail (GTK_IS_VSCROLLBAR (range));
|
|
|
|
gtk_vscrollbar_calc_slider_size (GTK_VSCROLLBAR (range));
|
|
gtk_range_default_vslider_update (range);
|
|
}
|
|
|
|
static void
|
|
gtk_vscrollbar_calc_slider_size (GtkVScrollbar *vscrollbar)
|
|
{
|
|
GtkRange *range;
|
|
gint step_back_y;
|
|
gint step_back_height;
|
|
gint step_forw_y;
|
|
gint slider_width;
|
|
gint slider_height;
|
|
gint top, bottom;
|
|
gint height;
|
|
|
|
g_return_if_fail (vscrollbar != NULL);
|
|
g_return_if_fail (GTK_IS_VSCROLLBAR (vscrollbar));
|
|
|
|
if (GTK_WIDGET_REALIZED (vscrollbar))
|
|
{
|
|
range = GTK_RANGE (vscrollbar);
|
|
|
|
gdk_window_get_size (range->step_back, NULL, &step_back_height);
|
|
gdk_window_get_position (range->step_back, NULL, &step_back_y);
|
|
gdk_window_get_position (range->step_forw, NULL, &step_forw_y);
|
|
|
|
top = (step_back_y +
|
|
step_back_height +
|
|
RANGE_CLASS (vscrollbar)->stepper_slider_spacing);
|
|
bottom = step_forw_y - RANGE_CLASS (vscrollbar)->stepper_slider_spacing;
|
|
height = bottom - top;
|
|
|
|
if ((range->adjustment->page_size > 0) &&
|
|
(range->adjustment->lower != range->adjustment->upper))
|
|
{
|
|
if (range->adjustment->page_size >
|
|
(range->adjustment->upper - range->adjustment->lower))
|
|
range->adjustment->page_size = range->adjustment->upper - range->adjustment->lower;
|
|
|
|
height = (height * range->adjustment->page_size /
|
|
(range->adjustment->upper - range->adjustment->lower));
|
|
|
|
if (height < RANGE_CLASS (vscrollbar)->min_slider_size)
|
|
height = RANGE_CLASS (vscrollbar)->min_slider_size;
|
|
}
|
|
|
|
gdk_window_get_size (range->slider, &slider_width, &slider_height);
|
|
|
|
if (slider_height != height)
|
|
gdk_window_resize (range->slider, slider_width, height);
|
|
}
|
|
}
|
|
|
|
static gint
|
|
gtk_vscrollbar_trough_keys(GtkRange *range,
|
|
GdkEventKey *key,
|
|
GtkScrollType *scroll,
|
|
GtkTroughType *pos)
|
|
{
|
|
gint return_val = FALSE;
|
|
switch (key->keyval)
|
|
{
|
|
case GDK_Up:
|
|
return_val = TRUE;
|
|
*scroll = GTK_SCROLL_STEP_BACKWARD;
|
|
break;
|
|
case GDK_Down:
|
|
return_val = TRUE;
|
|
*scroll = GTK_SCROLL_STEP_FORWARD;
|
|
break;
|
|
case GDK_Page_Up:
|
|
return_val = TRUE;
|
|
if (key->state & GDK_CONTROL_MASK)
|
|
*pos = GTK_TROUGH_START;
|
|
else
|
|
*scroll = GTK_SCROLL_PAGE_BACKWARD;
|
|
break;
|
|
case GDK_Page_Down:
|
|
return_val = TRUE;
|
|
if (key->state & GDK_CONTROL_MASK)
|
|
*pos = GTK_TROUGH_END;
|
|
else
|
|
*scroll = GTK_SCROLL_PAGE_FORWARD;
|
|
break;
|
|
}
|
|
return return_val;
|
|
}
|