Prototype for a Sidebar Function. More...
Functions | |
| int | op_sidebar_start_search (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Selects the last unhidden mailbox - Implements sidebar_function_t -. | |
| int | op_sidebar_first (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Selects the first unhidden mailbox - Implements sidebar_function_t -. | |
| static int | op_sidebar_select_entry_by_number (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Jump to a specific mailbox - Implements sidebar_function_t -. | |
| int | op_sidebar_last (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Selects the last unhidden mailbox - Implements sidebar_function_t -. | |
| int | op_sidebar_next (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Selects the next unhidden mailbox - Implements sidebar_function_t -. | |
| static int | op_sidebar_next_new (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Selects the next new mailbox - Implements sidebar_function_t -. | |
| int | op_sidebar_open (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Open highlighted mailbox - Implements sidebar_function_t -. | |
| int | op_sidebar_prev (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Selects the previous unhidden mailbox - Implements sidebar_function_t -. | |
| static int | op_sidebar_prev_new (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Selects the previous new mailbox - Implements sidebar_function_t -. | |
| static int | op_sidebar_select_page_top (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Selects the entry at the top of the visible page - Implements sidebar_function_t -. | |
| static int | op_sidebar_select_page_middle (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Selects the entry at the middle of the visible page - Implements sidebar_function_t -. | |
| static int | op_sidebar_select_page_bottom (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Selects the entry at the bottom of the visible page - Implements sidebar_function_t -. | |
| static int | op_sidebar_scroll_half_down (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Scrolls down by half a page - Implements sidebar_function_t -. | |
| static int | op_sidebar_scroll_half_up (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Scrolls up by half a page - Implements sidebar_function_t -. | |
| static int | op_sidebar_scroll_line_down (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Scrolls down by one line - Implements sidebar_function_t -. | |
| static int | op_sidebar_scroll_line_up (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Scrolls up by one line - Implements sidebar_function_t -. | |
| int | op_sidebar_scroll_page_down (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Scrolls down by one page - Implements sidebar_function_t -. | |
| int | op_sidebar_scroll_page_up (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Scrolls up by one page - Implements sidebar_function_t -. | |
| static int | op_sidebar_scroll_selection_to_top (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Scrolls so the selection is at the top of the screen - Implements sidebar_function_t -. | |
| static int | op_sidebar_scroll_selection_to_middle (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Scrolls so the selection is at the middle of the screen - Implements sidebar_function_t -. | |
| static int | op_sidebar_scroll_selection_to_bottom (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Scrolls so the selection is at the bottom of the screen - Implements sidebar_function_t -. | |
| static int | op_sidebar_toggle_visible (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Make the sidebar (in)visible - Implements sidebar_function_t -. | |
| static int | op_sidebar_toggle_virtual (struct SidebarFunctionData *fdata, const struct KeyEvent *event) |
| Deprecated - Implements sidebar_function_t -. | |
Prototype for a Sidebar Function.
| fdata | Sidebar Function context data |
| event | Event to process |
| enum | FunctionRetval |
| int op_sidebar_start_search | ( | struct SidebarFunctionData * | fdata, |
| const struct KeyEvent * | event ) |
Selects the last unhidden mailbox - Implements sidebar_function_t -.
Definition at line 185 of file functions_fuzzy.c.
| int op_sidebar_first | ( | struct SidebarFunctionData * | fdata, |
| const struct KeyEvent * | event ) |
Selects the first unhidden mailbox - Implements sidebar_function_t -.
Definition at line 412 of file functions_sidebar.c.
|
static |
Jump to a specific mailbox - Implements sidebar_function_t -.
Definition at line 438 of file functions_sidebar.c.
| int op_sidebar_last | ( | struct SidebarFunctionData * | fdata, |
| const struct KeyEvent * | event ) |
Selects the last unhidden mailbox - Implements sidebar_function_t -.
Definition at line 496 of file functions_sidebar.c.
| int op_sidebar_next | ( | struct SidebarFunctionData * | fdata, |
| const struct KeyEvent * | event ) |
Selects the next unhidden mailbox - Implements sidebar_function_t -.
Definition at line 521 of file functions_sidebar.c.
|
static |
Selects the next new mailbox - Implements sidebar_function_t -.
Search down the list of mail folders for one containing new mail.
Definition at line 554 of file functions_sidebar.c.
| int op_sidebar_open | ( | struct SidebarFunctionData * | fdata, |
| const struct KeyEvent * | event ) |
Open highlighted mailbox - Implements sidebar_function_t -.
Definition at line 592 of file functions_sidebar.c.
| int op_sidebar_prev | ( | struct SidebarFunctionData * | fdata, |
| const struct KeyEvent * | event ) |
Selects the previous unhidden mailbox - Implements sidebar_function_t -.
Definition at line 607 of file functions_sidebar.c.
|
static |
Selects the previous new mailbox - Implements sidebar_function_t -.
Search up the list of mail folders for one containing new mail.
Definition at line 640 of file functions_sidebar.c.
|
static |
Selects the entry at the top of the visible page - Implements sidebar_function_t -.
Definition at line 679 of file functions_sidebar.c.
|
static |
Selects the entry at the middle of the visible page - Implements sidebar_function_t -.
Definition at line 701 of file functions_sidebar.c.
|
static |
Selects the entry at the bottom of the visible page - Implements sidebar_function_t -.
Definition at line 723 of file functions_sidebar.c.
|
static |
Scrolls down by half a page - Implements sidebar_function_t -.
Definition at line 745 of file functions_sidebar.c.
|
static |
Scrolls up by half a page - Implements sidebar_function_t -.
Definition at line 755 of file functions_sidebar.c.
|
static |
Scrolls down by one line - Implements sidebar_function_t -.
Definition at line 765 of file functions_sidebar.c.
|
static |
Scrolls up by one line - Implements sidebar_function_t -.
Definition at line 774 of file functions_sidebar.c.
| int op_sidebar_scroll_page_down | ( | struct SidebarFunctionData * | fdata, |
| const struct KeyEvent * | event ) |
Scrolls down by one page - Implements sidebar_function_t -.
Definition at line 783 of file functions_sidebar.c.
| int op_sidebar_scroll_page_up | ( | struct SidebarFunctionData * | fdata, |
| const struct KeyEvent * | event ) |
Scrolls up by one page - Implements sidebar_function_t -.
Definition at line 792 of file functions_sidebar.c.
|
static |
Scrolls so the selection is at the top of the screen - Implements sidebar_function_t -.
Definition at line 827 of file functions_sidebar.c.
|
static |
Scrolls so the selection is at the middle of the screen - Implements sidebar_function_t -.
Definition at line 836 of file functions_sidebar.c.
|
static |
Scrolls so the selection is at the bottom of the screen - Implements sidebar_function_t -.
Definition at line 845 of file functions_sidebar.c.
|
static |
Make the sidebar (in)visible - Implements sidebar_function_t -.
Definition at line 854 of file functions_sidebar.c.
|
static |
Deprecated - Implements sidebar_function_t -.
Definition at line 865 of file functions_sidebar.c.