mirror of
https://github.com/xzeldon/htop.git
synced 2025-04-05 19:07:06 +03:00
InfoScreen: add mouse wheel scroll
This commit is contained in:
parent
fd45845829
commit
3c61813ea6
18
InfoScreen.c
18
InfoScreen.c
@ -109,11 +109,19 @@ void InfoScreen_run(InfoScreen* this) {
|
|||||||
MEVENT mevent;
|
MEVENT mevent;
|
||||||
int ok = getmouse(&mevent);
|
int ok = getmouse(&mevent);
|
||||||
if (ok == OK) {
|
if (ok == OK) {
|
||||||
if (mevent.y >= panel->y && mevent.y < LINES - 1) {
|
if (mevent.bstate & BUTTON1_RELEASED) {
|
||||||
Panel_setSelected(panel, mevent.y - panel->y + panel->scrollV - 1);
|
if (mevent.y >= panel->y && mevent.y < LINES - 1) {
|
||||||
ch = 0;
|
Panel_setSelected(panel, mevent.y - panel->y + panel->scrollV - 1);
|
||||||
} else if (mevent.y == LINES - 1) {
|
ch = 0;
|
||||||
ch = IncSet_synthesizeEvent(this->inc, mevent.x);
|
} else if (mevent.y == LINES - 1) {
|
||||||
|
ch = IncSet_synthesizeEvent(this->inc, mevent.x);
|
||||||
|
}
|
||||||
|
#if NCURSES_MOUSE_VERSION > 1
|
||||||
|
} else if (mevent.bstate & BUTTON4_PRESSED) {
|
||||||
|
ch = KEY_WHEELUP;
|
||||||
|
} else if (mevent.bstate & BUTTON5_PRESSED) {
|
||||||
|
ch = KEY_WHEELDOWN;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user