* Rewrite support for specific SSL encryption protocols, including
[alpine.git] / alpine / keymenu.h
blob7e3a7f769f200c8e06af1b4a7ab45637ca5709ed
1 /*
2 * $Id: keymenu.h 1074 2008-06-04 00:08:43Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2013-2018 Eduardo Chappa
6 * Copyright 2006-2008 University of Washington
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * ========================================================================
17 #ifndef PINE_KEYMENU_INCLUDED
18 #define PINE_KEYMENU_INCLUDED
21 #include <general.h>
22 #include "../pith/state.h"
23 #include "../pith/bitmap.h"
26 /*------
27 A key menu has two ways to turn on and off individual items in the menu.
28 If there is a null entry in the key_menu structure for that key, then
29 it is off. Also, if the passed bitmap has a zero in the position for
30 that key, then it is off. This means you can usually set all of the
31 bitmaps and only turn them off if you want to kill a key that is normally
32 there otherwise.
33 Each key_menu is an array of keys with a multiple of 12 number of keys.
34 ------*/
35 /*------
36 Argument to draw_keymenu(). These are to identify which of the possibly
37 multiple sets of twelve keys should be shown in the keymenu. That is,
38 a keymenu may have 24 or 36 keys, so that there are 2 or 3 different
39 screens of key menus for that keymenu. FirstMenu means to use the
40 first twelve, NextTwelve uses the one after the previous one, SameTwelve
41 uses the same one.
42 ------*/
43 typedef enum {MenuNotSet = 0, FirstMenu, NextMenu, SameMenu,
44 SecondMenu, ThirdMenu, FourthMenu} OtherMenu;
47 struct key {
48 char *name; /* the short name */
49 char *label; /* the descriptive label */
50 struct { /* */
51 short cmd; /* the resulting command */
52 short nch; /* how many of ch are active */
53 UCS ch[11]; /* which keystrokes trigger cmd */
54 } bind; /* */
55 KS_OSDATAVAR /* slot for port-specific data */
56 short column; /* menu col after formatting */
60 struct key_menu {
61 unsigned int how_many:4; /* how many separate sets of 12 */
62 unsigned int which:4; /* which of the sets are we using */
63 unsigned int width:8; /* screen width when formatting done */
64 struct key *keys; /* array of how_many*12 size structs */
65 unsigned int formatted_hm:4; /* how_many when formatting done */
66 bitmap_t bitmap;
71 * Definitions for the various Menu Commands...
73 #define MC_NONE 0 /* NO command defined */
74 #define MC_UNKNOWN 200
75 #define MC_UTF8 201
77 /* Cursor/page Motion */
78 #define MC_CHARUP 100
79 #define MC_CHARDOWN 101
80 #define MC_CHARRIGHT 102
81 #define MC_CHARLEFT 103
82 #define MC_GOTOBOL 104
83 #define MC_GOTOEOL 105
84 #define MC_GOTOSOP 106
85 #define MC_GOTOEOP 107
86 #define MC_PAGEUP 108
87 #define MC_PAGEDN 109
88 #define MC_MOUSE 110
89 #define MC_HOMEKEY 111
90 #define MC_ENDKEY 112
92 /* New Screen Commands */
93 #define MC_HELP 500
94 #define MC_QUIT 501
95 #define MC_OTHER 502
96 #define MC_MAIN 503
97 #define MC_INDEX 504
98 #define MC_VIEW_TEXT 505
99 #define MC_VIEW_ATCH 506
100 #define MC_FOLDERS 507
101 #define MC_ADDRBOOK 508
102 #define MC_RELNOTES 509
103 #define MC_KBLOCK 510
104 #define MC_JOURNAL 511
105 #define MC_SETUP 512
106 #define MC_COLLECTIONS 513
107 #define MC_PARENT 514
108 #define MC_ROLE 515
109 #define MC_LISTMGR 516
110 #define MC_THRDINDX 517
111 #define MC_SECURITY 518
113 /* Commands within Screens */
114 #define MC_NEXTITEM 700
115 #define MC_PREVITEM 701
116 #define MC_DELETE 702
117 #define MC_UNDELETE 703
118 #define MC_COMPOSE 704
119 #define MC_REPLY 705
120 #define MC_FORWARD 706
121 #define MC_GOTO 707
122 #define MC_TAB 708
123 #define MC_WHEREIS 709
124 #define MC_ZOOM 710
125 #define MC_PRINTMSG 711
126 #define MC_PRINTTXT 712
127 #define MC_TAKE 713
128 #define MC_SAVE 714
129 #define MC_EXPORT 715
130 #define MC_IMPORT 716
131 #define MC_EXPUNGE 717
132 #define MC_UNEXCLUDE 718
133 #define MC_CHOICE 719
134 #define MC_SELECT 720
135 #define MC_SELCUR 721
136 #define MC_SELALL 722
137 #define MC_UNSELALL 723
138 #define MC_APPLY 724
139 #define MC_SORT 725
140 #define MC_FULLHDR 726
141 #define MC_BOUNCE 727
142 #define MC_FLAG 728
143 #define MC_PIPE 729
144 #define MC_EXIT 730
145 #define MC_PRINTALL 731
146 #define MC_REPAINT 732
147 #define MC_JUMP 733
148 #define MC_RESIZE 734
149 #define MC_FWDTEXT 735
150 #define MC_SAVETEXT 736
151 #define MC_ABOUTATCH 737
152 #define MC_LISTMODE 738
153 #define MC_RENAMEFLDR 739
154 #define MC_ADDFLDR 740
155 #define MC_SUBSCRIBE 741
156 #define MC_UNSUBSCRIBE 742
157 #define MC_ADD 743
158 #define MC_TOGGLE 744
159 #define MC_EDIT 745
160 #define MC_ADDABOOK 746
161 #define MC_DELABOOK 747
162 #define MC_VIEW_ENTRY 748
163 #define MC_EDITABOOK 750
164 #define MC_OPENABOOK 751
165 #define MC_POPUP 752
166 #define MC_EXPAND 753
167 #define MC_UNEXPAND 754
168 #define MC_COPY 755
169 #define MC_SHUFFLE 756
170 #define MC_VIEW_HANDLE 757
171 #define MC_NEXT_HANDLE 758
172 #define MC_PREV_HANDLE 759
173 #define MC_QUERY_SERV 760
174 #define MC_GRIPE_LOCAL 761
175 #define MC_GRIPE_PIC 762
176 #define MC_GRIPE_READ 763
177 #define MC_GRIPE_POST 764
178 #define MC_FINISH 765
179 #define MC_PRINTFLDR 766
180 #define MC_OPENFLDR 767
181 #define MC_EDITFILE 768
182 #define MC_ADDFILE 769
183 #define MC_DELFILE 770
184 #define MC_CHOICEB 771
185 #define MC_CHOICEC 772
186 #define MC_CHOICED 773
187 #define MC_CHOICEE 774
188 #define MC_DEFAULT 775
189 #define MC_TOGGLEB 776
190 #define MC_TOGGLEC 777
191 #define MC_TOGGLED 778
192 #define MC_RGB1 779
193 #define MC_RGB2 780
194 #define MC_RGB3 781
195 #define MC_EXITQUERY 782
196 #define MC_ADDHDR 783
197 #define MC_DELHDR 784
198 #define MC_PRINTER 785
199 #define MC_PASSWD 786
200 #define MC_CONFIG 787
201 #define MC_SIG 788
202 #define MC_ABOOKS 789
203 #define MC_CLISTS 790
204 #define MC_RULES 791
205 #define MC_DIRECTORY 792
206 #define MC_KOLOR 793
207 #define MC_EXCEPT 794
208 #define MC_REMOTE 795
209 #define MC_NO_EXCEPT 796
210 #define MC_YES 797
211 #define MC_NO 798
212 #define MC_NOT 799
213 #define MC_COLLAPSE 800
214 #define MC_CHK_RECENT 801
215 #define MC_DECRYPT 802
216 #define MC_QUOTA 803
217 #define MC_ADDHEADER 804
220 /* Commands for S/MIME screens */
221 #define MC_TRUST 900
222 #define MC_PUBLIC 901
223 #define MC_PRIVATE 902
226 * Some standard Key/Command Bindings
228 #define NULL_MENU {NULL, NULL, {MC_NONE}, KS_NONE}
230 * TRANSLATORS: Alpine has a key menu at the bottom of each screen which
231 * lists all of the available commands. Each command is a single character
232 * which is followed with a short descriptive word which describes what
233 * the command does. Commands are almost always to be thought of as verbs
234 * so the descriptive words describe what the command does.
235 * These descriptive words have to fit across the
236 * screen so they would normally only be 8-10 characters long, though
237 * they will be truncated if there isn't enough space. The command
238 * descriptions are usually chosen so that they will be a mnemonic
239 * for the command. For example, the command S is Save,
240 * E is Export, Q is Quit, and ? is Help. You get to translate the
241 * label (the Save part) but the actual command (the S) will stay
242 * the same, so it will be very difficult to come up with mnemonic
243 * labels. The mnemonic isn't necessary, just nice. You can see that
244 * we have stretched to the edge of the usefullness of mnemonics with
245 * cases like K Kolor (instead of Color) and X eXceptions (because E
246 * already meant something else).
248 #define HELP_MENU {"?", N_("Help"), \
249 {MC_HELP, 2, {'?',ctrl('G')}}, \
250 KS_SCREENHELP}
251 /* TRANSLATORS: Show Other commands */
252 #define OTHER_MENU {"O", N_("OTHER CMDS"), \
253 {MC_OTHER, 1, {'o'}}, \
254 KS_NONE}
255 /* TRANSLATORS: WhereIs command searches for text */
256 #define WHEREIS_MENU {"W", N_("WhereIs"), \
257 {MC_WHEREIS, 2, {'w',ctrl('W')}}, \
258 KS_WHEREIS}
259 /* TRANSLATORS: the Main Menu is the menu of commands you get when
260 you first start alpine. */
261 #define MAIN_MENU {"M", N_("Main Menu"), \
262 {MC_MAIN, 1, {'m'}}, \
263 KS_MAINMENU}
264 #define QUIT_MENU {"Q", N_("Quit Alpine"), \
265 {MC_QUIT, 1, {'q'}}, \
266 KS_EXIT}
267 /* TRANSLATORS: go to Previous Message */
268 #define PREVMSG_MENU {"P", N_("PrevMsg"), \
269 {MC_PREVITEM, 1, {'p'}}, \
270 KS_PREVMSG}
271 /* TRANSLATORS: go to Next Message */
272 #define NEXTMSG_MENU {"N", N_("NextMsg"), \
273 {MC_NEXTITEM, 1, {'n'}}, \
274 KS_NEXTMSG}
275 #define HOMEKEY_MENU {"Hme", N_("FirstPage"), \
276 {MC_HOMEKEY, 1, {KEY_HOME}}, \
277 KS_NONE}
278 #define ENDKEY_MENU {"End", N_("LastPage"), \
279 {MC_ENDKEY, 1, {KEY_END}}, \
280 KS_NONE}
281 /* TRANSLATORS: go to Previous Page */
282 #define PREVPAGE_MENU {"-", N_("PrevPage"), \
283 {MC_PAGEUP, 3, {'-',ctrl('Y'),KEY_PGUP}}, \
284 KS_PREVPAGE}
285 #define NEXTPAGE_MENU {"Spc", N_("NextPage"), \
286 {MC_PAGEDN, 4, {'+',' ',ctrl('V'),KEY_PGDN}}, \
287 KS_NEXTPAGE}
288 /* TRANSLATORS: Jump to a different message in the index */
289 #define JUMP_MENU {"J", N_("Jump"), \
290 {MC_JUMP, 1, {'j'}}, \
291 KS_JUMPTOMSG}
292 /* TRANSLATORS: Forward Email */
293 #define FWDEMAIL_MENU {"F", N_("Fwd Email"), \
294 {MC_FWDTEXT,1,{'f'}}, \
295 KS_FORWARD}
296 #define PRYNTMSG_MENU {"%", N_("Print"), \
297 {MC_PRINTMSG,1,{'%'}}, \
298 KS_PRINT}
299 #define PRYNTTXT_MENU {"%", N_("Print"), \
300 {MC_PRINTTXT,1,{'%'}}, \
301 KS_PRINT}
302 /* TRANSLATORS: In alpine, Save means to save something internally
303 within alpine or within the email system. */
304 #define SAVE_MENU {"S", N_("Save"), \
305 {MC_SAVE,1,{'s'}}, \
306 KS_SAVE}
307 /* TRANSLATORS: In alpine, Export means to save something externally
308 to alpine, to a file in the user's home directory, for example. */
309 #define EXPORT_MENU {"E", N_("Export"), \
310 {MC_EXPORT, 1, {'e'}}, \
311 KS_EXPORT}
312 /* TRANSLATORS: Edit a new message to be sent as email */
313 #define COMPOSE_MENU {"C", N_("Compose"), \
314 {MC_COMPOSE,1,{'c'}}, \
315 KS_COMPOSER}
316 /* TRANSLATORS: Edit a new message while acting in one of
317 your roles */
318 #define RCOMPOSE_MENU {"#", N_("Role"), \
319 {MC_ROLE,1,{'#'}}, \
320 KS_NONE}
321 #define DELETE_MENU {"D", N_("Delete"), \
322 {MC_DELETE,2,{'d',KEY_DEL}}, \
323 KS_DELETE}
324 #define UNDELETE_MENU {"U", N_("Undelete"), \
325 {MC_UNDELETE,1,{'u'}}, \
326 KS_UNDELETE}
327 /* TRANSLATORS: Reply to an email message */
328 #define REPLY_MENU {"R", N_("Reply"), \
329 {MC_REPLY,1,{'r'}}, \
330 KS_REPLY}
331 /* TRANSLATORS: Forward an email message to someone else */
332 #define FORWARD_MENU {"F", N_("Forward"), \
333 {MC_FORWARD,1,{'f'}}, \
334 KS_FORWARD}
335 /* TRANSLATORS: go to List of Folders */
336 #define LISTFLD_MENU {"L", N_("ListFldrs"), \
337 {MC_COLLECTIONS,1,{'l'}}, \
338 KS_FLDRLIST}
339 /* TRANSLATORS: the index is a list of email messages, go there */
340 #define INDEX_MENU {"I", N_("Index"), \
341 {MC_INDEX,1,{'i'}}, \
342 KS_FLDRINDEX}
343 /* TRANSLATORS: Go To Folder, a command to go view another mail folder */
344 #define GOTO_MENU {"G", N_("GotoFldr"), \
345 {MC_GOTO,1,{'g'}}, \
346 KS_GOTOFLDR}
347 /* TRANSLATORS: Take Address is a command to copy addresses from a
348 message to the user's address book */
349 #define TAKE_MENU {"T", N_("TakeAddr"), \
350 {MC_TAKE,1,{'t'}}, \
351 KS_TAKEADDR}
352 /* TRANSLATORS: To Flag a message means to mark it in some way,
353 for example, flag it as important */
354 #define FLAG_MENU {"*", N_("Flag"), \
355 {MC_FLAG,1,{'*'}}, \
356 KS_FLAG}
357 /* TRANSLATORS: Pipe refers to the Unix pipe command (the vertical bar). */
358 #define PIPE_MENU {"|", N_("Pipe"), \
359 {MC_PIPE,1,{'|'}}, \
360 KS_NONE}
361 /* TRANSLATORS: Bounce is sometimes called re-sending a message.
362 A user would use this command if a message had been incorrectly
363 sent to him or her. */
364 #define BOUNCE_MENU {"B", N_("Bounce"), \
365 {MC_BOUNCE,1,{'b'}}, \
366 KS_BOUNCE}
367 /* TRANSLATORS: Header Mode, refers to showing more or fewer message
368 headers when viewing a message. This command toggles between more
369 and fewer each time it is typed. */
370 #define HDRMODE_MENU {"H", N_("HdrMode"), \
371 {MC_FULLHDR,1,{'h'}}, \
372 KS_HDRMODE}
373 /* TRANSLATORS: The Tab key goes to the Next New message */
374 #define TAB_MENU {"Tab", N_("NextNew"), \
375 {MC_TAB,1,{TAB}}, \
376 KS_NONE}
377 /* TRANSLATORS: go to the Previous item */
378 #define PREV_MENU {"P", N_("Prev"), \
379 {MC_PREVITEM,1,{'p'}}, \
380 KS_NONE}
381 #define NEXT_MENU {"N", N_("Next"), \
382 {MC_NEXTITEM,2,{'n','\t'}}, \
383 KS_NONE}
384 #define EXIT_SETUP_MENU {"E", N_("Exit Setup"), \
385 {MC_EXIT,1,{'e'}}, \
386 KS_EXITMODE}
387 #define TOGGLE_MENU {"X", "[" N_("Set/Unset") "]", \
388 {MC_TOGGLE,3,{'x',ctrl('M'),ctrl('J')}}, \
389 KS_NONE}
390 #define TOGGLEB_MENU {"X", "[" N_("Set/Unset") "]", \
391 {MC_TOGGLEB,3,{'x',ctrl('M'),ctrl('J')}}, \
392 KS_NONE}
393 #define TOGGLEC_MENU {"X", "[" N_("Set/Unset") "]", \
394 {MC_TOGGLEC,3,{'x',ctrl('M'),ctrl('J')}}, \
395 KS_NONE}
396 #define TOGGLED_MENU {"X", "[" N_("Set/Unset") "]", \
397 {MC_TOGGLED,3,{'x',ctrl('M'),ctrl('J')}}, \
398 KS_NONE}
399 /* TRANSLATORS: go to the Previous Collection. A Collection in Alpine refers
400 to a collection of mail folders. */
401 #define PREVC_MENU {"P", N_("PrevCltn"), \
402 {MC_PREVITEM,1,{'p'}}, \
403 KS_NONE}
404 /* TRANSLATORS: Next Collection. */
405 #define NEXTC_MENU {"N", N_("NextCltn"), \
406 {MC_NEXTITEM,2,{'n','\t'}}, \
407 KS_NONE}
408 /* TRANSLATORS: Delete Collection. */
409 #define DELC_MENU {"D", N_("Del Cltn"), \
410 {MC_DELETE,2,{'d',KEY_DEL}}, \
411 KS_NONE}
412 /* TRANSLATORS: go to the Previous Folder (in a list of folders). */
413 #define PREVF_MENU {"P", N_("PrevFldr"), \
414 {MC_PREV_HANDLE,3,{'p',ctrl('B'),KEY_LEFT}}, \
415 KS_NONE}
416 /* TRANSLATORS: Next Folder (in a list of folders). */
417 #define NEXTF_MENU {"N", N_("NextFldr"), \
418 {MC_NEXT_HANDLE,4,{'n',ctrl('F'),TAB,KEY_RIGHT}}, \
419 KS_NONE}
420 /* TRANSLATORS: Current Index of messages (go to the current index) */
421 #define CIND_MENU {"I", N_("CurIndex"), \
422 {MC_INDEX,1,{'i'}}, \
423 KS_FLDRINDEX}
424 /* TRANSLATORS: View this Message */
425 #define VIEWMSG_MENU {">", "[" N_("ViewMsg") "]", \
426 {MC_VIEW_TEXT, 5,{'v','.','>',ctrl('M'),ctrl('J')}}, \
427 KS_VIEW}
428 /* TRANSLATORS: Sort the index of messages */
429 #define FLDRSORT_MENU {"$", N_("SortIndex"), \
430 {MC_SORT,1,{'$'}}, \
431 KS_SORT}
432 /* TRANSLATORS: Exit the Take Address screen */
433 #define TA_EXIT_MENU {"<",N_("ExitTake"), \
434 {MC_EXIT,4,{'e',ctrl('C'),'<',','}}, \
435 KS_EXITMODE}
436 #define TA_NEXT_MENU {"N",N_("Next"), \
437 {MC_CHARDOWN,4,{'n','\t',ctrl('N'),KEY_DOWN}}, \
438 KS_NONE}
439 /* TRANSLATORS: abbreviation for Previous */
440 #define TA_PREV_MENU {"P",N_("Prev"), \
441 {MC_CHARUP, 3, {'p',ctrl('P'),KEY_UP}}, \
442 KS_NONE}
446 * It's bogus that these are defined here. They go with the structures
447 * defined in keymenu.c and have to stay in sync with them.
449 #define OTHER_KEY 1
450 #define TWO_KEY 2
451 #define THREE_KEY 3
452 #define ADD_KEY 8
453 #define DELETE_KEY 9
454 #define SENDTO_KEY 10
455 #define SECONDARY_MAIN_KEY 15
456 #define RCOMPOSE_KEY 19
457 #define TAKE_KEY 21
458 #define SAVE_KEY 22
459 #define FORW_KEY 23
460 #define KM_COL_KEY 2
461 #define KM_SEL_KEY 3
462 #define KM_MAIN_KEY 15
463 #define KM_ALTVIEW_KEY 16
464 #define KM_ZOOM_KEY 21
465 #define KM_SELECT_KEY 22
466 #define KM_SELCUR_KEY 23
467 #define KM_RECENT_KEY 28
468 #define KM_SHUFFLE_KEY 30
469 #define KM_EXPORT_KEY 32
470 #define KM_IMPORT_KEY 33
471 #define FC_EXIT_KEY 1
472 #define FC_COL_KEY 2
473 #define FC_SEL_KEY 3
474 #define FC_ALTSEL_KEY 8
475 #define SB_SUB_KEY 1
476 #define SB_EXIT_KEY 2
477 #define SB_SEL_KEY 3
478 #define SB_LIST_KEY 8
479 #define HLP_MAIN_KEY 0
480 #define HLP_SUBEXIT_KEY 1
481 #define HLP_EXIT_KEY 2
482 #define HLP_VIEW_HANDLE 3
483 #define HLP_PREV_HANDLE 4
484 #define HLP_NEXT_HANDLE 5
485 #define HLP_ALL_KEY 9
486 #define TIMESTAMP_KEY 4
487 #define DEBUG_KEY 5
488 #define LM_TRY_KEY 3
489 #define LM_PREV_KEY 4
490 #define LM_NEXT_KEY 5
491 #define BACK_KEY 2
492 #define PREVM_KEY 4
493 #define NEXTM_KEY 5
494 #define EXCLUDE_KEY 26
495 #define UNEXCLUDE_KEY 27
496 #define SELECT_KEY 28
497 #define APPLY_KEY 29
498 #define VIEW_FULL_HEADERS_KEY 32
499 #define BOUNCE_KEY 33
500 #define FLAG_KEY 34
501 #define VIEW_PIPE_KEY 35
502 #define SELCUR_KEY 38
503 #define ZOOM_KEY 39
504 #define COLLAPSE_KEY 45
505 #define ATT_PARENT_KEY 2
506 #define ATT_EXPORT_KEY 11
507 #define ATT_PIPE_KEY 16
508 #define ATT_BOUNCE_KEY 17
509 #define ATT_PRINT_KEY 20
510 #define ATT_REPLY_KEY 22
511 #define ATT_FORWARD_KEY 23
512 #define ATV_BACK_KEY 2
513 #define ATV_VIEW_HILITE 3
514 #define ATV_PREV_URL 4
515 #define ATV_NEXT_URL 5
516 #define ATV_EXPORT_KEY 11
517 #define ATV_PIPE_KEY 16
518 #define ATV_BOUNCE_KEY 17
519 #define ATV_PRINT_KEY 20
520 #define ATV_REPLY_KEY 22
521 #define ATV_FORWARD_KEY 23
522 #define ATV_DECRYPT_KEY (ATV_PIPE_KEY + 14)
523 #define ATV_SECURITY_KEY (ATV_DECRYPT_KEY + 1)
524 #define VIEW_ATT_KEY 3
525 #define VIEW_FULL_HEADERS_KEY 32
526 #define VIEW_VIEW_HANDLE 26
527 #define VIEW_SELECT_KEY 27
528 #define VIEW_PREV_HANDLE 28
529 #define VIEW_NEXT_HANDLE 29
530 #define OE_HELP_KEY 0
531 #define OE_CANCEL_KEY 1
532 #define OE_CTRL_T_KEY 2
533 #define OE_ENTER_KEY 3
534 #define SETUP_PRINTER 3
535 #define SETUP_PASSWD 4
536 #define SETUP_CONFIG 5
537 #define SETUP_SIG 6
538 #define SETUP_DIRECTORY 10
539 #define SETUP_EXCEPT 14
540 #define SETUP_SMIME 16
541 #define MAIN_HELP_KEY 0
542 #define MAIN_DEFAULT_KEY 3
543 #define MAIN_KBLOCK_KEY 9
544 #define MAIN_QUIT_KEY 14
545 #define MAIN_COMPOSE_KEY 15
546 #define MAIN_FOLDER_KEY 16
547 #define MAIN_INDEX_KEY 18
548 #define MAIN_SETUP_KEY 20
549 #define MAIN_ADDRESS_KEY 21
550 #define NUOV_EXIT 2
551 #define NUOV_VIEW 3
552 #define NUOV_NEXT_PG 6
553 #define NUOV_PREV_PG 7
554 #define NUOV_RELNOTES 10
555 #define DEFAULT_KEY 3
556 #define CHANGEDEF_KEY 10
557 #define SMIME_PARENT_KEY 2
558 #define DECRYPT_KEY (VIEW_PIPE_KEY + 7)
559 #define SECURITY_KEY (DECRYPT_KEY + 1)
560 #define TRUST_KEY 3
561 #define PUBLIC_KEY 6
562 #define PRIVATE_KEY 7
563 #define DELETE_CERT_KEY 4
564 #define UNDELETE_CERT_KEY 5
566 extern struct key_menu cancel_keymenu,
567 ab_keymenu,
568 abook_select_km,
569 abook_view_keymenu,
570 abook_text_km,
571 ldap_view_keymenu,
572 c_mgr_km,
573 c_cfg_km,
574 c_sel_km,
575 c_fcc_km,
576 folder_km,
577 folder_sel_km,
578 folder_sela_km,
579 folder_sub_km,
580 folder_post_km,
581 help_keymenu,
582 rev_msg_keymenu,
583 ans_certfail_keymenu,
584 ans_certquery_keymenu,
585 forge_keymenu,
586 listmgr_keymenu,
587 index_keymenu,
588 simple_index_keymenu,
589 thread_keymenu,
590 att_index_keymenu,
591 att_view_keymenu,
592 view_keymenu,
593 simple_text_keymenu,
594 oe_keymenu,
595 choose_setup_keymenu,
596 main_keymenu,
597 simple_file_keymenu,
598 nuov_keymenu,
599 modal_message_keymenu,
600 ta_keymenu_lm,
601 ta_keymenu_sm,
602 pipe_cancel_keymenu,
603 color_pattern_keymenu,
604 hdr_color_checkbox_keymenu,
605 kw_color_checkbox_keymenu,
606 selectable_bold_checkbox_keymenu,
607 flag_keymenu,
608 addr_s_km,
609 addr_s_km_with_goback,
610 addr_s_km_with_view,
611 addr_s_km_for_url,
612 addr_s_km_exit,
613 addr_s_km_goback,
614 dir_conf_km,
615 sel_from_list,
616 sel_from_list_ctrlc,
617 sel_from_list_sm,
618 sel_from_list_sm_ctrlc,
619 sel_from_list_lm,
620 sel_from_list_lm_ctrlc,
621 sel_from_list_olm,
622 sel_from_list_olm_ctrlc,
623 printer_edit_keymenu,
624 printer_select_keymenu,
625 role_select_km,
626 role_conf_km,
627 config_text_wshuf_keymenu,
628 config_text_wshufandfldr_keymenu,
629 config_role_file_keymenu,
630 config_role_file_res_keymenu,
631 config_role_keyword_keymenu,
632 config_role_keyword_keymenu_not,
633 config_role_charset_keymenu_not,
634 config_role_keymenu,
635 config_role_keymenu_not,
636 config_role_keymenu_extra,
637 config_role_addr_pat_keymenu,
638 config_role_xtrahdr_keymenu,
639 config_role_addr_act_keymenu,
640 config_role_patfolder_keymenu,
641 config_role_actionfolder_keymenu,
642 config_role_inick_keymenu,
643 config_role_afrom_keymenu,
644 config_checkbox_keymenu,
645 config_text_keymenu,
646 config_text_to_charsets_keymenu,
647 config_radiobutton_keymenu,
648 config_yesno_keymenu,
649 color_changing_keymenu,
650 custom_color_changing_keymenu,
651 kw_color_changing_keymenu,
652 color_rgb_keymenu,
653 custom_rgb_keymenu,
654 kw_rgb_keymenu,
655 color_setting_keymenu,
656 custom_color_setting_keymenu,
657 role_color_setting_keymenu,
658 kw_color_setting_keymenu,
659 take_export_keymenu_sm,
660 take_export_keymenu_lm,
661 config_smime_helper_keymenu,
662 config_smime_add_certs_keymenu,
663 smime_info_keymenu,
664 config_smime_manage_certs_menu_keymenu,
665 config_smime_manage_certs_work_keymenu,
666 config_smime_manage_password_file_menu_keymenu,
667 smime_certificate_info_keymenu,
668 config_smime_add_new_key_keymenu,
669 config_smime_manage_view_cert_keymenu,
670 config_smime_manage_view_cert_keymenu_no_delete;
672 extern struct key rev_msg_keys[];
675 /* exported protoypes */
676 void draw_cancel_keymenu(void);
677 void end_keymenu(void);
678 int menu_command(UCS, struct key_menu *);
679 void menu_init_binding(struct key_menu *, UCS, int, char *, char *, int);
680 void menu_add_binding(struct key_menu *, UCS, int);
681 int menu_clear_binding(struct key_menu *, UCS);
682 int menu_binding_index(struct key_menu *, int);
683 void mark_keymenu_dirty(void);
684 void blank_keymenu(int, int);
685 void draw_keymenu(struct key_menu *, bitmap_t, int, int, int, OtherMenu);
686 void redraw_keymenu(void);
687 void clearfooter(struct pine *);
690 #endif /* PINE_KEYMENU_INCLUDED */