]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkhruler.c
gtk/gtknotebook.c property nick and blurb should be marked with P_(), not
[~andy/gtk] / gtk / gtkhruler.c
index d827de748a5215e471e8e8e2459d2853c314ef50..caba1b3fb862202f021f02cb79ff592b49fb715f 100644 (file)
@@ -2,32 +2,35 @@
  * 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
+ * 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
- * Library General Public License for more details.
+ * Lesser General Public License for more details.
  *
- * You should have received a copy of the GNU Library General Public
+ * 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-1999.  See the AUTHORS
+ * 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 "config.h"
 #include <math.h>
-#include <stdio.h>
+#include <glib/gprintf.h>
 #include <string.h>
 #include "gtkhruler.h"
+#include "gtkintl.h"
+#include "gtkalias.h"
 
 
 #define RULER_HEIGHT          14
 #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;
-}
+G_DEFINE_TYPE (GtkHRuler, gtk_hruler, GTK_TYPE_RULER)
 
 static void
 gtk_hruler_class_init (GtkHRulerClass *klass)
@@ -92,15 +69,15 @@ gtk_hruler_init (GtkHRuler *hruler)
   GtkWidget *widget;
 
   widget = GTK_WIDGET (hruler);
-  widget->requisition.width = widget->style->klass->xthickness * 2 + 1;
-  widget->requisition.height = widget->style->klass->ythickness * 2 + RULER_HEIGHT;
+  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));
+  return g_object_new (GTK_TYPE_HRULER, NULL);
 }
 
 static gint
@@ -110,18 +87,13 @@ gtk_hruler_motion_notify (GtkWidget      *widget,
   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;
+  gdk_event_request_motions (event);
+  x = event->x;
 
   ruler->position = ruler->lower + ((ruler->upper - ruler->lower) * x) / widget->allocation.width;
+  g_object_notify (G_OBJECT (ruler), "position");
 
   /*  Make sure the ruler has been allocated already  */
   if (ruler->backing_store != NULL)
@@ -134,62 +106,64 @@ static void
 gtk_hruler_draw_ticks (GtkRuler *ruler)
 {
   GtkWidget *widget;
-  GdkGC *gc, *bg_gc;
-  GdkFont *font;
+  cairo_t *cr;
   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 */
+  gdouble lower, upper;                /* Upper and lower limits, in ruler units */
+  gdouble increment;           /* Number of pixels per unit */
   gint scale;                  /* Number of units per major unit */
-  gfloat subd_incr;
-  gfloat start, end, cur;
+  gdouble subd_incr;
+  gdouble start, end, cur;
   gchar unit_str[32];
   gint digit_height;
+  gint digit_offset;
   gint text_width;
   gint pos;
-
-  g_return_if_fail (ruler != NULL);
-  g_return_if_fail (GTK_IS_HRULER (ruler));
+  PangoLayout *layout;
+  PangoRectangle logical_rect, ink_rect;
 
   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;
 
-  xthickness = widget->style->klass->xthickness;
-  ythickness = widget->style->klass->ythickness;
-  digit_height = font->ascent; /* assume descent == 0 ? */
+  layout = gtk_widget_create_pango_layout (widget, "012456789");
+  pango_layout_get_extents (layout, &ink_rect, &logical_rect);
+  
+  digit_height = PANGO_PIXELS (ink_rect.height) + 2;
+  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);
+  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);
+
+  cr = gdk_cairo_create (ruler->backing_store);
+  gdk_cairo_set_source_color (cr, &widget->style->fg[widget->state]);
+  cairo_rectangle (cr, 
+                  xthickness,
+                  height + ythickness,
+                  widget->allocation.width - 2 * xthickness,
+                  1);
 
   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);
+    goto out;
+
+  increment = (gdouble) width / (upper - lower);
 
   /* determine the scale
    *  We calculate the text size as for the vruler instead of using
@@ -197,7 +171,7 @@ gtk_hruler_draw_ticks (GtkRuler *ruler)
    *  for the scale looks consistent with an accompanying vruler
    */
   scale = ceil (ruler->max_size / ruler->metric->pixels_per_unit);
-  sprintf (unit_str, "%d", scale);
+  g_snprintf (unit_str, sizeof (unit_str), "%d", scale);
   text_width = strlen (unit_str) * digit_height + 1;
 
   for (scale = 0; scale < MAXIMUM_SCALES; scale++)
@@ -211,8 +185,8 @@ gtk_hruler_draw_ticks (GtkRuler *ruler)
   length = 0;
   for (i = MAXIMUM_SUBDIVIDE - 1; i >= 0; i--)
     {
-      subd_incr = (gfloat) ruler->metric->ruler_scale[scale] / 
-                 (gfloat) ruler->metric->subdivide[i];
+      subd_incr = (gdouble) ruler->metric->ruler_scale[scale] / 
+                 (gdouble) ruler->metric->subdivide[i];
       if (subd_incr * fabs(increment) <= MINIMUM_INCR) 
        continue;
 
@@ -239,76 +213,92 @@ gtk_hruler_draw_ticks (GtkRuler *ruler)
        {
          pos = ROUND ((cur - lower) * increment);
 
-         gdk_draw_line (ruler->backing_store, gc,
-                        pos, height + ythickness
-                        pos, height - length + ythickness);
+         cairo_rectangle (cr, 
+                          pos, height + ythickness - length
+                          1,   length);
 
          /* draw label */
          if (i == 0)
            {
-             sprintf (unit_str, "%d", (int) cur);
-             gdk_draw_string (ruler->backing_store, font, gc,
-                              pos + 2, ythickness + font->ascent - 1,
-                              unit_str);
+             g_snprintf (unit_str, sizeof (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),
+                               FALSE,
+                                NULL,
+                                widget,
+                                "hruler",
+                                pos + 2, ythickness + PANGO_PIXELS (logical_rect.y - digit_offset),
+                                layout);
            }
        }
     }
+
+  cairo_fill (cr);
+out:
+  cairo_destroy (cr);
+
+  g_object_unref (layout);
 }
 
 static void
 gtk_hruler_draw_pos (GtkRuler *ruler)
 {
-  GtkWidget *widget;
-  GdkGC *gc;
-  int i;
+  GtkWidget *widget = GTK_WIDGET (ruler);
   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));
+  gdouble increment;
 
   if (GTK_WIDGET_DRAWABLE (ruler))
     {
-      widget = GTK_WIDGET (ruler);
-
-      gc = widget->style->fg_gc[GTK_STATE_NORMAL];
-      xthickness = widget->style->klass->xthickness;
-      ythickness = widget->style->klass->ythickness;
+      xthickness = widget->style->xthickness;
+      ythickness = widget->style->ythickness;
       width = widget->allocation.width;
       height = widget->allocation.height - ythickness * 2;
 
-      bs_width = height / 2;
+      bs_width = height / 2 + 2;
       bs_width |= 1;  /* make sure it's odd */
       bs_height = bs_width / 2 + 1;
 
       if ((bs_width > 0) && (bs_height > 0))
        {
+         cairo_t *cr = gdk_cairo_create (widget->window);
+      
          /*  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);
+         if (ruler->backing_store)
+           gdk_draw_drawable (widget->window,
+                              widget->style->black_gc,
+                              ruler->backing_store,
+                              ruler->xsrc, ruler->ysrc,
+                              ruler->xsrc, ruler->ysrc,
+                              bs_width, bs_height);
 
-         increment = (gfloat) width / (ruler->upper - ruler->lower);
+         increment = (gdouble) 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);
+         gdk_cairo_set_source_color (cr, &widget->style->fg[widget->state]);
 
+         cairo_move_to (cr, x,                  y);
+         cairo_line_to (cr, x + bs_width / 2., y + bs_height);
+         cairo_line_to (cr, x + bs_width,      y);
+         cairo_fill (cr);
+
+         cairo_destroy (cr);
 
          ruler->xsrc = x;
          ruler->ysrc = y;
        }
     }
 }
+
+#define __GTK_HRULER_C__
+#include "gtkaliasdef.c"