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 22LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT 23 24MAIN_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 58CONTEXT_MENU MENU 59BEGIN 60 POPUP "" 61 BEGIN 62 MENUITEM "Annotation...", MNID_CTXT_ANNOTATE 63 MENUITEM "Copy", MNID_CTXT_COPY 64 MENUITEM "Print...", MNID_CTXT_PRINT 65 POPUP "Fonts" 66 BEGIN 67 MENUITEM "Small", MNID_CTXT_FONTS_SMALL 68 MENUITEM "Normal", MNID_CTXT_FONTS_NORMAL 69 MENUITEM "Large", MNID_CTXT_FONTS_LARGE 70 END 71 END 72END 73 74STRINGTABLE 75{ 76STID_WINE_HELP, "ReactOS Help" 77STID_WHERROR, "ERROR" 78STID_WARNING, "WARNING" 79STID_INFO, "Information" 80STID_NOT_IMPLEMENTED, "Not yet implemented" 81STID_HLPFILE_ERROR_s, "Error while reading the help file `%s'" 82STID_INDEX, "&Index" 83STID_CONTENTS, "Summary" 84STID_BACK, "&Back" 85STID_ALL_FILES, "All files (*.*)" 86STID_HELP_FILES_HLP, "Help files (*.hlp)" 87STID_FILE_NOT_FOUND_s "Cannot find '%s'. Do you want to find this file yourself?" 88STID_NO_RICHEDIT "Cannot find a richedit implementation... Aborting" 89STID_PSH_INDEX, "Help topics: " 90} 91 92IDD_INDEX DIALOGEX 0, 0, 200, 190 93STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU 94FONT 8, "MS Shell Dlg" 95CAPTION "Index" 96{ 97 LISTBOX IDC_INDEXLIST, 10, 10, 180, 150, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_BORDER 98} 99 100IDD_SEARCH DIALOGEX 0, 0, 200, 190 101STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU 102FONT 8, "MS Shell Dlg" 103CAPTION "Search" 104{ 105 LTEXT "Not yet implemented", -1, 10, 10, 180, 150 106} 107