From f3147ea2d1598914c2db53e8cfb34c8ff81e2ff4 Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Thu, 27 Aug 2020 07:48:10 +0200 Subject: New upstream version 3.0.0 --- IncSet.h | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) (limited to 'IncSet.h') diff --git a/IncSet.h b/IncSet.h index 27538f4..136436e 100644 --- a/IncSet.h +++ b/IncSet.h @@ -41,18 +41,24 @@ typedef struct IncSet_ { typedef const char* (*IncMode_GetPanelValue)(Panel*, int); -IncSet* IncSet_new(FunctionBar* bar); +extern void IncSet_reset(IncSet* this, IncType type); -void IncSet_delete(IncSet* this); +extern IncSet* IncSet_new(FunctionBar* bar); -bool IncSet_handleKey(IncSet* this, int ch, Panel* panel, IncMode_GetPanelValue getPanelValue, Vector* lines); +extern void IncSet_delete(IncSet* this); -const char* IncSet_getListItemValue(Panel* panel, int i); +extern bool IncSet_next(IncSet* this, IncType type, Panel* panel, IncMode_GetPanelValue getPanelValue); -void IncSet_activate(IncSet* this, IncType type, Panel* panel); +extern bool IncSet_prev(IncSet* this, IncType type, Panel* panel, IncMode_GetPanelValue getPanelValue); -void IncSet_drawBar(IncSet* this); +extern bool IncSet_handleKey(IncSet* this, int ch, Panel* panel, IncMode_GetPanelValue getPanelValue, Vector* lines); -int IncSet_synthesizeEvent(IncSet* this, int x); +extern const char* IncSet_getListItemValue(Panel* panel, int i); + +extern void IncSet_activate(IncSet* this, IncType type, Panel* panel); + +extern void IncSet_drawBar(IncSet* this); + +extern int IncSet_synthesizeEvent(IncSet* this, int x); #endif -- cgit v1.2.3