From 8110f94da0a0f6eecd06b30f87a18c45357a3910 Mon Sep 17 00:00:00 2001 From: timlinux Date: Mon, 3 May 2004 11:02:56 +0000 Subject: [PATCH] Status bar updates git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@1293 c8812cc2-4d05-0410-92ff-de0c093fc19c --- ChangeLog | 25 ++++++++++++++++++++++++- configure.in | 4 ++-- 2 files changed, 26 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8c55255419a..5be950f7625 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,31 @@ QGIS Change Log -ChangeLog,v 1.62 2004/04/29 07:45:58 timlinux Exp +ChangeLog,v 1.63 2004/05/03 11:02:56 timlinux Exp ------------------------------------------------------------------------------ Version 0.3 'Madison' .... developement version +2004-05-03 [ts] 0.2.0devel3 +**Added three new widgets to status bar: +scale - which shows the scale in the form 1:50000 * +coordinates - shows coordinates of mouse on map in its own widget +progressbar - shows the progress of any task that emits signals connected to +showProgress slot + +**Added signal / slot mechanism for showExtents and set fp precision to 2 (see +below) + +** stringRep function in QgsRect and QgsPoint now overloaded to allow setting +floating point precision for display. QgisApp & canvas are currently hard +coding this to 2 but I plan to make this user configurable in the options +panel. + +**Added example of using progress indicator to raster stats gathering procedure. +You can see this in action by setting ak_shade example dataset to singleband +pseudocolor and you will see progress indicator advancing as stats are +gathered. + +*NOTE: scale calculations may not be correct at this point - they are still +under development. + 2004-04-27 [ts] 0.2.0devel2 ** Added preliminary support for building pyramids in raster files diff --git a/configure.in b/configure.in index b590decac5e..06d38a09b95 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -dnl configure.in,v 1.63 2004/04/29 07:45:58 timlinux Exp +dnl configure.in,v 1.64 2004/05/03 11:02:54 timlinux Exp AC_INIT @@ -24,7 +24,7 @@ dnl --------------------------------------------------------------------------- MAJOR_VERSION=0 MINOR_VERSION=2 MICRO_VERSION=0 -EXTRA_VERSION=2 +EXTRA_VERSION=3 if test $EXTRA_VERSION -eq 0; then VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION} else