2006-03-04 18:16:49 +00:00
|
|
|
/*
|
|
|
|
htop
|
2010-02-25 02:08:18 +00:00
|
|
|
(C) 2004-2010 Hisham H. Muhammad
|
2006-03-04 18:16:49 +00:00
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ScreenManager.h"
|
2006-05-30 13:47:28 +00:00
|
|
|
#include "Panel.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "Object.h"
|
2006-05-30 13:45:40 +00:00
|
|
|
#include "Vector.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "FunctionBar.h"
|
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
/*{
|
|
|
|
|
|
|
|
typedef enum Orientation_ {
|
|
|
|
VERTICAL,
|
|
|
|
HORIZONTAL
|
|
|
|
} Orientation;
|
|
|
|
|
|
|
|
typedef struct ScreenManager_ {
|
|
|
|
int x1;
|
|
|
|
int y1;
|
|
|
|
int x2;
|
|
|
|
int y2;
|
|
|
|
Orientation orientation;
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector* items;
|
|
|
|
Vector* fuBars;
|
2006-03-04 18:16:49 +00:00
|
|
|
int itemCount;
|
|
|
|
FunctionBar* fuBar;
|
|
|
|
bool owner;
|
|
|
|
} ScreenManager;
|
|
|
|
|
|
|
|
}*/
|
|
|
|
|
|
|
|
ScreenManager* ScreenManager_new(int x1, int y1, int x2, int y2, Orientation orientation, bool owner) {
|
|
|
|
ScreenManager* this;
|
|
|
|
this = malloc(sizeof(ScreenManager));
|
|
|
|
this->x1 = x1;
|
|
|
|
this->y1 = y1;
|
|
|
|
this->x2 = x2;
|
|
|
|
this->y2 = y2;
|
|
|
|
this->fuBar = NULL;
|
|
|
|
this->orientation = orientation;
|
2006-07-11 06:13:32 +00:00
|
|
|
this->items = Vector_new(PANEL_CLASS, owner, DEFAULT_SIZE, NULL);
|
|
|
|
this->fuBars = Vector_new(FUNCTIONBAR_CLASS, true, DEFAULT_SIZE, NULL);
|
2006-03-04 18:16:49 +00:00
|
|
|
this->itemCount = 0;
|
|
|
|
this->owner = owner;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenManager_delete(ScreenManager* this) {
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_delete(this->items);
|
|
|
|
Vector_delete(this->fuBars);
|
2006-03-04 18:16:49 +00:00
|
|
|
free(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int ScreenManager_size(ScreenManager* this) {
|
|
|
|
return this->itemCount;
|
|
|
|
}
|
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
void ScreenManager_add(ScreenManager* this, Panel* item, FunctionBar* fuBar, int size) {
|
2006-03-04 18:16:49 +00:00
|
|
|
if (this->orientation == HORIZONTAL) {
|
|
|
|
int lastX = 0;
|
|
|
|
if (this->itemCount > 0) {
|
2006-05-30 13:47:28 +00:00
|
|
|
Panel* last = (Panel*) Vector_get(this->items, this->itemCount - 1);
|
2006-03-04 18:16:49 +00:00
|
|
|
lastX = last->x + last->w + 1;
|
|
|
|
}
|
|
|
|
if (size > 0) {
|
2006-05-30 13:47:28 +00:00
|
|
|
Panel_resize(item, size, LINES-this->y1+this->y2);
|
2006-03-04 18:16:49 +00:00
|
|
|
} else {
|
2006-05-30 13:47:28 +00:00
|
|
|
Panel_resize(item, COLS-this->x1+this->x2-lastX, LINES-this->y1+this->y2);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2006-05-30 13:47:28 +00:00
|
|
|
Panel_move(item, lastX, this->y1);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
// TODO: VERTICAL
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_add(this->items, item);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (fuBar)
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_add(this->fuBars, fuBar);
|
2006-03-04 18:16:49 +00:00
|
|
|
else
|
2009-06-02 04:51:23 +00:00
|
|
|
Vector_add(this->fuBars, FunctionBar_new(NULL, NULL, NULL));
|
2006-03-04 18:16:49 +00:00
|
|
|
if (!this->fuBar && fuBar) this->fuBar = fuBar;
|
|
|
|
item->needsRedraw = true;
|
|
|
|
this->itemCount++;
|
|
|
|
}
|
|
|
|
|
2010-02-25 01:43:18 +00:00
|
|
|
Panel* ScreenManager_remove(ScreenManager* this, int idx) {
|
|
|
|
assert(this->itemCount > idx);
|
|
|
|
Panel* panel = (Panel*) Vector_remove(this->items, idx);
|
|
|
|
Vector_remove(this->fuBars, idx);
|
2006-03-04 18:16:49 +00:00
|
|
|
this->fuBar = NULL;
|
|
|
|
this->itemCount--;
|
2006-05-30 14:00:18 +00:00
|
|
|
return panel;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenManager_resize(ScreenManager* this, int x1, int y1, int x2, int y2) {
|
|
|
|
this->x1 = x1;
|
|
|
|
this->y1 = y1;
|
|
|
|
this->x2 = x2;
|
|
|
|
this->y2 = y2;
|
|
|
|
int items = this->itemCount;
|
|
|
|
int lastX = 0;
|
|
|
|
for (int i = 0; i < items - 1; i++) {
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel* panel = (Panel*) Vector_get(this->items, i);
|
|
|
|
Panel_resize(panel, panel->w, LINES-y1+y2);
|
|
|
|
Panel_move(panel, lastX, y1);
|
|
|
|
lastX = panel->x + panel->w + 1;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel* panel = (Panel*) Vector_get(this->items, items-1);
|
|
|
|
Panel_resize(panel, COLS-x1+x2-lastX, LINES-y1+y2);
|
|
|
|
Panel_move(panel, lastX, y1);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
void ScreenManager_run(ScreenManager* this, Panel** lastFocus, int* lastKey) {
|
2006-03-04 18:16:49 +00:00
|
|
|
bool quit = false;
|
|
|
|
int focus = 0;
|
|
|
|
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel* panelFocus = (Panel*) Vector_get(this->items, focus);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (this->fuBar)
|
|
|
|
FunctionBar_draw(this->fuBar, NULL);
|
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
int ch = 0;
|
2006-03-04 18:16:49 +00:00
|
|
|
while (!quit) {
|
|
|
|
int items = this->itemCount;
|
|
|
|
for (int i = 0; i < items; i++) {
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel* panel = (Panel*) Vector_get(this->items, i);
|
|
|
|
Panel_draw(panel, i == focus);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (i < items) {
|
|
|
|
if (this->orientation == HORIZONTAL) {
|
2006-05-30 14:00:18 +00:00
|
|
|
mvvline(panel->y, panel->x+panel->w, ' ', panel->h+1);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-05-30 13:45:40 +00:00
|
|
|
FunctionBar* bar = (FunctionBar*) Vector_get(this->fuBars, focus);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (bar)
|
|
|
|
this->fuBar = bar;
|
|
|
|
if (this->fuBar)
|
|
|
|
FunctionBar_draw(this->fuBar, NULL);
|
|
|
|
|
|
|
|
ch = getch();
|
|
|
|
|
|
|
|
if (ch == KEY_MOUSE) {
|
|
|
|
MEVENT mevent;
|
|
|
|
int ok = getmouse(&mevent);
|
|
|
|
if (ok == OK) {
|
|
|
|
if (mevent.y == LINES - 1) {
|
|
|
|
ch = FunctionBar_synthesizeEvent(this->fuBar, mevent.x);
|
|
|
|
} else {
|
|
|
|
for (int i = 0; i < this->itemCount; i++) {
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel* panel = (Panel*) Vector_get(this->items, i);
|
|
|
|
if (mevent.x > panel->x && mevent.x <= panel->x+panel->w &&
|
|
|
|
mevent.y > panel->y && mevent.y <= panel->y+panel->h) {
|
2006-03-04 18:16:49 +00:00
|
|
|
focus = i;
|
2006-05-30 14:00:18 +00:00
|
|
|
panelFocus = panel;
|
|
|
|
Panel_setSelected(panel, mevent.y - panel->y + panel->scrollV - 1);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-30 14:00:18 +00:00
|
|
|
if (panelFocus->eventHandler) {
|
|
|
|
HandlerResult result = panelFocus->eventHandler(panelFocus, ch);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (result == HANDLED) {
|
|
|
|
continue;
|
|
|
|
} else if (result == BREAK_LOOP) {
|
|
|
|
quit = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ch) {
|
|
|
|
case ERR:
|
|
|
|
continue;
|
|
|
|
case KEY_RESIZE:
|
|
|
|
{
|
|
|
|
ScreenManager_resize(this, this->x1, this->y1, this->x2, this->y2);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case KEY_LEFT:
|
2010-03-03 21:13:33 +00:00
|
|
|
case KEY_CTRLB:
|
2006-03-04 18:16:49 +00:00
|
|
|
tryLeft:
|
|
|
|
if (focus > 0)
|
|
|
|
focus--;
|
2006-05-30 14:00:18 +00:00
|
|
|
panelFocus = (Panel*) Vector_get(this->items, focus);
|
2009-06-02 04:51:23 +00:00
|
|
|
if (Panel_size(panelFocus) == 0 && focus > 0)
|
2006-03-04 18:16:49 +00:00
|
|
|
goto tryLeft;
|
|
|
|
break;
|
|
|
|
case KEY_RIGHT:
|
2010-03-03 21:13:33 +00:00
|
|
|
case KEY_CTRLF:
|
2006-03-04 18:16:49 +00:00
|
|
|
case 9:
|
|
|
|
tryRight:
|
|
|
|
if (focus < this->itemCount - 1)
|
|
|
|
focus++;
|
2006-05-30 14:00:18 +00:00
|
|
|
panelFocus = (Panel*) Vector_get(this->items, focus);
|
2009-06-02 04:51:23 +00:00
|
|
|
if (Panel_size(panelFocus) == 0 && focus < this->itemCount - 1)
|
2006-03-04 18:16:49 +00:00
|
|
|
goto tryRight;
|
|
|
|
break;
|
|
|
|
case KEY_F(10):
|
|
|
|
case 'q':
|
|
|
|
case 27:
|
|
|
|
quit = true;
|
|
|
|
continue;
|
|
|
|
default:
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_onKey(panelFocus, ch);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-30 14:00:18 +00:00
|
|
|
*lastFocus = panelFocus;
|
2006-03-04 18:16:49 +00:00
|
|
|
*lastKey = ch;
|
|
|
|
}
|