winhlp32.rc 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*
  2. * Help Viewer
  3. *
  4. * Copyright 1996 Ulrich Schmid
  5. * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  20. */
  21. #include "winhelp_res.h"
  22. #pragma makedep po
  23. LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
  24. MAIN_MENU MENU
  25. {
  26. POPUP "&File" {
  27. MENUITEM "&Open...", MNID_FILE_OPEN
  28. MENUITEM SEPARATOR
  29. MENUITEM "&Print...", MNID_FILE_PRINT
  30. MENUITEM "Printer &setup...", MNID_FILE_SETUP
  31. MENUITEM SEPARATOR
  32. MENUITEM "E&xit", MNID_FILE_EXIT
  33. }
  34. POPUP "&Edit" {
  35. MENUITEM "&Copy", MNID_EDIT_COPYDLG
  36. MENUITEM SEPARATOR
  37. MENUITEM "&Annotate...", MNID_EDIT_ANNOTATE
  38. }
  39. POPUP "&Bookmark" {
  40. MENUITEM "&Define...", MNID_BKMK_DEFINE
  41. }
  42. POPUP "&Options" {
  43. MENUITEM "Always on &top", MNID_HELP_HELPTOP
  44. MENUITEM "History", MNID_OPTS_HISTORY
  45. POPUP "Fonts"
  46. BEGIN
  47. MENUITEM "Small", MNID_OPTS_FONTS_SMALL
  48. MENUITEM "Normal", MNID_OPTS_FONTS_NORMAL
  49. MENUITEM "Large", MNID_OPTS_FONTS_LARGE
  50. END
  51. }
  52. POPUP "&Help" {
  53. MENUITEM "&Help on help\tF1", MNID_HELP_HELPON
  54. MENUITEM "&About Wine Help", MNID_HELP_ABOUT
  55. }
  56. }
  57. CONTEXT_MENU MENU
  58. BEGIN
  59. POPUP ""
  60. BEGIN
  61. MENUITEM "Annotation...", MNID_CTXT_ANNOTATE
  62. MENUITEM "Copy", MNID_CTXT_COPY
  63. MENUITEM "Print...", MNID_CTXT_PRINT
  64. POPUP "Fonts"
  65. BEGIN
  66. MENUITEM "Small", MNID_CTXT_FONTS_SMALL
  67. MENUITEM "Normal", MNID_CTXT_FONTS_NORMAL
  68. MENUITEM "Large", MNID_CTXT_FONTS_LARGE
  69. END
  70. END
  71. END
  72. STRINGTABLE
  73. {
  74. STID_WINE_HELP, "Wine Help"
  75. STID_WHERROR, "ERROR"
  76. STID_WARNING, "WARNING"
  77. STID_INFO, "Information"
  78. STID_NOT_IMPLEMENTED, "Not yet implemented"
  79. STID_HLPFILE_ERROR_s, "Error while reading the help file `%s'"
  80. STID_INDEX, "&Index"
  81. STID_CONTENTS, "Summary"
  82. STID_BACK, "&Back"
  83. STID_ALL_FILES, "All files (*.*)"
  84. STID_HELP_FILES_HLP, "Help files (*.hlp)"
  85. STID_FILE_NOT_FOUND_s "Cannot find '%s'. Do you want to find this file yourself?"
  86. STID_NO_RICHEDIT "Cannot find a richedit implementation... Aborting"
  87. STID_PSH_INDEX, "Help topics: "
  88. }
  89. IDD_INDEX DIALOG 0, 0, 200, 190
  90. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  91. FONT 8, "MS Shell Dlg"
  92. CAPTION "Index"
  93. {
  94. LISTBOX IDC_INDEXLIST, 10, 10, 180, 150, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_BORDER
  95. }
  96. IDD_SEARCH DIALOG 0, 0, 200, 190
  97. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  98. FONT 8, "MS Shell Dlg"
  99. CAPTION "Search"
  100. {
  101. LTEXT "Not yet implemented", -1, 10, 10, 180, 150
  102. }
  103. LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
  104. MAIN_ACCEL ACCELERATORS
  105. {
  106. VK_F1, MNID_HELP_HELPON, VIRTKEY
  107. }
  108. /* @makedep: winhelp.ico */
  109. IDI_WINHELP ICON winhelp.ico