From 1a5381e07e97fe482c2b3a7c75f99938f0b105d4 Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Mon, 8 Jun 1998 09:16:03 +0000 Subject: Initial revision --- functions.h | 407 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 407 insertions(+) create mode 100644 functions.h (limited to 'functions.h') diff --git a/functions.h b/functions.h new file mode 100644 index 00000000..f8a1af17 --- /dev/null +++ b/functions.h @@ -0,0 +1,407 @@ +/* + * Copyright (C) 1996-8 Michael R. Elkins + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +/* + * This file contains the structures needed to parse ``bind'' commands, as + * well as the default bindings for each menu. + * + * Notes: + * + * - If you want to bind \n or \r, use M_ENTER_S so that it will work + * correctly under both ncurses and S-Lang + * + * - If you need to bind a control char, use the octal value because the \cX + * construct does not work at this level. + * + */ + +struct binding_t OpGeneric[] = { + { "top-page", OP_TOP_PAGE, "H" }, + { "next-entry", OP_NEXT_ENTRY, "j" }, + { "previous-entry", OP_PREV_ENTRY, "k" }, + { "bottom-page", OP_BOTTOM_PAGE, "L" }, + { "refresh", OP_REDRAW, "\014" }, + { "middle-page", OP_MIDDLE_PAGE, "M" }, + { "search-next", OP_SEARCH_NEXT, "n" }, + { "exit", OP_EXIT, "q" }, + { "tag-entry", OP_TAG, "t" }, + { "next-page", OP_NEXT_PAGE, "z" }, + { "previous-page", OP_PREV_PAGE, "Z" }, + { "last-entry", OP_LAST_ENTRY, "*" }, + { "first-entry", OP_FIRST_ENTRY, "=" }, + { "enter-command", OP_ENTER_COMMAND, ":" }, + { "next-line", OP_NEXT_LINE, ">" }, + { "previous-line", OP_PREV_LINE, "<" }, + { "half-up", OP_HALF_UP, "[" }, + { "half-down", OP_HALF_DOWN, "]" }, + { "help", OP_HELP, "?" }, + { "tag-prefix", OP_TAG_PREFIX, ";" }, + { "shell-escape", OP_SHELL_ESCAPE, "!" }, + { "select-entry", OP_GENERIC_SELECT_ENTRY,M_ENTER_S }, + { "search", OP_SEARCH, "/" }, + { "search-reverse", OP_SEARCH_REVERSE, "\033/" }, + { "search-opposite", OP_SEARCH_OPPOSITE, NULL }, + { "jump", OP_JUMP, NULL }, + { "current-top", OP_CURRENT_TOP, NULL }, + { "current-middle", OP_CURRENT_MIDDLE, NULL }, + { "current-bottom", OP_CURRENT_BOTTOM, NULL }, + { NULL, 0, NULL } +}; + +struct binding_t OpMain[] = { + { "create-alias", OP_CREATE_ALIAS, "a" }, + { "bounce-message", OP_BOUNCE_MESSAGE, "b" }, + { "change-folder", OP_MAIN_CHANGE_FOLDER, "c" }, + { "change-folder-readonly", OP_MAIN_CHANGE_FOLDER_READONLY, "\033c" }, + { "copy-message", OP_COPY_MESSAGE, "C" }, + { "decode-copy", OP_DECODE_COPY, "\033C" }, + { "decode-save", OP_DECODE_SAVE, "\033s" }, + { "delete-message", OP_DELETE, "d" }, + { "delete-pattern", OP_MAIN_DELETE_PATTERN, "D" }, + { "delete-thread", OP_DELETE_THREAD, "\004" }, + { "delete-subthread", OP_DELETE_SUBTHREAD, "\033d" }, + { "forward-message", OP_FORWARD_MESSAGE, "f" }, + { "flag-message", OP_FLAG_MESSAGE, "F" }, + { "group-reply", OP_GROUP_REPLY, "g" }, +#ifdef USE_POP + { "fetch-mail", OP_MAIN_FETCH_MAIL, "G" }, +#endif + { "display-headers", OP_DISPLAY_HEADERS, "h" }, + { "next-undeleted", OP_MAIN_NEXT_UNDELETED, "j" }, + { "previous-undeleted", OP_MAIN_PREV_UNDELETED, "k" }, + { "limit", OP_MAIN_LIMIT, "l" }, + { "list-reply", OP_LIST_REPLY, "L" }, + { "mail", OP_MAIL, "m" }, + { "toggle-new", OP_TOGGLE_NEW, "N" }, + { "toggle-write", OP_TOGGLE_WRITE, "%" }, + { "next-thread", OP_MAIN_NEXT_THREAD, "\016" }, + { "next-subthread", OP_MAIN_NEXT_SUBTHREAD, "\033n" }, + { "query", OP_QUERY, "Q" }, + { "quit", OP_QUIT, "q" }, + { "reply", OP_REPLY, "r" }, + { "show-limit", OP_MAIN_SHOW_LIMIT, "\033l" }, + { "sort-mailbox", OP_SORT, "o" }, + { "sort-reverse", OP_SORT_REVERSE, "O" }, + { "print-message", OP_PRINT, "p" }, + { "previous-thread", OP_MAIN_PREV_THREAD, "\020" }, + { "previous-subthread", OP_MAIN_PREV_SUBTHREAD, "\033p" }, + { "recall-message", OP_RECALL_MESSAGE, "R" }, + { "read-thread", OP_MAIN_READ_THREAD, "\022" }, + { "read-subthread", OP_MAIN_READ_SUBTHREAD, "\033r" }, + { "save-message", OP_SAVE, "s" }, + { "tag-pattern", OP_MAIN_TAG_PATTERN, "T" }, + { "tag-subthread", OP_TAG_SUBTHREAD, NULL }, + { "tag-thread", OP_TAG_THREAD, "\033t" }, + { "untag-pattern", OP_MAIN_UNTAG_PATTERN, "\024" }, + { "undelete-message", OP_UNDELETE, "u" }, + { "undelete-pattern", OP_MAIN_UNDELETE_PATTERN, "U"}, + { "undelete-subthread", OP_UNDELETE_SUBTHREAD, "\033u" }, + { "undelete-thread", OP_UNDELETE_THREAD, "\025" }, + { "view-attachments", OP_VIEW_ATTACHMENTS, "v" }, + { "show-version", OP_VERSION, "V" }, + { "set-flag", OP_MAIN_SET_FLAG, "w" }, + { "clear-flag", OP_MAIN_CLEAR_FLAG, "W" }, + { "display-message", OP_DISPLAY_MESSAGE, M_ENTER_S }, + { "sync-mailbox", OP_MAIN_SYNC_FOLDER, "$" }, + { "display-address", OP_DISPLAY_ADDRESS, "@" }, + { "pipe-message", OP_PIPE, "|" }, + { "next-new", OP_MAIN_NEXT_NEW, "\t" }, + { "previous-new", OP_MAIN_PREV_NEW, "\033\t" }, + { "next-unread", OP_MAIN_NEXT_UNREAD, NULL }, + { "previous-unread", OP_MAIN_PREV_UNREAD, NULL }, + + + +#ifdef _PGPPATH + { "extract-keys", OP_EXTRACT_KEYS, "\013" }, + { "forget-passphrase", OP_FORGET_PASSPHRASE, "\006" }, + { "mail-key", OP_MAIL_KEY, "\033k" }, +#endif + + + + { NULL, 0, NULL } +}; + +struct binding_t OpPager[] = { + { "create-alias", OP_CREATE_ALIAS, "a" }, + { "bounce-message", OP_BOUNCE_MESSAGE, "b" }, + { "change-folder", OP_MAIN_CHANGE_FOLDER, "c" }, + { "change-folder-readonly", OP_MAIN_CHANGE_FOLDER_READONLY, "\033c" }, + { "copy-message", OP_COPY_MESSAGE, "C" }, + { "decode-copy", OP_DECODE_COPY, "\033C" }, + { "delete-message", OP_DELETE, "d" }, + { "delete-thread", OP_DELETE_THREAD, "\004" }, + { "delete-subthread", OP_DELETE_SUBTHREAD, "\033d" }, + { "forward-message", OP_FORWARD_MESSAGE, "f" }, + { "flag-message", OP_FLAG_MESSAGE, "F" }, + { "group-reply", OP_GROUP_REPLY, "g" }, + { "display-headers", OP_DISPLAY_HEADERS, "h" }, + { "exit", OP_PAGER_EXIT, "i" }, + { "next-undeleted", OP_MAIN_NEXT_UNDELETED, "j" }, + { "next-entry", OP_NEXT_ENTRY, "J" }, + { "previous-undeleted",OP_MAIN_PREV_UNDELETED, "k" }, + { "previous-entry", OP_PREV_ENTRY, "K" }, + { "list-reply", OP_LIST_REPLY, "L" }, + { "redraw-screen", OP_REDRAW, "\014" }, + { "mail", OP_MAIL, "m" }, + { "mark-as-new", OP_TOGGLE_NEW, "N" }, + { "search-next", OP_SEARCH_NEXT, "n" }, + { "next-thread", OP_MAIN_NEXT_THREAD, "\016" }, + { "next-subthread", OP_MAIN_NEXT_SUBTHREAD, "\033n" }, + { "print-message", OP_PRINT, "p" }, + { "previous-thread", OP_MAIN_PREV_THREAD, "\020" }, + { "previous-subthread",OP_MAIN_PREV_SUBTHREAD, "\033p" }, + { "quit", OP_QUIT, "Q" }, + { "reply", OP_REPLY, "r" }, + { "recall-message", OP_RECALL_MESSAGE, "R" }, + { "read-thread", OP_MAIN_READ_THREAD, "\022" }, + { "read-subthread", OP_MAIN_READ_SUBTHREAD, "\033r" }, + { "save-message", OP_SAVE, "s" }, + { "skip-quoted", OP_PAGER_SKIP_QUOTED, "S" }, + { "decode-save", OP_DECODE_SAVE, "\033s" }, + { "tag-message", OP_TAG, "t" }, + { "toggle-quoted", OP_PAGER_HIDE_QUOTED, "T" }, + { "undelete-message", OP_UNDELETE, "u" }, + { "undelete-subthread",OP_UNDELETE_SUBTHREAD, "\033u" }, + { "undelete-thread", OP_UNDELETE_THREAD, "\025" }, + { "view-attachments", OP_VIEW_ATTACHMENTS, "v" }, + { "show-version", OP_VERSION, "V" }, + { "search-toggle", OP_SEARCH_TOGGLE, "\\" }, + { "display-address", OP_DISPLAY_ADDRESS, "@" }, + { "next-new", OP_MAIN_NEXT_NEW, "\t" }, + { "pipe-message", OP_PIPE, "|" }, + { "help", OP_HELP, "?" }, + { "next-page", OP_NEXT_PAGE, " " }, + { "previous-page", OP_PREV_PAGE, "-" }, + { "top", OP_PAGER_TOP, "^" }, + { "bottom", OP_PAGER_BOTTOM, "$" }, + { "shell-escape", OP_SHELL_ESCAPE, "!" }, + { "enter-command", OP_ENTER_COMMAND, ":" }, + { "search", OP_SEARCH, "/" }, + { "search-reverse", OP_SEARCH_REVERSE, "\033/" }, + { "search-opposite", OP_SEARCH_OPPOSITE, NULL }, + { "next-line", OP_NEXT_LINE, M_ENTER_S }, + { "jump", OP_JUMP, NULL }, + { "next-unread", OP_MAIN_NEXT_UNREAD, NULL }, + { "previous-new", OP_MAIN_PREV_NEW, NULL }, + { "previous-unread", OP_MAIN_PREV_UNREAD, NULL }, + { "half-up", OP_HALF_UP, NULL }, + { "half-down", OP_HALF_DOWN, NULL }, + { "previous-line", OP_PREV_LINE, NULL }, + + + + + + + + + + + + +#ifdef _PGPPATH + { "extract-keys", OP_EXTRACT_KEYS, "\013" }, + { "forget-passphrase",OP_FORGET_PASSPHRASE, "\006" }, + { "mail-key", OP_MAIL_KEY, "\033k" }, +#endif + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { NULL, 0, NULL } +}; + +struct binding_t OpAttach[] = { + { "bounce-message", OP_BOUNCE_MESSAGE, "b" }, + { "display-headers", OP_DISPLAY_HEADERS, "h" }, + { "print-entry", OP_PRINT, "p" }, + { "save-entry", OP_SAVE, "s" }, + { "pipe-entry", OP_PIPE, "|" }, + { "view-mailcap", OP_ATTACH_VIEW_MAILCAP, "m" }, + { "reply", OP_REPLY, "r" }, + { "group-reply", OP_GROUP_REPLY, "g" }, + { "list-reply", OP_LIST_REPLY, "L" }, + { "forward-message", OP_FORWARD_MESSAGE, "f" }, + { "view-text", OP_ATTACH_VIEW_TEXT, "T" }, + { "view-attach", OP_VIEW_ATTACH, M_ENTER_S }, + { "delete-entry", OP_DELETE, "d" }, + { "undelete-entry", OP_UNDELETE, "u" }, + + + +#ifdef _PGPPATH + { "extract-keys", OP_EXTRACT_KEYS, "\013" }, +#endif + + + + { NULL, 0, NULL } +}; + +struct binding_t OpCompose[] = { + { "attach-file", OP_COMPOSE_ATTACH_FILE, "a" }, + { "edit-bcc", OP_COMPOSE_EDIT_BCC, "b" }, + { "edit-cc", OP_COMPOSE_EDIT_CC, "c" }, + { "copy-file", OP_SAVE, "C" }, + { "detach-file", OP_DELETE, "D" }, + { "display-headers", OP_DISPLAY_HEADERS, "h" }, + { "edit-description", OP_COMPOSE_EDIT_DESCRIPTION, "d" }, + { "edit-message", OP_COMPOSE_EDIT_MESSAGE, "e" }, + { "edit-headers", OP_COMPOSE_EDIT_HEADERS, "E" }, + { "edit-file", OP_COMPOSE_EDIT_FILE, "\030e" }, + { "edit-encoding", OP_COMPOSE_EDIT_ENCODING, "\005" }, + { "edit-from", OP_COMPOSE_EDIT_FROM, "\033f" }, + { "edit-fcc", OP_COMPOSE_EDIT_FCC, "f" }, + { "filter-entry", OP_FILTER, "F" }, + { "ispell", OP_COMPOSE_ISPELL, "i" }, + { "print-entry", OP_PRINT, "l" }, + { "redraw-screen", OP_REDRAW, "\014" }, + { "edit-mime", OP_COMPOSE_EDIT_MIME, "m" }, + { "new-mime", OP_COMPOSE_NEW_MIME, "n" }, + { "postpone-message", OP_COMPOSE_POSTPONE_MESSAGE, "P" }, + { "edit-reply-to", OP_COMPOSE_EDIT_REPLY_TO, "r" }, + { "rename-file", OP_COMPOSE_RENAME_FILE, "R" }, + { "edit-subject", OP_COMPOSE_EDIT_SUBJECT, "s" }, + { "edit-to", OP_COMPOSE_EDIT_TO, "t" }, + { "edit-type", OP_COMPOSE_EDIT_TYPE, "\024" }, + { "toggle-unlink", OP_COMPOSE_TOGGLE_UNLINK, "u" }, + { "view-attach", OP_VIEW_ATTACH, M_ENTER_S }, + { "send-message", OP_COMPOSE_SEND_MESSAGE, "y" }, + { "pipe-entry", OP_PIPE, "|" }, + +#ifdef _PGPPATH + { "attach-key", OP_COMPOSE_ATTACH_KEY, "\033k" }, + { "forget-passphrase",OP_FORGET_PASSPHRASE, "\006" }, + { "pgp-menu", OP_COMPOSE_PGP_MENU, "p" }, +#endif + + { NULL, 0, NULL } +}; + +struct binding_t OpPost[] = { + { "delete-entry", OP_DELETE, "d" }, + { "undelete-entry", OP_UNDELETE, "u" }, + { NULL, 0, NULL } +}; + +/* The file browser */ +struct binding_t OpBrowser[] = { + { "change-dir", OP_CHANGE_DIRECTORY, "c" }, + { "enter-mask", OP_ENTER_MASK, "m" }, + { "sort", OP_SORT, "o" }, + { "sort-reverse", OP_SORT_REVERSE, "O" }, + { "select-new", OP_BROWSER_NEW_FILE, "N" }, + { "check-new", OP_CHECK_NEW, "\t" }, + { NULL, 0, NULL } +}; + +/* External Query Menu */ +struct binding_t OpQuery[] = { + { "create-alias", OP_CREATE_ALIAS, "a" }, + { "search", OP_SEARCH, "/" }, + { "search-reverse", OP_SEARCH_REVERSE, "\033/" }, + { "search-opposite", OP_SEARCH_OPPOSITE, NULL }, + { "mail", OP_MAIL, "m" }, + { "query", OP_QUERY, "Q" }, + { "query-append", OP_QUERY_APPEND, "A" }, + { NULL, 0, NULL } +}; + +struct binding_t OpEditor[] = { + { "bol", OP_EDITOR_BOL, "\001" }, + { "backward-char", OP_EDITOR_BACKWARD_CHAR, "\002" }, + { "delete-char", OP_EDITOR_DELETE_CHAR, "\004" }, + { "eol", OP_EDITOR_EOL, "\005" }, + { "forward-char", OP_EDITOR_FORWARD_CHAR, "\006" }, + { "backspace", OP_EDITOR_BACKSPACE, "\010" }, + { "kill-eol", OP_EDITOR_KILL_EOL, "\013" }, + { "kill-line", OP_EDITOR_KILL_LINE, "\025" }, + { "quote-char", OP_EDITOR_QUOTE_CHAR, "\026" }, + { "kill-word", OP_EDITOR_KILL_WORD, "\027" }, + { "complete", OP_EDITOR_COMPLETE, "\t" }, + { "complete-query", OP_EDITOR_COMPLETE_QUERY, "\024" }, + { "buffy-cycle", OP_EDITOR_BUFFY_CYCLE, " " }, + { "history-up", OP_EDITOR_HISTORY_UP, NULL }, + { "history-down", OP_EDITOR_HISTORY_DOWN, NULL }, + { NULL, 0, NULL } +}; + + + +#ifdef _PGPPATH +struct binding_t OpPgp[] = { + { "verify-key", OP_VERIFY_KEY, "c" }, + { "view-name", OP_VIEW_ID, "%" }, + { "search-next", OP_SEARCH_NEXT, "n" }, + { "search", OP_SEARCH, "/" }, + { "search-reverse", OP_SEARCH_REVERSE, "\033/" }, + { NULL, 0, NULL } +}; +#endif /* _PGPPATH */ -- cgit v1.2.3