Skip to content
Snippets Groups Projects
Commit 91bea7de authored by edgrif's avatar edgrif
Browse files

add call to return the maximum zoom.

parent a503562e
No related branches found
No related tags found
No related merge requests found
......@@ -27,9 +27,9 @@
*
* Exported functions: See XXXXXXXXXXXXX.h
* HISTORY:
* Last edited: Jul 15 18:38 2005 (rds)
* Last edited: Oct 7 16:38 2005 (edgrif)
* Created: Fri Jul 8 11:37:39 2005 (rds)
* CVS info: $Id: zmapWindowZoomControl.c,v 1.3 2005-07-15 17:57:10 rds Exp $
* CVS info: $Id: zmapWindowZoomControl.c,v 1.4 2005-10-07 17:17:47 edgrif Exp $
*-------------------------------------------------------------------
*/
......@@ -57,6 +57,8 @@ ZMapWindowZoomStatus zMapWindowGetZoomStatus(ZMapWindow window)
return status;
}
double zMapWindowGetZoomFactor(ZMapWindow window)
{
ZMapWindowZoomControl control = NULL;
......@@ -66,6 +68,17 @@ double zMapWindowGetZoomFactor(ZMapWindow window)
return control->zF;
}
double zMapWindowGetZoomMax(ZMapWindow window)
{
ZMapWindowZoomControl control = NULL;
control = controlFromWindow(window);
return control->maxZF ;
}
double zMapWindowGetZoomMagnification(ZMapWindow window)
{
ZMapWindowZoomControl control = NULL;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment