Skip to content
Snippets Groups Projects
Commit 0f9bd9f3 authored by edgrif's avatar edgrif
Browse files

add highlight item as well as original item to info. panel call.

parent 5f32d700
No related branches found
No related tags found
No related merge requests found
......@@ -26,9 +26,9 @@
*
* Exported functions: See zmapWindow_P.h
* HISTORY:
* Last edited: Dec 15 11:51 2006 (rds)
* Last edited: Dec 18 07:37 2006 (edgrif)
* Created: Thu Sep 8 10:37:24 2005 (edgrif)
* CVS info: $Id: zmapWindowItem.c,v 1.57 2006-12-15 11:51:41 rds Exp $
* CVS info: $Id: zmapWindowItem.c,v 1.58 2006-12-18 11:41:25 edgrif Exp $
*-------------------------------------------------------------------
*/
......@@ -1255,7 +1255,7 @@ gboolean zMapWindowScrollToItem(ZMapWindow window, FooCanvasItem *item)
/* Report the selected object to the layer above us. */
if(window->caller_cbs->select != NULL)
{
zMapWindowUpdateInfoPanel(window, feature, item) ;
zMapWindowUpdateInfoPanel(window, feature, item, NULL) ;
}
result = TRUE ;
......@@ -1554,7 +1554,7 @@ void zMapWindowMoveItem(ZMapWindow window, ZMapFeature origFeature,
foo_canvas_item_set(item, "y1", top, "y2", bottom, NULL);
}
zMapWindowUpdateInfoPanel(window, modFeature, item);
zMapWindowUpdateInfoPanel(window, modFeature, item, NULL);
}
return;
}
......
......@@ -26,9 +26,9 @@
* Description: Defines internal interfaces/data structures of zMapWindow.
*
* HISTORY:
* Last edited: Dec 15 15:33 2006 (rds)
* Last edited: Dec 18 07:38 2006 (edgrif)
* Created: Fri Aug 1 16:45:58 2003 (edgrif)
* CVS info: $Id: zmapWindow_P.h,v 1.162 2006-12-15 15:33:54 rds Exp $
* CVS info: $Id: zmapWindow_P.h,v 1.163 2006-12-18 11:37:58 edgrif Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_WINDOW_P_H
......@@ -779,7 +779,8 @@ void zMapWindowMoveSubFeatures(ZMapWindow window,
GArray *origArray, GArray *modArray,
gboolean isExon);
void zMapWindowUpdateInfoPanel(ZMapWindow window, ZMapFeature feature, FooCanvasItem *item);
void zMapWindowUpdateInfoPanel(ZMapWindow window, ZMapFeature feature,
FooCanvasItem *item, FooCanvasItem *highlight_item);
void zmapWindowDrawZoom(ZMapWindow window) ;
......
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