Added GtkGis::set_scale and GtkGis::get_scale.
Scale factor now acts only on geometries (x, y, etc.) and not also on
properties (ex. line-with).
includedir=@includedir@
Name: @PACKAGE_NAME@
-Description: Library to embed GIS functionalities into applications based on Gtk+
+Description: A Gtk+ widget to embed base GIS functionalities into applications.
Version: @PACKAGE_VERSION@
Requires: gtk+-2.0
Libs: -L${libdir} -lgtkgis
include_HEADERS = \
libgtkgis.h \
+ commons.h \
gtkgis.h \
layer.h \
layersgroup.h \
--- /dev/null
+/*
+ * 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
+ *
+ */
+
+#ifndef __GTK_GIS_COMMONS_H__
+#define __GTK_GIS_COMMONS_H__
+
+#include <glib.h>
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+
+typedef struct
+ {
+ gdouble x;
+ gdouble y;
+ } GtkGisPoint;
+
+typedef struct
+ {
+ gdouble x;
+ gdouble y;
+ gdouble xy;
+ } GtkGisScale;
+
+typedef enum
+ {
+ LAYER_GEOMETRY_TYPE_POINT,
+ LAYER_GEOMETRY_TYPE_LINE,
+ LAYER_GEOMETRY_TYPE_POLYGON,
+ LAYER_GEOMETRY_TYPE_RASTER
+ } GtkGisLayerGeometryType;
+
+typedef struct
+ {
+ gdouble min_x;
+ gdouble min_y;
+ gdouble max_x;
+ gdouble max_y;
+ } GtkGisLayerExtent;
+
+
+G_END_DECLS
+
+#endif /* __GTK_GIS_COMMONS_H__ */
#include <config.h>
#endif
+#include "commons.h"
#include "geometry.h"
static void gtk_gis_geometry_class_init (GtkGisGeometryClass *klass);
*
*/
GooCanvasItem
-*gtk_gis_geometry_draw (GtkGisGeometry *geometry)
+*gtk_gis_geometry_draw (GtkGisGeometry *geometry, GtkGisScale *scale)
{
GooCanvasItem *item = NULL;
if (IS_GTK_GIS_GEOMETRY (geometry) && GTK_GIS_GEOMETRY_GET_CLASS (geometry)->draw != NULL)
{
- item = GTK_GIS_GEOMETRY_GET_CLASS (geometry)->draw (geometry);
+ item = GTK_GIS_GEOMETRY_GET_CLASS (geometry)->draw (geometry, scale);
}
return item;
#include <goocanvas.h>
+#include <commons.h>
+
G_BEGIN_DECLS
{
GObjectClass parent_class;
- GooCanvasItem *(*draw) (GtkGisGeometry *geometry);
+ GooCanvasItem *(*draw) (GtkGisGeometry *geometry, GtkGisScale *scale);
};
GType gtk_gis_geometry_get_type (void) G_GNUC_CONST;
-typedef struct
- {
- gdouble x;
- gdouble y;
- } GtkGisPoint;
-
-
gboolean gtk_gis_geometry_get_editable (GtkGisGeometry *geometry);
void gtk_gis_geometry_set_editable (GtkGisGeometry *geometry, gboolean editable);
-GooCanvasItem *gtk_gis_geometry_draw (GtkGisGeometry *geometry);
+GooCanvasItem *gtk_gis_geometry_draw (GtkGisGeometry *geometry, GtkGisScale *scale);
G_END_DECLS
static gchar *convert_comma_to_dot (gchar *str);
-static GooCanvasItem *gtk_gis_geometry_line_draw (GtkGisGeometry *line);
+static GooCanvasItem *gtk_gis_geometry_line_draw (GtkGisGeometry *line, GtkGisScale *scale);
static void gtk_gis_geometry_line_set_property (GObject *object,
guint property_id,
}
static GooCanvasItem
-*gtk_gis_geometry_line_draw (GtkGisGeometry *line)
+*gtk_gis_geometry_line_draw (GtkGisGeometry *line, GtkGisScale *scale)
{
GtkGisGeometryLinePrivate *priv;
GooCanvasItem *item = NULL;
path = convert_comma_to_dot (path);
item = goo_canvas_path_new (NULL,
path,
- "line-width", 1.0,
+ "line-width", 1.0 / scale->xy,
NULL);
}
static void gtk_gis_geometry_point_class_init (GtkGisGeometryPointClass *klass);
static void gtk_gis_geometry_point_init (GtkGisGeometryPoint *gtk_gis_geometry_point);
-static GooCanvasItem *gtk_gis_geometry_point_draw (GtkGisGeometry *point);
+static GooCanvasItem *gtk_gis_geometry_point_draw (GtkGisGeometry *point, GtkGisScale *scale);
static void gtk_gis_geometry_point_set_property (GObject *object,
guint property_id,
}
static
-GooCanvasItem *gtk_gis_geometry_point_draw (GtkGisGeometry *point)
+GooCanvasItem *gtk_gis_geometry_point_draw (GtkGisGeometry *point, GtkGisScale *scale)
{
GooCanvasItem *item = NULL;
{
item = goo_canvas_rect_new (NULL,
priv->point->x, priv->point->y,
- 1, 1,
- "line-width", 1.0,
+ 1 / scale->x, 1 / scale->y,
+ "line-width", 1.0 / scale->xy,
NULL);
}
static void gtk_gis_geometry_polygon_class_init (GtkGisGeometryPolygonClass *klass);
static void gtk_gis_geometry_polygon_init (GtkGisGeometryPolygon *gtk_gis_geometry_polygon);
-static GooCanvasItem *gtk_gis_geometry_polygon_draw (GtkGisGeometry *polygon);
+static GooCanvasItem *gtk_gis_geometry_polygon_draw (GtkGisGeometry *polygon, GtkGisScale *scale);
static void gtk_gis_geometry_polygon_set_property (GObject *object,
guint property_id,
}
static GooCanvasItem
-*gtk_gis_geometry_polygon_draw (GtkGisGeometry *polygon)
+*gtk_gis_geometry_polygon_draw (GtkGisGeometry *polygon, GtkGisScale *scale)
{
GtkGisGeometryPolygonPrivate *priv;
GooCanvasItem *polygon_item = NULL;
while (cur != NULL)
{
line = (GtkGisGeometry *)cur->data;
- item = gtk_gis_geometry_draw (line);
+ item = gtk_gis_geometry_draw (line, scale);
if (item != NULL)
{
GSList *layers;
GtkGisLayerExtent *extent;
-
- gdouble scale_x;
- gdouble scale_y;
+ GtkGisScale *scale;
};
G_DEFINE_TYPE (GtkGis, gtk_gis, GTK_TYPE_BIN)
priv->scroll_win = gtk_scrolled_window_new (NULL, NULL);
gtk_container_add (GTK_CONTAINER (gtk_gis), priv->scroll_win);
+ gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (priv->scroll_win),
+ GTK_POLICY_NEVER,
+ GTK_POLICY_NEVER);
+
priv->canvas = goo_canvas_new ();
gtk_container_add (GTK_CONTAINER (priv->scroll_win), priv->canvas);
priv->extent = NULL;
- priv->scale_x = 0.0;
- priv->scale_y = 0.0;
+ priv->scale = g_malloc0 (sizeof (GtkGisScale));
+ priv->scale->x = 1.0;
+ priv->scale->y = 1.0;
+ priv->scale->xy = 1.0;
}
/**
g_warning ("The file is not a valid gtkgis file.");
}
- gtk_gis_draw (GTK_GIS (gtkgis));
-
return gtkgis;
}
cur = priv->layers;
while (cur != NULL)
{
- gtk_gis_layer_draw ((GtkGisLayer *)cur->data, priv->canvas_root);
+ gtk_gis_layer_draw ((GtkGisLayer *)cur->data, priv->canvas_root, priv->scale);
cur = g_slist_next (cur);
}
}
/**
- * gtk_gis_zoom_to_max:
+ * gtk_gis_get_scale:
* @gtkgis:
*
+ * Returns: the #GtkGisScale.
+ */
+GtkGisScale
+*gtk_gis_get_scale (GtkGis *gtkgis)
+{
+ GtkGisPrivate *priv;
+ GtkGisScale *scale = NULL;
+
+ priv = GTK_GIS_GET_PRIVATE (gtkgis);
+
+ scale = g_malloc0 (sizeof (GtkGisScale));
+ scale->x = priv->scale->x;
+ scale->y = priv->scale->y;
+ scale->xy = priv->scale->xy;
+
+ return scale;
+}
+
+/**
+ * gtk_gis_set_scale:
+ * @gtkgis:
+ * @scale:
+ *
*/
void
-gtk_gis_zoom_to_max (GtkGis *gtkgis)
+gtk_gis_set_scale (GtkGis *gtkgis, GtkGisScale *scale)
{
GtkGisPrivate *priv;
- GtkRequisition requisition;
+
+ g_return_if_fail (scale != NULL);
priv = GTK_GIS_GET_PRIVATE (gtkgis);
-g_fprintf(stderr,"%f %f %f %f\n", priv->extent->min_x, priv->extent->max_x,
-priv->extent->min_y, priv->extent->max_y);
+ priv->scale->x = scale->x;
+ priv->scale->y = scale->y;
+ priv->scale->xy = scale->xy;
- gtk_gis_size_request (GTK_WIDGET (gtkgis), &requisition);
-g_fprintf(stderr,"%d %d\n", requisition.width, requisition.height);
- /*priv->scale_x = requisition.width / (priv->extent->max_x - priv->extent->min_x);
- priv->scale_y = requisition.height / (priv->extent->max_y - priv->extent->min_y);*/
- priv->scale_x = 640 / (priv->extent->max_x - priv->extent->min_x);
- priv->scale_y = 600 / (priv->extent->max_y - priv->extent->min_y);
-g_fprintf(stderr,"%f %f\n", priv->scale_x, priv->scale_y);
g_object_set (priv->canvas,
- "scale-x", priv->scale_x,
- "scale-y", priv->scale_y,
+ "scale-x", priv->scale->x,
+ "scale-y", priv->scale->y,
NULL);
}
+/**
+ * gtk_gis_zoom_to_max:
+ * @gtkgis:
+ *
+ */
+void
+gtk_gis_zoom_to_max (GtkGis *gtkgis)
+{
+ GtkGisPrivate *priv;
+ GtkGisScale *scale;
+
+ priv = GTK_GIS_GET_PRIVATE (gtkgis);
+
+ scale = g_malloc0 (sizeof (GtkGisScale));
+
+ scale->x = GTK_WIDGET (gtkgis)->allocation.width / (priv->extent->max_x - priv->extent->min_x);
+ scale->y = GTK_WIDGET (gtkgis)->allocation.height / (priv->extent->max_y - priv->extent->min_y);
+ scale->xy = (scale->x + scale->y) / 2;
+
+ gtk_gis_set_scale (gtkgis, scale);
+}
+
/**
* gtk_gis_zoom_to_layer:
* @gtkgis:
#include <gtk/gtk.h>
#include <libxml/tree.h>
+#include "commons.h"
#include "layersgroup.h"
#include "layer.h"
void gtk_gis_draw (GtkGis *gtkgis);
+GtkGisScale *gtk_gis_get_scale (GtkGis *gtkgis);
+void gtk_gis_set_scale (GtkGis *gtkgis, GtkGisScale *scale);
+
void gtk_gis_zoom_to_max (GtkGis *gtkgis);
void gtk_gis_zoom_to_layer (GtkGis *gtkgis, GtkGisLayer *layer);
*
*/
void
-gtk_gis_layer_draw (GtkGisLayer *layer, GooCanvasItem *root)
+gtk_gis_layer_draw (GtkGisLayer *layer, GooCanvasItem *root, GtkGisScale *scale)
{
GtkGisLayerPrivate *priv;
cur = g_list_first (priv->geometries);
while (cur != NULL)
{
- item = gtk_gis_geometry_draw ((GtkGisGeometry *)cur->data);
+ item = gtk_gis_geometry_draw ((GtkGisGeometry *)cur->data, scale);
if (item != NULL)
{
void gtk_gis_layer_set_editable (GtkGisLayer *layer,
gboolean editable);
-void gtk_gis_layer_draw (GtkGisLayer *layer, GooCanvasItem *root);
+void gtk_gis_layer_draw (GtkGisLayer *layer, GooCanvasItem *root, GtkGisScale *scale);
G_END_DECLS
GList *geometries = NULL;
OGRLayerH layer;
-
OGRFeatureH feature;
+
+ GtkGisLayerExtent extent;
+
OGRGeometryH poGeometry;
GtkGisGeometry *geometry;
g_return_if_fail (layer != NULL);
+ extent = gtk_gis_layer_source_get_layer_extent (source, name);
+
OGR_L_ResetReading (layer);
while ((feature = OGR_L_GetNextFeature (layer)) != NULL)
GtkGisPoint gpoint;
gpoint.x = OGR_G_GetX (poGeometry, 0);
- gpoint.y = OGR_G_GetY (poGeometry, 0);
+ gpoint.y = extent.max_y - OGR_G_GetY (poGeometry, 0) + extent.min_y;
geometry = gtk_gis_geometry_point_new (gpoint);
}
gpoint = g_malloc0 (sizeof (GtkGisPoint));
gpoint->x = OGR_G_GetX (poGeometry, point);
- gpoint->y = OGR_G_GetY (poGeometry, point);
+ gpoint->y = extent.max_y - OGR_G_GetY (poGeometry, point) + extent.min_y;
gpoints = g_slist_append (gpoints, gpoint);
}
gpoint = g_malloc0 (sizeof (GtkGisPoint));
gpoint->x = OGR_G_GetX (poGeometryInt, point);
- gpoint->y = OGR_G_GetY (poGeometryInt, point);
+ gpoint->y = extent.max_y - OGR_G_GetY (poGeometryInt, point) + extent.min_y;
gpoints = g_slist_append (gpoints, gpoint);
}
#include <ogr_api.h>
#include <ogr_core.h>
+#include "commons.h"
#include "geometry.h"
G_BEGIN_DECLS
#define GTK_GIS_LAYER_SOURCE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_GTK_GIS_LAYER_SOURCE, GtkGisLayerSourceClass))
-typedef enum
- {
- LAYER_GEOMETRY_TYPE_POINT,
- LAYER_GEOMETRY_TYPE_LINE,
- LAYER_GEOMETRY_TYPE_POLYGON,
- LAYER_GEOMETRY_TYPE_RASTER
- } GtkGisLayerGeometryType;
-
-typedef struct
- {
- gdouble min_x;
- gdouble min_y;
- gdouble max_x;
- gdouble max_y;
- } GtkGisLayerExtent;
-
-
typedef struct _GtkGisLayerSource GtkGisLayerSource;
typedef struct _GtkGisLayerSourceClass GtkGisLayerSourceClass;
gtk_widget_show_all (window);
gtk_gis_zoom_to_max (GTK_GIS (gtkgis));
+ gtk_gis_draw (GTK_GIS (gtkgis));
gtk_main ();
<source>
<shape filename="tests/samples/airports.shp" />
</source>
- </layer>
+ </layer>-->
<layer name="railroads">
<source>
<source>
<shape filename="tests/samples/rivers.shp" />
</source>
- </layer>-->
+ </layer>
</gtkgis>