Commit c1fa214e authored by claes's avatar claes

PageUp and PageDown added

parent 91ccdc00
/*
* Proview $Id: wb_wnav.cpp,v 1.29 2005-11-22 12:30:48 claes Exp $
* Proview $Id: wb_wnav.cpp,v 1.30 2005-12-20 11:59:04 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -1418,6 +1418,14 @@ static int wnav_brow_cb( FlowCtx *ctx, flow_tEvent event)
wnav->last_selected = object;
break;
}
case flow_eEvent_Key_PageDown: {
brow_Page( wnav->brow->ctx, 0.8);
break;
}
case flow_eEvent_Key_PageUp: {
brow_Page( wnav->brow->ctx, -0.8);
break;
}
case flow_eEvent_Key_PF1:
case flow_eEvent_Key_ShiftRight:
{
......
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