2012-11-10 00:31:37 +00:00
|
|
|
#ifndef HEADER_IncSet
|
|
|
|
#define HEADER_IncSet
|
|
|
|
/*
|
|
|
|
htop - IncSet.h
|
|
|
|
(C) 2005-2012 Hisham H. Muhammad
|
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "FunctionBar.h"
|
|
|
|
#include "Panel.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#define INCMODE_MAX 40
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
INC_SEARCH = 0,
|
|
|
|
INC_FILTER = 1
|
|
|
|
} IncType;
|
|
|
|
|
|
|
|
#define IncSet_filter(inc_) (inc_->filtering ? inc_->modes[INC_FILTER].buffer : NULL)
|
|
|
|
|
|
|
|
typedef struct IncMode_ {
|
2014-04-24 22:50:03 +00:00
|
|
|
char buffer[INCMODE_MAX+1];
|
2012-11-10 00:31:37 +00:00
|
|
|
int index;
|
|
|
|
FunctionBar* bar;
|
|
|
|
bool isFilter;
|
|
|
|
} IncMode;
|
|
|
|
|
|
|
|
typedef struct IncSet_ {
|
|
|
|
IncMode modes[2];
|
|
|
|
IncMode* active;
|
|
|
|
FunctionBar* defaultBar;
|
|
|
|
bool filtering;
|
2016-05-05 13:30:06 +00:00
|
|
|
bool found;
|
2012-11-10 00:31:37 +00:00
|
|
|
} IncSet;
|
|
|
|
|
|
|
|
typedef const char* (*IncMode_GetPanelValue)(Panel*, int);
|
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void IncSet_reset(IncSet* this, IncType type);
|
2018-11-03 19:59:55 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
IncSet* IncSet_new(FunctionBar* bar);
|
2012-11-10 00:31:37 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void IncSet_delete(IncSet* this);
|
2012-11-10 00:31:37 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
bool IncSet_next(IncSet* this, IncType type, Panel* panel, IncMode_GetPanelValue getPanelValue);
|
2018-11-03 19:59:55 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
bool IncSet_prev(IncSet* this, IncType type, Panel* panel, IncMode_GetPanelValue getPanelValue);
|
2018-11-03 19:59:55 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
bool IncSet_handleKey(IncSet* this, int ch, Panel* panel, IncMode_GetPanelValue getPanelValue, Vector* lines);
|
2012-11-10 00:31:37 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
const char* IncSet_getListItemValue(Panel* panel, int i);
|
2012-11-10 00:31:37 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void IncSet_activate(IncSet* this, IncType type, Panel* panel);
|
2012-11-10 00:31:37 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void IncSet_drawBar(IncSet* this);
|
2012-11-10 00:31:37 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
int IncSet_synthesizeEvent(IncSet* this, int x);
|
2015-03-23 20:04:53 +00:00
|
|
|
|
2012-11-10 00:31:37 +00:00
|
|
|
#endif
|