Commit bc47f0ec authored by claes's avatar claes

Tiptext removed at scroll

parent fffa6bd8
/*
* Proview $Id: flow_api.cpp,v 1.14 2008-01-18 13:55:06 claes Exp $
* Proview $Id: flow_api.cpp,v 1.15 2008-05-28 12:03:52 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -729,4 +729,9 @@ void flow_SetTipText( flow_tCtx ctx, flow_tObject object, char *text, int x, int
ctx->tiptext->draw_text( (FlowArrayElem *)object, text, x, y);
}
void flow_RemoveTipText( flow_tCtx ctx)
{
ctx->tiptext->remove();
}
/*
* Proview $Id: flow_api.h,v 1.14 2008-01-18 13:55:06 claes Exp $
* Proview $Id: flow_api.h,v 1.15 2008-05-28 12:03:52 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -242,6 +242,7 @@ int flow_GetNextObject( flow_tCtx ctx, flow_tNode object, flow_eDirection dir,
int flow_IsVisible( flow_tCtx ctx, flow_tObject object, flow_eVisible type);
int flow_LoadNodeClass( flow_tCtx ctx, char *fname, flow_tNodeClass *nodeclass);
void flow_SetTipText( flow_tCtx ctx, flow_tObject object, char *text, int x, int y);
void flow_RemoveTipText( flow_tCtx ctx);
#if defined __cplusplus
}
......
Markdown is supported
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