Skip to content
Snippets Groups Projects
Commit 1c5906b8 authored by edgrif's avatar edgrif
Browse files

add function to return coords of visible window.

parent 0d5f8732
No related branches found
No related tags found
No related merge requests found
......@@ -27,9 +27,9 @@
* Exported functions: See ZMap/ZMapView.h for public functions and
* zmapView_P.h for private functions.
* HISTORY:
* Last edited: Oct 18 10:34 2004 (edgrif)
* Last edited: Jan 20 16:49 2005 (edgrif)
* Created: Mon Sep 20 10:29:15 2004 (edgrif)
* CVS info: $Id: zmapViewUtils.c,v 1.2 2004-10-18 10:15:46 edgrif Exp $
* CVS info: $Id: zmapViewUtils.c,v 1.3 2005-01-24 11:50:20 edgrif Exp $
*-------------------------------------------------------------------
*/
......@@ -38,6 +38,18 @@
#include <ZMap/zmapConn.h>
#include <zmapView_P.h>
void zMapViewGetVisible(ZMapViewWindow view_window, double *top, double *bottom)
{
zMapAssert(view_window && top && bottom) ;
zMapWindowGetVisible(view_window->window, top, bottom) ;
return ;
}
void zmapViewBusy(ZMapView zmap_view, gboolean busy)
{
static GdkCursor* busy_cursor = 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