]> saetta.ns0.it Git - libgtkgis/commitdiff
Added functions gtk_gis_color_parse and gtk_gis_color_to_string.
authorAndrea Zagli <azagli@libero.it>
Wed, 19 Aug 2009 15:43:27 +0000 (17:43 +0200)
committerAndrea Zagli <azagli@libero.it>
Wed, 19 Aug 2009 15:43:27 +0000 (17:43 +0200)
Added zoom in by drag & drop with the mouse.
Colors can be specified only on the form #rrggbbaa.

docs/reference/libgtkgis-undocumented.txt
src/Makefile.am
src/commons.c [new file with mode: 0644]
src/geometryline.c
src/geometrypoint.c
src/geometrypolygon.c
src/geometryraster.c
src/gtkgis.c
src/layer.c
tests/test1.gtkgis

index 7dfb79f4bbb94989d5d53d8ac84f99ff9b5a3011..5bdfc507f8ee3993c2eb5baa4437af06eeee51f9 100644 (file)
@@ -1,7 +1,7 @@
 11% symbol docs coverage.
 23 symbols documented.
 7 symbols incomplete.
-179 not documented.
+181 not documented.
 
 
 GTK_GIS
@@ -91,6 +91,8 @@ TYPE_GTK_GIS_LAYER_SOURCE_RASTER
 TYPE_GTK_GIS_LAYER_SOURCE_SHP
 gtk_gis_add_group
 gtk_gis_add_layer
+gtk_gis_color_parse
+gtk_gis_color_to_string
 gtk_gis_draw
 gtk_gis_geometry_draw
 gtk_gis_geometry_get_editable
index a84ed5c771423f3c025b1efe72d2f2ca6e5bad88..09d077754f733de018bfce10075120c0e6990df4 100644 (file)
@@ -12,6 +12,7 @@ libgtkgis_la_LDFLAGS = -no-undefined
 libgtkgisincludedir = $(includedir)/gtkgis
 
 libgtkgis_la_SOURCES = \
+                       commons.c \
                        gtkgis.c \
                        layersgroup.c \
                        layer.c \
diff --git a/src/commons.c b/src/commons.c
new file mode 100644 (file)
index 0000000..0c63fff
--- /dev/null
@@ -0,0 +1,122 @@
+/*
+ * Copyright (C) 2009 Andrea Zagli <azagli@libero.it>
+ *
+ * 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.1 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ */
+
+#include <stdio.h>
+#include <string.h>
+
+#include <glib.h>
+
+#include "commons.h"
+
+/**
+ * gtk_gis_color_parse:
+ * @color: a string that represent a color.
+ *
+ * Returns: a 32bit number.
+ */
+guint32
+gtk_gis_color_parse (const gchar *color)
+{
+       guint32 ret_color = 0;
+       gchar *c;
+
+       c = g_strstrip (g_strdup (color));
+
+       if (c[0] == '#')
+               {
+                       gint val;
+
+                       if (strlen (c) == 4 || strlen (c) == 5)
+                               {
+                                       if (isxdigit (c[1]))
+                                               {
+                                                       ret_color += strtoul (g_strdup_printf ("%c%c", c[1], c[1]), NULL, 16) << 24;
+                                               }
+                                       if (isxdigit (c[2]))
+                                               {
+                                                       ret_color += strtoul (g_strdup_printf ("%c%c", c[2], c[2]), NULL, 16) << 16;
+                                               }
+                                       if (isxdigit (c[3]))
+                                               {
+                                                       ret_color += strtoul (g_strdup_printf ("%c%c", c[3], c[3]), NULL, 16) << 8;
+                                               }
+                                       if (strlen (c) == 5 && isxdigit (c[4]))
+                                               {
+                                                       ret_color += strtoul (g_strdup_printf ("%c%c", c[4], c[4]), NULL, 16);
+                                               }
+                                       else
+                                               {
+                                                       ret_color += 255;
+                                               }
+                               }
+                       else if (strlen (c) == 7 || strlen (c) == 9)
+                               {
+                                       if (isxdigit (c[1]) && isxdigit (c[2]))
+                                               {
+                                                       ret_color += strtoul (g_strndup (&c[1], 2), NULL, 16) << 24;
+                                               }
+                                       if (isxdigit (c[3]) && isxdigit (c[4]))
+                                               {
+                                                       ret_color += strtoul (g_strndup (&c[3], 2), NULL, 16) << 16;
+                                               }
+                                       if (isxdigit (c[5]) && isxdigit (c[6]))
+                                               {
+                                                       ret_color += strtoul (g_strndup (&c[5], 2), NULL, 16) << 8;
+                                               }
+                                       if (strlen (c) == 9 && isxdigit (c[7]) && isxdigit (c[8]))
+                                               {
+                                                       ret_color += strtoul (g_strndup (&c[7], 2), NULL, 16);
+                                               }
+                                       else
+                                               {
+                                                       ret_color += 255;
+                                               }
+                               }
+               }
+       else
+               {
+                       /* TO DO
+                        * parse named colors
+                        */
+                       g_warning ("Only color in the format #rrggbbaa are admitted.");
+               }
+
+       return ret_color;
+}
+
+/**
+ * gtk_gis_color_to_string:
+ * @color: a 32bit integer.
+ *
+ * Returns: the hexadecimal string representation of the color.
+ */
+gchar
+*gtk_gis_color_to_string (guint32 color)
+{
+       gchar *ret;
+
+       ret = g_strconcat ("#",
+                          g_strdup_printf ("%02X", color >> 24 & 0xFF),
+                          g_strdup_printf ("%02X", color >> 16 & 0xFF),
+                          g_strdup_printf ("%02X", color >> 8 & 0xFF),
+                          g_strdup_printf ("%02X", color & 0xFF),
+                          NULL);
+
+       return ret;
+}
index c76c7c9a6e38c0af982a35fd8937b41fdb596f60..23ab56b34a0e4f2ce819496e41617d92b7c4dc98 100644 (file)
@@ -306,7 +306,7 @@ static GooCanvasItem
                                        item = goo_canvas_path_new (NULL,
                                                                    path,
                                                                    "line-width", style->width / scale->xy,
-                                                                   "stroke-color", style->stroke_color,
+                                                                   "stroke-color-rgba", gtk_gis_color_parse (style->stroke_color),
                                                                    NULL);
 
                                        str_label = gtk_gis_geometry_get_label (line);
index 797988449b6a97d0bd2f11ec8acfeb9232750c76..3110af04b539216bf176576e930f37417004e298 100644 (file)
@@ -187,8 +187,8 @@ GooCanvasItem *gtk_gis_geometry_point_draw (GtkGisGeometry *point,
                                                       priv->point->x, priv->point->y,
                                                       (style->width / 2) / scale->x, (style->width / 2) / scale->y,
                                                       "line-width", style->width / scale->xy,
-                                                      "stroke-color", style->stroke_color,
-                                                      "fill-color", style->fill_color,
+                                                      "stroke-color-rgba", gtk_gis_color_parse (style->stroke_color),
+                                                      "fill-color-rgba", gtk_gis_color_parse (style->fill_color),
                                                       NULL);
 
                        str_label = gtk_gis_geometry_get_label (point);
index ca15d6323a15e610c9c5f3eefcab83a4415ba963..3d573695c8ef0e64d9a82d76f1972f80a3b48d56 100644 (file)
@@ -288,8 +288,8 @@ static GooCanvasItem
                        item = goo_canvas_path_new (NULL,
                                                    path + 1,
                                                    "line-width", style->width / scale->xy,
-                                                   "stroke-color", style->stroke_color,
-                                                   "fill-color", style->fill_color,
+                                                   "stroke-color-rgba", gtk_gis_color_parse (style->stroke_color),
+                                                   "fill-color-rgba", gtk_gis_color_parse (style->fill_color),
                                                    "fill-rule", CAIRO_FILL_RULE_EVEN_ODD,
                                                    NULL);
 
index dc9704409836d48c9ee9f493dc5472356dc1475a..fae7722a8685a3db3f407a2a594eaafa82bc7dc9 100644 (file)
@@ -33,7 +33,7 @@ static void gtk_gis_geometry_raster_init (GtkGisGeometryRaster *gtk_gis_geometry
 static
 GooCanvasItem *gtk_gis_geometry_raster_draw (GtkGisGeometry *raster,
                                              GtkGisScale *scale,
-                                             GtkGisLayerStyle style);
+                                             GtkGisLayerStyle *style);
 
 static void gtk_gis_geometry_raster_set_property (GObject *object,
                                      guint property_id,
@@ -118,7 +118,7 @@ GtkGisGeometry
 static GooCanvasItem
 *gtk_gis_geometry_raster_draw (GtkGisGeometry *raster,
                                GtkGisScale *scale,
-                               GtkGisLayerStyle style)
+                               GtkGisLayerStyle *style)
 {
        GooCanvasItem *item = NULL;
 
index 694d07ff25221f3261d70affffcfceebbfdef662..8db9eddc2dc59fd8ba1f0ed9d68647773fec4d54 100644 (file)
@@ -89,6 +89,8 @@ struct _GtkGisPrivate
                GtkWidget *canvas;
                GooCanvasItem *canvas_root;
 
+               GooCanvasItem *canvas_selection_rect;
+
                GSList *layers_groups;
                GSList *layers;
 
@@ -146,6 +148,14 @@ gtk_gis_init (GtkGis *gtk_gis)
 
     priv->canvas_root = goo_canvas_get_root_item (GOO_CANVAS (priv->canvas));
 
+       priv->canvas_selection_rect = goo_canvas_rect_new (priv->canvas_root,
+                                                          0.0, 0.0, 0.0, 0.0,
+                                                          "line-width", 1.0,
+                                                          "stroke-color-rgba", gtk_gis_color_parse ("#FF0000"),
+                                                          "fill-color-rgba", gtk_gis_color_parse ("#77777780"),
+                                                          "visibility", GOO_CANVAS_ITEM_INVISIBLE,
+                                                          NULL);
+
        priv->layers_groups = NULL;
        priv->layers = NULL;
 
@@ -707,6 +717,10 @@ gtk_gis_set_scale (GtkGis *gtkgis, GtkGisScale *scale)
 
        gtk_gis_canvas_resize (gtkgis);
 
+       g_object_set (G_OBJECT (priv->canvas_selection_rect),
+                     "line-width", 1.0 / priv->scale->xy,
+                             NULL);
+
        gdk_window_set_cursor (GTK_WIDGET (gtkgis)->window, NULL);
 }
 
@@ -777,6 +791,8 @@ gtk_gis_zoom_to_extent (GtkGis *gtkgis, GtkGisExtent extent)
        scale->xy = (scale->x + scale->y) / 2;
 
        gtk_gis_set_scale (gtkgis, scale);
+
+       gtk_gis_move_to (gtkgis, extent.min_x, extent.min_y);
 }
 
 /**
@@ -872,8 +888,6 @@ gtk_gis_zoom_to_layer (GtkGis *gtkgis, GtkGisLayer *layer)
 
        extent = gtk_gis_layer_get_extent (layer);
        gtk_gis_zoom_to_extent (gtkgis, *extent);
-
-       gtk_gis_move_to (gtkgis, extent->min_x, extent->min_y);
 }
 
 /**
@@ -1150,6 +1164,29 @@ gtk_gis_button_press_event (GtkWidget *widget,
 
        if (event->button == 1)
                {
+                       if (event->state & GDK_SHIFT_MASK)
+                               {
+                                       GtkAllocation allocation;
+                                       gdouble x;
+                                       gdouble y;
+
+                                       allocation = priv->canvas->allocation;
+
+                                       x = (0 - allocation.x) + event->x;
+                                       y = (0 - allocation.y) + event->y;
+                                       goo_canvas_convert_from_pixels (GOO_CANVAS (priv->canvas), &x, &y);
+
+                                       g_object_set (G_OBJECT (priv->canvas_selection_rect),
+                                                     "x", x,
+                                                     "y", y,
+                                                     "width", 0.0,
+                                                     "height", 0.0,
+                                                     "visibility", GOO_CANVAS_ITEM_VISIBLE,
+                                                     NULL);
+
+                                       goo_canvas_item_raise (priv->canvas_selection_rect, NULL);
+                               }
+
                        if (priv->sel_start == NULL)
                                {
                                        priv->sel_start = g_malloc0 (sizeof (GtkGisPoint));
@@ -1177,6 +1214,35 @@ gtk_gis_button_release_event (GtkWidget *widget,
 
        if (event->button == 1)
                {
+                       if (event->state & GDK_SHIFT_MASK)
+                               {
+                                       /* zoom */
+                                       GtkGisExtent extent;
+
+                                       gdouble x;
+                                       gdouble y;
+                                       gdouble width;
+                                       gdouble height;
+
+                                       g_object_get (G_OBJECT (priv->canvas_selection_rect),
+                                                     "x", &x,
+                                                     "y", &y,
+                                                     "width", &width,
+                                                     "height", &height,
+                                                     NULL);
+
+                                       extent.min_x = x;
+                                       extent.min_y = y;
+                                       extent.max_x = x + width;
+                                       extent.max_y = y + height;
+
+                                       g_object_set (G_OBJECT (priv->canvas_selection_rect),
+                                                     "visibility", GOO_CANVAS_ITEM_INVISIBLE,
+                                                     NULL);
+
+                                       gtk_gis_zoom_to_extent (gtkgis, extent);
+                               }
+
                        g_free (priv->sel_start);
                        priv->sel_start = NULL;
                }
@@ -1216,18 +1282,46 @@ gtk_gis_motion_notify_event (GtkWidget *widget,
            && priv->sel_start != NULL)
                {
                        GtkAllocation allocation;
-                       GtkAllocation new_allocation;
 
                        allocation = priv->canvas->allocation;
 
-                       new_allocation.x = allocation.x + (x - (gint)priv->sel_start->x);
-                       new_allocation.y = allocation.y + (y - (gint)priv->sel_start->y);
+                       if (state & GDK_SHIFT_MASK
+                       && priv->sel_start != NULL)
+                               {
+                                       /* selection */
+                                       gdouble canvas_x;
+                                       gdouble canvas_y;
+                                       gdouble rect_x;
+                                       gdouble rect_y;
+
+                                       canvas_x = (0 - allocation.x) + x;
+                                       canvas_y = (0 - allocation.y) + y;
+                                       goo_canvas_convert_from_pixels (GOO_CANVAS (priv->canvas), &canvas_x, &canvas_y);
+
+                                       g_object_get (G_OBJECT (priv->canvas_selection_rect),
+                                                     "x", &rect_x,
+                                                     "y", &rect_y,
+                                                     NULL);            
+
+                                       g_object_set (G_OBJECT (priv->canvas_selection_rect),
+                                                             "width", ABS (canvas_x - rect_x),
+                                                             "height", ABS (canvas_y - rect_y),
+                                                             NULL);
+                               }
+                       else
+                               {
+                                       /* pan */
+                                       GtkAllocation new_allocation;
+
+                                       new_allocation.x = allocation.x + (x - (gint)priv->sel_start->x);
+                                       new_allocation.y = allocation.y + (y - (gint)priv->sel_start->y);
 
-                       gtk_layout_move (GTK_LAYOUT (priv->scroll_win), priv->canvas,
-                                        new_allocation.x, new_allocation.y);
+                                       gtk_layout_move (GTK_LAYOUT (priv->scroll_win), priv->canvas,
+                                                                new_allocation.x, new_allocation.y);
 
-                       priv->sel_start->x = x;
-                       priv->sel_start->y = y;
+                                       priv->sel_start->x = x;
+                                       priv->sel_start->y = y;
+                               }
                }
 
        return FALSE;
index 2deef9addb773fca17935b71810fa11a293b9a62..a920e841c42ddea25a27c4d3891f1452f416a5e4 100644 (file)
@@ -85,13 +85,13 @@ gtk_gis_layer_init (GtkGisLayer *gtk_gis_layer)
 
        priv->style = g_malloc (sizeof (GtkGisLayerStyle));
        priv->style->width = 0.5;
-       priv->style->stroke_color = g_strdup ("black");
-       priv->style->fill_color =  g_strdup ("white");
+       priv->style->stroke_color = g_strdup ("#000000");
+       priv->style->fill_color =  g_strdup ("#FFFFFF");
 
        priv->label = g_malloc (sizeof (GtkGisLayerLabel));
        priv->label->field = NULL;
-       priv->label->color = g_strdup ("black");
-       priv->label->background_color =  g_strdup ("white");
+       priv->label->color = g_strdup ("#000000");
+       priv->label->background_color =  g_strdup ("#FFFFFF");
        priv->label->font = g_strdup ("Sans 12");
 }
 
index e717e18ccc10e2ff59fa769c8fd5c0eb5f51a184..d3b0e7209f115abb1903aec7f8397f0060ce9517 100644 (file)
@@ -5,7 +5,7 @@
                        <shape filename="tests/samples/alaska.shp" />
                </source>
                <style>
-                       <fill-color>#FFFF00</fill-color>
+                       <fill-color>#C5DFBF</fill-color>
                </style>
        </layer>
 
                        <shape filename="tests/samples/airports.shp" />
                </source>
                <style>
-                       <stroke-color>red</stroke-color>
+                       <stroke-color>#FF0000</stroke-color>
                </style>
                <!--<label>
                        <field>NAME</field>
                </label>-->
        </layer>
 
-       <!--<layer name="railroads">
+       <layer name="railroads">
                <source>
                        <shape filename="tests/samples/railroads.shp" />
                </source>
                <style>
-                       <stroke-color>red</stroke-color>
+                       <stroke-color>#00FF00</stroke-color>
                </style>
-       </layer>-->
+       </layer>
 
        <layer name="rivers">
                <source>
                        <shape filename="tests/samples/rivers.shp" />
                </source>
                <style>
-                       <stroke-color>blue</stroke-color>
+                       <stroke-color>#0000FF</stroke-color>
                </style>
                <!--<label>
                        <field>NAM</field>