Added watch cursor when drawing.
-ACLOCAL_AMFLAGS=-I m4
+ACLOCAL_AMFLAGS = -I m4
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
SUBDIRS = src data docs tests
-EXTRA_DIST = autogen.sh libgtkgis.pc.in
+EXTRA_DIST = \
+ autogen.sh \
+ libgtkgis.pc.in
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libgtkgis.pc
ChangeLog:
@echo Creating $@
@if test -d "$(srcdir)/.git"; then \
- (GIT_DIR=$(top_srcdir)/.git ./missing --run git log GTKGIS_0_0_1.. --stat -M -C --name-status --date=short --no-color) | fmt --split-only > $@.tmp \
+ (GIT_DIR=$(top_srcdir)/.git ./missing --run git log --stat -M -C --name-status --date=short --no-color) | fmt --split-only > $@.tmp \
&& mv -f $@.tmp $@ \
|| ($(RM) $@.tmp; \
echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
have_libtool=false
if libtoolize --version < /dev/null > /dev/null 2>&1 ; then
- libtool_version=`libtoolize --version | sed 's/^[^0-9]*\([0-9.][0-9.]*\).*/\1/'`
+ libtool_version=`libtoolize --version | sed 's/^.*[ ]\([0-9.]*[a-z]*\).*$/\1/'`
case $libtool_version in
2.*)
have_libtool=true
AC_PATH_PROG(GDAL_CONFIG, "gdal-config", no)
if test x"$GDAL_CONFIG" = xno; then
- AC_MSG_ERROR([gdal-config executable not found in your path - make sure yo have gdal installed])
+ AC_MSG_ERROR([gdal-config executable not found in your path - make sure yo have gdal installed or set GDAL_CFLAGS and GDAL_LIBS on command line])
fi
# Checks for libraries.
GDAL_CFLAGS=`$GDAL_CONFIG --cflags`
GDAL_LIBS=`$GDAL_CONFIG --libs`
-AC_SUBST(GDAL_CFLAGS)
-AC_SUBST(GDAL_LIBS)
+AC_ARG_VAR(GDAL_CFLAGS, [C compiler flags for Gdal - on Windows there isn't gdal-config so you are obliged to set it])
+AC_ARG_VAR(GDAL_LIBS, [linker flags for Gdal - on Windows there isn't gdal-config so you are obliged to set it])
# Checks for header files.
AC_FUNC_ALLOCA
gtk_gis_draw (GtkGis *gtkgis)
{
GtkGisPrivate *priv;
+ GdkCursor *cursor;
GSList *cur;
GtkGisLayerSource *layer_source;
priv = GTK_GIS_GET_PRIVATE (gtkgis);
+ cursor = gdk_cursor_new (GDK_WATCH);
+ gdk_window_set_cursor (GTK_WIDGET (gtkgis)->window, cursor);
+
+ while (gtk_events_pending ())
+ gtk_main_iteration ();
+
cur = priv->layers;
while (cur != NULL)
{
}
gtk_gis_canvas_resize (gtkgis);
+
+ gdk_window_set_cursor (GTK_WIDGET (gtkgis)->window, NULL);
}
/**
gtk_gis_set_scale (GtkGis *gtkgis, GtkGisScale *scale)
{
GtkGisPrivate *priv;
+ GdkCursor *cursor;
g_return_if_fail (scale != NULL);
priv->scale->y = scale->y;
priv->scale->xy = scale->xy;
+ cursor = gdk_cursor_new (GDK_WATCH);
+ gdk_window_set_cursor (GTK_WIDGET (gtkgis)->window, cursor);
+
+ while (gtk_events_pending ())
+ gtk_main_iteration ();
+
g_object_set (priv->canvas,
"scale-x", priv->scale->x,
"scale-y", priv->scale->y,
NULL);
gtk_gis_canvas_resize (gtkgis);
+
+ gdk_window_set_cursor (GTK_WIDGET (gtkgis)->window, NULL);
}
/**