forked from AuroraMiddleware/gtk
c7826b5f63
2001-01-03 Havoc Pennington <hp@redhat.com> * gtk/gtktextbtree.c: Adapt to uscore-ification of gtktextiterprivate * gtk/gtktextdisplay.c (gtk_text_layout_draw): remove use of private functions; remove inclusion of private headers. * gtk/gtktextlayout.c (gtk_text_layout_get_iter_at_line): Add this function, so we don't need private functions in gtktextdisplay.c * gtk/gtktextiterprivate.h: underscore-ification * gtk/gtkwidget.c: Clean up a bunch of docs that said "INTERNAL" to instead say "only useful to implement widgets" * gtk/gtkenums.h (GtkMovementStep): Rename GTK_MOVEMENT_CHARS, GTK_MOVEMENT_POSITIONS to GTK_MOVEMENT_LOGICAL_POSITIONS, GTK_MOVEMENT_VISUAL_POSITIONS. Resolves bug 40249. * gdk/x11/gdkwindow-x11.c (gdk_window_impl_x11_set_colormap): This function was completely broken * gtk/testtext.c (line_numbers_expose): use gtk_paint_layout * gtk/gtkvscale.c (gtk_vscale_draw_value): use gtk_paint_layout * gtk/gtkvruler.c (gtk_vruler_draw_ticks): use gtk_paint_layout * gtk/gtklabel.c (gtk_label_expose): use gtk_paint_layout * gtk/gtkhscale.c (gtk_hscale_draw_value): use gtk_paint_layout * gtk/gtkhruler.c (gtk_hruler_draw_ticks): use gtk_paint_layout * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): use gtk_paint_layout * gtk/gtkaccellabel.c (gtk_accel_label_expose_event): use gtk_paint_layout * gtk/gtkstyle.h: Add draw/paint expander to draw tree expanders. Progress on bug 40103. Add draw_layout to draw a PangoLayout. (struct _GtkStyleClass): Remove draw_cross, draw_oval, draw_ramp, which were not implemented. * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): Add insert_pixbuf signal. Rename delete_text to delete_range since it also deletes pixbufs and child anchors. This almost closes bug 40245 (still need to deal with child anchors) * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Add insert_pixbuf, change signal names as appropriate, change types of signals taking marks/tags to have the specific type, not just G_TYPE_OBJECT * gtk/gtkmain.c (gtk_get_current_event_state): Add this function; closes bug 40051 * gtk/gtkoptionmenu.c (gtk_option_menu_set_history): clean up unnecessary remove_contents() call (gtk_option_menu_class_init): add a "changed" signal, closes bug 40039 (gtk_option_menu_update_contents): emit "changed" if the active menu item changes * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done): fix bad cast to GtkObject, reported by Jonas Borgstrom (gdk_pixbuf_loader_finalize): don't close the loader on finalize; we can't do stuff with side effects in finalize. Instead, spew a warning if the loader isn't closed. * gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_finalize): free colormap in here, non-X ports probably need to sync to this change * gdk/x11/gdkdrawable-x11.c (gdk_x11_set_colormap): remove assertion that colormap != NULL, you can set the colormap to NULL if you like. * Makefile.am: remove gtk-config-2.0 * configure.in: Use pkg-config to locate GLib. Remove separated-out GMODULE_LIBS, GMODULE_CFLAGS; these were not used, and the gmodule libs/cflags were in GLIB_LIBS GLIB_CFLAGS anyhow. Use pkg-config to locate Pango. Output correct Pango libs to gdk-2.0.pc.in. Fix test for FREETYPE_CONFIG (typo fix). * Makefile.am (pkgconfig_DATA): install only target-specific pc files (install-data-local): symlink gtk+-2.0.pc and gdk-2.0.pc to the X11 pc files * gtk+-2.0.pc.in (Requires): require the GDK for the current target unref from here
336 lines
9.0 KiB
C
336 lines
9.0 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 Lesser 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser 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.
|
|
*/
|
|
|
|
/*
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
|
* 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/.
|
|
*/
|
|
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "gtkhruler.h"
|
|
|
|
|
|
#define RULER_HEIGHT 14
|
|
#define MINIMUM_INCR 5
|
|
#define MAXIMUM_SUBDIVIDE 5
|
|
#define MAXIMUM_SCALES 10
|
|
|
|
#define ROUND(x) ((int) ((x) + 0.5))
|
|
|
|
|
|
static void gtk_hruler_class_init (GtkHRulerClass *klass);
|
|
static void gtk_hruler_init (GtkHRuler *hruler);
|
|
static gint gtk_hruler_motion_notify (GtkWidget *widget,
|
|
GdkEventMotion *event);
|
|
static void gtk_hruler_draw_ticks (GtkRuler *ruler);
|
|
static void gtk_hruler_draw_pos (GtkRuler *ruler);
|
|
|
|
|
|
GtkType
|
|
gtk_hruler_get_type (void)
|
|
{
|
|
static GtkType hruler_type = 0;
|
|
|
|
if (!hruler_type)
|
|
{
|
|
static const GtkTypeInfo hruler_info =
|
|
{
|
|
"GtkHRuler",
|
|
sizeof (GtkHRuler),
|
|
sizeof (GtkHRulerClass),
|
|
(GtkClassInitFunc) gtk_hruler_class_init,
|
|
(GtkObjectInitFunc) gtk_hruler_init,
|
|
/* reserved_1 */ NULL,
|
|
/* reserved_2 */ NULL,
|
|
(GtkClassInitFunc) NULL,
|
|
};
|
|
|
|
hruler_type = gtk_type_unique (GTK_TYPE_RULER, &hruler_info);
|
|
}
|
|
|
|
return hruler_type;
|
|
}
|
|
|
|
static void
|
|
gtk_hruler_class_init (GtkHRulerClass *klass)
|
|
{
|
|
GtkWidgetClass *widget_class;
|
|
GtkRulerClass *ruler_class;
|
|
|
|
widget_class = (GtkWidgetClass*) klass;
|
|
ruler_class = (GtkRulerClass*) klass;
|
|
|
|
widget_class->motion_notify_event = gtk_hruler_motion_notify;
|
|
|
|
ruler_class->draw_ticks = gtk_hruler_draw_ticks;
|
|
ruler_class->draw_pos = gtk_hruler_draw_pos;
|
|
}
|
|
|
|
static void
|
|
gtk_hruler_init (GtkHRuler *hruler)
|
|
{
|
|
GtkWidget *widget;
|
|
|
|
widget = GTK_WIDGET (hruler);
|
|
widget->requisition.width = widget->style->xthickness * 2 + 1;
|
|
widget->requisition.height = widget->style->ythickness * 2 + RULER_HEIGHT;
|
|
}
|
|
|
|
|
|
GtkWidget*
|
|
gtk_hruler_new (void)
|
|
{
|
|
return GTK_WIDGET (gtk_type_new (GTK_TYPE_HRULER));
|
|
}
|
|
|
|
static gint
|
|
gtk_hruler_motion_notify (GtkWidget *widget,
|
|
GdkEventMotion *event)
|
|
{
|
|
GtkRuler *ruler;
|
|
gint x;
|
|
|
|
g_return_val_if_fail (widget != NULL, FALSE);
|
|
g_return_val_if_fail (GTK_IS_HRULER (widget), FALSE);
|
|
g_return_val_if_fail (event != NULL, FALSE);
|
|
|
|
ruler = GTK_RULER (widget);
|
|
|
|
if (event->is_hint)
|
|
gdk_window_get_pointer (widget->window, &x, NULL, NULL);
|
|
else
|
|
x = event->x;
|
|
|
|
ruler->position = ruler->lower + ((ruler->upper - ruler->lower) * x) / widget->allocation.width;
|
|
|
|
/* Make sure the ruler has been allocated already */
|
|
if (ruler->backing_store != NULL)
|
|
gtk_ruler_draw_pos (ruler);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
gtk_hruler_draw_ticks (GtkRuler *ruler)
|
|
{
|
|
GtkWidget *widget;
|
|
GdkGC *gc, *bg_gc;
|
|
GdkFont *font;
|
|
gint i;
|
|
gint width, height;
|
|
gint xthickness;
|
|
gint ythickness;
|
|
gint length, ideal_length;
|
|
gfloat lower, upper; /* Upper and lower limits, in ruler units */
|
|
gfloat increment; /* Number of pixels per unit */
|
|
gint scale; /* Number of units per major unit */
|
|
gfloat subd_incr;
|
|
gfloat start, end, cur;
|
|
gchar unit_str[32];
|
|
gint digit_height;
|
|
gint digit_offset;
|
|
gint text_width;
|
|
gint pos;
|
|
PangoLayout *layout;
|
|
PangoRectangle logical_rect, ink_rect;
|
|
|
|
g_return_if_fail (ruler != NULL);
|
|
g_return_if_fail (GTK_IS_HRULER (ruler));
|
|
|
|
if (!GTK_WIDGET_DRAWABLE (ruler))
|
|
return;
|
|
|
|
widget = GTK_WIDGET (ruler);
|
|
|
|
gc = widget->style->fg_gc[GTK_STATE_NORMAL];
|
|
bg_gc = widget->style->bg_gc[GTK_STATE_NORMAL];
|
|
font = widget->style->font;
|
|
|
|
xthickness = widget->style->xthickness;
|
|
ythickness = widget->style->ythickness;
|
|
|
|
digit_height = PANGO_PIXELS (ink_rect.height) + 2;
|
|
digit_offset = ink_rect.y;
|
|
|
|
layout = gtk_widget_create_pango_layout (widget, "012456789");
|
|
pango_layout_get_extents (layout, &ink_rect, &logical_rect);
|
|
|
|
digit_height = PANGO_PIXELS (ink_rect.height) + 1;
|
|
digit_offset = ink_rect.y;
|
|
|
|
width = widget->allocation.width;
|
|
height = widget->allocation.height - ythickness * 2;
|
|
|
|
gtk_paint_box (widget->style, ruler->backing_store,
|
|
GTK_STATE_NORMAL, GTK_SHADOW_OUT,
|
|
NULL, widget, "hruler",
|
|
0, 0,
|
|
widget->allocation.width, widget->allocation.height);
|
|
|
|
|
|
gdk_draw_line (ruler->backing_store, gc,
|
|
xthickness,
|
|
height + ythickness,
|
|
widget->allocation.width - xthickness,
|
|
height + ythickness);
|
|
|
|
upper = ruler->upper / ruler->metric->pixels_per_unit;
|
|
lower = ruler->lower / ruler->metric->pixels_per_unit;
|
|
|
|
if ((upper - lower) == 0)
|
|
return;
|
|
increment = (gfloat) width / (upper - lower);
|
|
|
|
/* determine the scale
|
|
* We calculate the text size as for the vruler instead of using
|
|
* text_width = gdk_string_width(font, unit_str), so that the result
|
|
* for the scale looks consistent with an accompanying vruler
|
|
*/
|
|
scale = ceil (ruler->max_size / ruler->metric->pixels_per_unit);
|
|
sprintf (unit_str, "%d", scale);
|
|
text_width = strlen (unit_str) * digit_height + 1;
|
|
|
|
for (scale = 0; scale < MAXIMUM_SCALES; scale++)
|
|
if (ruler->metric->ruler_scale[scale] * fabs(increment) > 2 * text_width)
|
|
break;
|
|
|
|
if (scale == MAXIMUM_SCALES)
|
|
scale = MAXIMUM_SCALES - 1;
|
|
|
|
/* drawing starts here */
|
|
length = 0;
|
|
for (i = MAXIMUM_SUBDIVIDE - 1; i >= 0; i--)
|
|
{
|
|
subd_incr = (gfloat) ruler->metric->ruler_scale[scale] /
|
|
(gfloat) ruler->metric->subdivide[i];
|
|
if (subd_incr * fabs(increment) <= MINIMUM_INCR)
|
|
continue;
|
|
|
|
/* Calculate the length of the tickmarks. Make sure that
|
|
* this length increases for each set of ticks
|
|
*/
|
|
ideal_length = height / (i + 1) - 1;
|
|
if (ideal_length > ++length)
|
|
length = ideal_length;
|
|
|
|
if (lower < upper)
|
|
{
|
|
start = floor (lower / subd_incr) * subd_incr;
|
|
end = ceil (upper / subd_incr) * subd_incr;
|
|
}
|
|
else
|
|
{
|
|
start = floor (upper / subd_incr) * subd_incr;
|
|
end = ceil (lower / subd_incr) * subd_incr;
|
|
}
|
|
|
|
|
|
for (cur = start; cur <= end; cur += subd_incr)
|
|
{
|
|
pos = ROUND ((cur - lower) * increment);
|
|
|
|
gdk_draw_line (ruler->backing_store, gc,
|
|
pos, height + ythickness,
|
|
pos, height - length + ythickness);
|
|
|
|
/* draw label */
|
|
if (i == 0)
|
|
{
|
|
sprintf (unit_str, "%d", (int) cur);
|
|
|
|
pango_layout_set_text (layout, unit_str, -1);
|
|
pango_layout_get_extents (layout, &logical_rect, NULL);
|
|
|
|
gtk_paint_layout (widget->style,
|
|
ruler->backing_store,
|
|
GTK_WIDGET_STATE (widget),
|
|
NULL,
|
|
widget,
|
|
"hruler",
|
|
pos + 2, ythickness + PANGO_PIXELS (logical_rect.y - digit_offset),
|
|
layout);
|
|
}
|
|
}
|
|
}
|
|
|
|
g_object_unref (G_OBJECT (layout));
|
|
}
|
|
|
|
static void
|
|
gtk_hruler_draw_pos (GtkRuler *ruler)
|
|
{
|
|
GtkWidget *widget;
|
|
GdkGC *gc;
|
|
int i;
|
|
gint x, y;
|
|
gint width, height;
|
|
gint bs_width, bs_height;
|
|
gint xthickness;
|
|
gint ythickness;
|
|
gfloat increment;
|
|
|
|
g_return_if_fail (ruler != NULL);
|
|
g_return_if_fail (GTK_IS_HRULER (ruler));
|
|
|
|
if (GTK_WIDGET_DRAWABLE (ruler))
|
|
{
|
|
widget = GTK_WIDGET (ruler);
|
|
|
|
gc = widget->style->fg_gc[GTK_STATE_NORMAL];
|
|
xthickness = widget->style->xthickness;
|
|
ythickness = widget->style->ythickness;
|
|
width = widget->allocation.width;
|
|
height = widget->allocation.height - ythickness * 2;
|
|
|
|
bs_width = height / 2;
|
|
bs_width |= 1; /* make sure it's odd */
|
|
bs_height = bs_width / 2 + 1;
|
|
|
|
if ((bs_width > 0) && (bs_height > 0))
|
|
{
|
|
/* If a backing store exists, restore the ruler */
|
|
if (ruler->backing_store && ruler->non_gr_exp_gc)
|
|
gdk_draw_pixmap (ruler->widget.window,
|
|
ruler->non_gr_exp_gc,
|
|
ruler->backing_store,
|
|
ruler->xsrc, ruler->ysrc,
|
|
ruler->xsrc, ruler->ysrc,
|
|
bs_width, bs_height);
|
|
|
|
increment = (gfloat) width / (ruler->upper - ruler->lower);
|
|
|
|
x = ROUND ((ruler->position - ruler->lower) * increment) + (xthickness - bs_width) / 2 - 1;
|
|
y = (height + bs_height) / 2 + ythickness;
|
|
|
|
for (i = 0; i < bs_height; i++)
|
|
gdk_draw_line (widget->window, gc,
|
|
x + i, y + i,
|
|
x + bs_width - 1 - i, y + i);
|
|
|
|
|
|
ruler->xsrc = x;
|
|
ruler->ysrc = y;
|
|
}
|
|
}
|
|
}
|