htop/Panel.h

144 lines
4.0 KiB
C
Raw Permalink Normal View History

2006-05-30 13:47:28 +00:00
#ifndef HEADER_Panel
#define HEADER_Panel
/*
2006-06-06 20:28:42 +00:00
htop - Panel.h
2011-05-26 16:35:07 +00:00
(C) 2004-2011 Hisham H. Muhammad
Released under the GNU GPLv2+, see the COPYING file
2006-05-30 13:47:28 +00:00
in the source distribution for its full text.
*/
2021-08-24 15:27:43 +00:00
#include "config.h" // IWYU pragma: keep
#include <assert.h>
#include <stdbool.h>
#include "CRT.h"
2020-09-18 17:23:04 +00:00
#include "FunctionBar.h"
2011-12-26 21:35:57 +00:00
#include "Object.h"
#include "RichString.h"
2011-12-26 21:35:57 +00:00
#include "Vector.h"
2006-05-30 13:47:28 +00:00
struct Panel_;
2006-05-30 13:47:28 +00:00
typedef struct Panel_ Panel;
typedef enum HandlerResult_ {
HANDLED = 0x01,
IGNORED = 0x02,
BREAK_LOOP = 0x04,
REFRESH = 0x08,
REDRAW = 0x10,
RESCAN = 0x20,
RESIZE = 0x40,
SYNTH_KEY = 0x80,
2006-05-30 13:47:28 +00:00
} HandlerResult;
2020-10-27 20:26:33 +00:00
#define EVENT_SET_SELECTED (-1)
2015-03-25 02:12:43 +00:00
2020-10-27 20:26:33 +00:00
#define EVENT_HEADER_CLICK(x_) (-10000 + (x_))
#define EVENT_IS_HEADER_CLICK(ev_) ((ev_) >= -10000 && (ev_) <= -9000)
#define EVENT_HEADER_CLICK_GET_X(ev_) ((ev_) + 10000)
#define EVENT_SCREEN_TAB_CLICK(x_) (-20000 + (x_))
#define EVENT_IS_SCREEN_TAB_CLICK(ev_) ((ev_) >= -20000 && (ev_) < -10000)
#define EVENT_SCREEN_TAB_GET_X(ev_) ((ev_) + 20000)
typedef HandlerResult (*Panel_EventHandler)(Panel*, int);
typedef void (*Panel_DrawFunctionBar)(Panel*, bool);
typedef void (*Panel_PrintHeader)(Panel*);
2006-05-30 13:47:28 +00:00
typedef struct PanelClass_ {
const ObjectClass super;
const Panel_EventHandler eventHandler;
const Panel_DrawFunctionBar drawFunctionBar;
const Panel_PrintHeader printHeader;
} PanelClass;
#define As_Panel(this_) ((const PanelClass*)((this_)->super.klass))
#define Panel_eventHandlerFn(this_) As_Panel(this_)->eventHandler
#define Panel_eventHandler(this_, ev_) (assert(As_Panel(this_)->eventHandler), As_Panel(this_)->eventHandler((Panel*)(this_), ev_))
#define Panel_drawFunctionBarFn(this_) As_Panel(this_)->drawFunctionBar
#define Panel_drawFunctionBar(this_, hideFB_) (assert(As_Panel(this_)->drawFunctionBar), As_Panel(this_)->drawFunctionBar((Panel*)(this_), hideFB_))
#define Panel_printHeaderFn(this_) As_Panel(this_)->printHeader
#define Panel_printHeader(this_) (assert(As_Panel(this_)->printHeader), As_Panel(this_)->printHeader((Panel*)(this_)))
2006-05-30 13:47:28 +00:00
struct Panel_ {
Object super;
int x, y, w, h;
int cursorX, cursorY;
2006-05-30 13:47:28 +00:00
Vector* items;
int selected;
int oldSelected;
int selectedLen;
void* eventHandlerState;
2014-02-27 19:35:22 +00:00
int scrollV;
int scrollH;
2006-05-30 13:47:28 +00:00
bool needsRedraw;
bool cursorOn;
bool wasFocus;
2015-03-23 18:26:56 +00:00
FunctionBar* currentBar;
FunctionBar* defaultBar;
2006-05-30 13:47:28 +00:00
RichString header;
ColorElements selectionColorId;
2006-05-30 13:47:28 +00:00
};
2020-10-31 19:39:01 +00:00
#define Panel_setDefaultBar(this_) do { (this_)->currentBar = (this_)->defaultBar; } while (0)
#define KEY_CTRL(l) ((l)-'A'+1)
2006-05-30 13:47:28 +00:00
2020-10-05 11:19:50 +00:00
extern const PanelClass Panel_class;
Panel* Panel_new(int x, int y, int w, int h, const ObjectClass* type, bool owner, FunctionBar* fuBar);
2006-05-30 13:47:28 +00:00
void Panel_delete(Object* cast);
2006-05-30 13:47:28 +00:00
void Panel_init(Panel* this, int x, int y, int w, int h, const ObjectClass* type, bool owner, FunctionBar* fuBar);
2006-05-30 13:47:28 +00:00
void Panel_done(Panel* this);
2006-05-30 13:47:28 +00:00
void Panel_setCursorToSelection(Panel* this);
void Panel_setSelectionColor(Panel* this, ColorElements colorId);
void Panel_setHeader(Panel* this, const char* header);
2006-05-30 13:47:28 +00:00
void Panel_move(Panel* this, int x, int y);
2006-05-30 13:47:28 +00:00
void Panel_resize(Panel* this, int w, int h);
2006-05-30 13:47:28 +00:00
void Panel_prune(Panel* this);
2006-05-30 13:47:28 +00:00
void Panel_add(Panel* this, Object* o);
2006-05-30 13:47:28 +00:00
void Panel_insert(Panel* this, int i, Object* o);
2006-05-30 13:47:28 +00:00
void Panel_set(Panel* this, int i, Object* o);
2006-05-30 13:47:28 +00:00
Object* Panel_get(Panel* this, int i);
2006-05-30 13:47:28 +00:00
Object* Panel_remove(Panel* this, int i);
2006-05-30 13:47:28 +00:00
Object* Panel_getSelected(Panel* this);
2006-05-30 13:47:28 +00:00
void Panel_moveSelectedUp(Panel* this);
2006-05-30 13:47:28 +00:00
void Panel_moveSelectedDown(Panel* this);
2006-05-30 13:47:28 +00:00
int Panel_getSelectedIndex(const Panel* this);
2006-05-30 13:47:28 +00:00
int Panel_size(const Panel* this);
2006-05-30 13:47:28 +00:00
void Panel_setSelected(Panel* this, int selected);
2006-05-30 13:47:28 +00:00
void Panel_draw(Panel* this, bool force_redraw, bool focus, bool highlightSelected, bool hideFunctionBar);
2006-05-30 13:47:28 +00:00
2020-10-31 22:28:02 +00:00
void Panel_splice(Panel* this, Vector* from);
bool Panel_onKey(Panel* this, int key);
2006-05-30 13:47:28 +00:00
HandlerResult Panel_selectByTyping(Panel* this, int ch);
int Panel_getCh(Panel* this);
2006-05-30 13:47:28 +00:00
#endif