Changed method to draw polygons, so they have also internal rings.
Implemented fill-color style property.
tests/.libs
tests/from_xml
tests/test_comune.gtkgis
+tests/test_ciambella.gtkgis
tests/samples
docs/reference/.libs
docs/reference/html
gtk_gis_geometry_line_new_from_list
gtk_gis_geometry_line_add_point
gtk_gis_geometry_line_add_point_from_coordinates
+gtk_gis_geometry_line_get_svg_path
</SECTION>
<SECTION>
<RETURNS>void </RETURNS>
GtkGisGeometryLine *line,gdouble x, gdouble y
</FUNCTION>
+<FUNCTION>
+<NAME>gtk_gis_geometry_line_get_svg_path</NAME>
+<RETURNS>const gchar *</RETURNS>
+GtkGisGeometryLine *line
+</FUNCTION>
<MACRO>
<NAME>TYPE_GTK_GIS_GEOMETRY</NAME>
#define TYPE_GTK_GIS_GEOMETRY (gtk_gis_geometry_get_type ())
11% symbol docs coverage.
22 symbols documented.
7 symbols incomplete.
-170 not documented.
+171 not documented.
GTK_GIS
gtk_gis_geometry_get_type
gtk_gis_geometry_line_add_point
gtk_gis_geometry_line_add_point_from_coordinates
+gtk_gis_geometry_line_get_svg_path
gtk_gis_geometry_line_get_type
gtk_gis_geometry_point_get_type
gtk_gis_geometry_point_get_x
GtkGisLayerSourceRasterClass
GtkGisLayerSourceShpClass
GtkGisLayersGroupClass
+gtk_gis_geometry_line_get_svg_path
gtk_gis_layer_get_style
gtk_gis_layer_set_style
GtkGisPoint *gpoint;
+ g_return_if_fail (IS_GTK_GIS_GEOMETRY_LINE (line));
+
gpoint = g_malloc0 (sizeof (GtkGisPoint));
gpoint->x = point.x;
{
GtkGisPoint gpoint;
+ g_return_if_fail (IS_GTK_GIS_GEOMETRY_LINE (line));
+
gpoint.x = x;
gpoint.y = y;
gtk_gis_geometry_line_add_point (line, gpoint);
}
+/**
+ * gtk_gis_geometry_line_get_svg_path:
+ * @line: a #GtkGisGeometryLine object.
+ *
+ * Returns: the SVG path string representation of the object.
+ */
+const gchar
+*gtk_gis_geometry_line_get_svg_path (GtkGisGeometryLine *line)
+{
+ GtkGisGeometryLinePrivate *priv;
+ gchar *ret;
+ GSList *cur;
+ GtkGisPoint *point;
+
+ g_return_val_if_fail (IS_GTK_GIS_GEOMETRY_LINE (line), NULL);
+
+ priv = GTK_GIS_GEOMETRY_LINE_GET_PRIVATE (line);
+
+ cur = priv->points;
+
+ point = (GtkGisPoint *)cur->data;
+ ret = g_strdup_printf ("M %f %f", point->x, point->y);
+
+ cur = g_slist_next (cur);
+ while (cur != NULL)
+ {
+ point = (GtkGisPoint *)cur->data;
+ ret = g_strconcat (ret,
+ g_strdup_printf (" L %f %f", point->x, point->y),
+ NULL);
+
+ cur = g_slist_next (cur);
+ }
+
+ ret = convert_comma_to_dot (ret);
+
+ return ret;
+}
+
static gchar
*convert_comma_to_dot (gchar *str)
{
{
GtkGisGeometryLinePrivate *priv;
GooCanvasItem *item = NULL;
- GtkGisPoint *point;
gchar *path;
if (priv->points != NULL)
{
- GSList *cur;
-
- cur = priv->points;
-
- point = (GtkGisPoint *)cur->data;
- path = g_strdup_printf ("M %f %f", point->x, point->y);
-
- cur = g_slist_next (cur);
- while (cur != NULL)
+ path = (gchar *)gtk_gis_geometry_line_get_svg_path (GTK_GIS_GEOMETRY_LINE (line));
+ if (path != NULL)
{
- point = (GtkGisPoint *)cur->data;
- path = g_strconcat (path,
- g_strdup_printf (" L %f %f", point->x, point->y),
- NULL);
-
- cur = g_slist_next (cur);
+ item = goo_canvas_path_new (NULL,
+ path,
+ "line-width", style.width / scale->xy,
+ "stroke-color", style.stroke_color,
+ NULL);
}
-
- path = convert_comma_to_dot (path);
- item = goo_canvas_path_new (NULL,
- path,
- "line-width", style.width / scale->xy,
- "stroke-color", style.stroke_color,
- NULL);
}
return item;
void gtk_gis_geometry_line_add_point_from_coordinates (GtkGisGeometryLine *line,
gdouble x, gdouble y);
+const gchar *gtk_gis_geometry_line_get_svg_path (GtkGisGeometryLine *line);
G_END_DECLS
{
GtkGisGeometry *polygon;
+ g_return_val_if_fail (IS_GTK_GIS_GEOMETRY_LINE (line), NULL);
+
polygon = gtk_gis_geometry_polygon_new ();
gtk_gis_geometry_polygon_add_line (GTK_GIS_GEOMETRY_POLYGON (polygon), line);
gtk_gis_geometry_polygon_add_line (GtkGisGeometryPolygon *polygon,
GtkGisGeometryLine *line)
{
- GtkGisGeometryPolygonPrivate *priv = GTK_GIS_GEOMETRY_POLYGON_GET_PRIVATE (polygon);
+ GtkGisGeometryPolygonPrivate *priv;
+
+ g_return_if_fail (IS_GTK_GIS_GEOMETRY_POLYGON (polygon));
+ g_return_if_fail (IS_GTK_GIS_GEOMETRY_LINE (line));
+
+ priv = GTK_GIS_GEOMETRY_POLYGON_GET_PRIVATE (polygon);
priv->lines = g_slist_append (priv->lines, line);
}
{
GtkGisGeometry *line;
+ g_return_if_fail (IS_GTK_GIS_GEOMETRY_POLYGON (polygon));
+
line = gtk_gis_geometry_line_new_from_list (points);
if (line != NULL)
gtk_gis_geometry_polygon_remove_line (GtkGisGeometryPolygon *polygon,
GtkGisGeometryLine *line)
{
- GtkGisGeometryPolygonPrivate *priv = GTK_GIS_GEOMETRY_POLYGON_GET_PRIVATE (polygon);
+ GtkGisGeometryPolygonPrivate *priv;
+
+ g_return_if_fail (IS_GTK_GIS_GEOMETRY_POLYGON (polygon));
+ g_return_if_fail (IS_GTK_GIS_GEOMETRY_LINE (line));
+
+ priv = GTK_GIS_GEOMETRY_POLYGON_GET_PRIVATE (polygon);
priv->lines = g_slist_remove (priv->lines, line);
}
GtkGisLayerStyle style)
{
GtkGisGeometryPolygonPrivate *priv;
- GooCanvasItem *polygon_item = NULL;
+ GooCanvasItem *item = NULL;
- gchar *path;
+ gchar *path = "";
+
+ g_return_val_if_fail (IS_GTK_GIS_GEOMETRY_POLYGON (polygon), NULL);
priv = GTK_GIS_GEOMETRY_POLYGON_GET_PRIVATE (GTK_GIS_GEOMETRY_POLYGON (polygon));
{
GSList *cur;
GtkGisGeometry *line;
- GooCanvasItem *item = NULL;
-
- polygon_item = goo_canvas_group_new (NULL, NULL);
cur = priv->lines;
-
while (cur != NULL)
{
- line = (GtkGisGeometry *)cur->data;
- item = gtk_gis_geometry_draw (line, scale, style);
-
- if (item != NULL)
- {
- goo_canvas_item_add_child (polygon_item, item, -1);
- }
-
+ line = (GtkGisGeometry *)cur->data;
+ path = g_strconcat (path,
+ " ",
+ gtk_gis_geometry_line_get_svg_path (GTK_GIS_GEOMETRY_LINE (line)),
+ NULL);
+
cur = g_slist_next (cur);
}
+
+ item = goo_canvas_path_new (NULL,
+ path,
+ "line-width", style.width / scale->xy,
+ "stroke-color", style.stroke_color,
+ "fill-color", style.fill_color,
+ "fill-rule", CAIRO_FILL_RULE_EVEN_ODD,
+ NULL);
}
- return polygon_item;
+ return item;
}
static void
if (poGeometry != NULL
&& wkbFlatten (OGR_G_GetGeometryType (poGeometry)) == wkbPoint)
{
+ /* POINTS */
GtkGisPoint gpoint;
gpoint.x = OGR_G_GetX (poGeometry, 0);
else if (poGeometry != NULL
&& wkbFlatten (OGR_G_GetGeometryType (poGeometry)) == wkbLineString)
{
+ /* LINES */
gint points;
gint point;
GSList *gpoints = NULL;
else if (poGeometry != NULL
&& wkbFlatten (OGR_G_GetGeometryType (poGeometry)) == wkbPolygon)
{
+ /* POLYGONS */
gint num_geometries;
gint i_geometry;
<source>
<shape filename="tests/samples/alaska.shp" />
</source>
+ <style>
+ <fill-color>#FFFF00</fill-color>
+ </style>
</layer>
<layer name="airports">