Add ALT+UP/DOWN/mouse wheel scroll support

Before the change, the only way to scroll was usage of page up/down,
it allowed to scroll only by skipping pages, which was not smooth.
This commit is contained in:
John Hernandez
2023-11-13 12:40:27 +01:00
parent 08d2a51ae4
commit 23692fedff
5 changed files with 60 additions and 21 deletions

View File

@@ -88,8 +88,8 @@ void win_update_entry_message(ProfWin* window, const char* const id, const char*
gboolean win_has_active_subwin(ProfWin* window);
void win_page_up(ProfWin* window);
void win_page_down(ProfWin* window);
void win_page_up(ProfWin* window, int scroll_size);
void win_page_down(ProfWin* window, int scroll_size);
void win_sub_page_down(ProfWin* window);
void win_sub_page_up(ProfWin* window);