home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / lynx2.8.1dev.10.tar.gz / lynx2.8.1dev.10.tar / lynx2-8 / src / LYOptions.h < prev    next >
C/C++ Source or Header  |  1997-10-06  |  1KB  |  66 lines

  1. #ifndef LYOPTIONS_H
  2. #define LYOPTIONS_H
  3.  
  4. extern BOOLEAN term_options;
  5.  
  6. extern void options NOPARAMS;
  7. extern void edit_bookmarks NOPARAMS;
  8.  
  9. /*
  10.  *  Values for the options menu. - FM
  11.  *
  12.  *  L_foo values are the Y coordinates for the menu item.
  13.  *  B_foo values are the X coordinates for the item's prompt string.
  14.  *  C_foo values are the X coordinates for the item's value string.
  15.  */
  16. #define L_EDITOR     2
  17. #define L_DISPLAY     3
  18.  
  19. #define L_HOME         4
  20. #define C_MULTI        24
  21. #define B_BOOK        34
  22. #define C_DEFAULT    50
  23.  
  24. #define L_FTPSTYPE     5
  25. #define L_MAIL_ADDRESS     6
  26. #define L_SSEARCH     7
  27. #define L_LANGUAGE     8
  28. #define L_PREF_CHARSET     9
  29. #define L_ASSUME_CHARSET (L_PREF_CHARSET + 1)
  30. #define L_CHARSET    10
  31. #define L_RAWMODE    11
  32.  
  33. #define L_COLOR        L_RAWMODE
  34. #define B_COLOR        44
  35. #define C_COLOR        62
  36.  
  37. #define L_BOOL_A    12
  38. #define B_VIKEYS    5
  39. #define C_VIKEYS    15
  40. #define B_EMACSKEYS    22
  41. #define C_EMACSKEYS    36
  42. #define B_SHOW_DOTFILES    44
  43. #define C_SHOW_DOTFILES    62
  44.  
  45. #define L_BOOL_B    13
  46. #define B_SELECT_POPUPS    5
  47. #define C_SELECT_POPUPS    36
  48. #define B_SHOW_CURSOR    44
  49. #define C_SHOW_CURSOR    62
  50.  
  51. #define L_KEYPAD    14 
  52. #define L_LINEED    15
  53.  
  54. #ifdef DIRED_SUPPORT
  55. #define L_DIRED        16
  56. #define L_USER_MODE    17
  57. #define L_USER_AGENT    18
  58. #define L_EXEC        19
  59. #else
  60. #define L_USER_MODE    16
  61. #define L_USER_AGENT    17
  62. #define L_EXEC        18
  63. #endif /* DIRED_SUPPORT */
  64.  
  65. #endif /* LYOPTIONS_H */
  66.