winhlp32.rc 2.81 KB
Newer Older
1 2 3
/*
 * Help Viewer
 *
4 5
 * Copyright 1996 Ulrich Schmid
 * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * 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
 */

22 23
#include "winhelp_res.h"

24
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
25

26
MAIN_MENU MENU
27
{
28
 POPUP "&File" {
29
  MENUITEM "&Open...", MNID_FILE_OPEN
30
  MENUITEM SEPARATOR
31
  MENUITEM "&Print...", MNID_FILE_PRINT
32
  MENUITEM "Printer &setup...", MNID_FILE_SETUP
33
   MENUITEM SEPARATOR
34
  MENUITEM "E&xit", MNID_FILE_EXIT
35
 }
36
 POPUP "&Edit" {
37
   MENUITEM "&Copy", MNID_EDIT_COPYDLG
38
   MENUITEM SEPARATOR
39
   MENUITEM "&Annotate...", MNID_EDIT_ANNOTATE
40
 }
41 42
 POPUP "&Bookmark" {
   MENUITEM "&Define...", MNID_BKMK_DEFINE
43
 }
44 45 46 47 48 49 50 51 52
 POPUP "&Options" {
  MENUITEM "History",		MNID_OPTS_HISTORY
  POPUP    "Fonts"
  BEGIN
    MENUITEM "Small",		MNID_OPTS_FONTS_SMALL
    MENUITEM "Normal",    	MNID_OPTS_FONTS_NORMAL
    MENUITEM "Large",     	MNID_OPTS_FONTS_LARGE
  END
 }
53
 POPUP "&Help" {
54
   MENUITEM "&Help on help\tF1", MNID_HELP_HELPON
55 56
   MENUITEM "Always on &top", MNID_HELP_HELPTOP
   MENUITEM "&About Wine Help", MNID_HELP_ABOUT
57 58
 }
}
59

60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
CONTEXT_MENU MENU
BEGIN
	POPUP ""
	BEGIN
		MENUITEM "Annotation...",       MNID_CTXT_ANNOTATE
		MENUITEM "Copy",                MNID_CTXT_COPY
		MENUITEM "Print...",            MNID_CTXT_PRINT
		POPUP    "Fonts"
		BEGIN
			MENUITEM "Small",       MNID_CTXT_FONTS_SMALL
			MENUITEM "Normal",      MNID_CTXT_FONTS_NORMAL
			MENUITEM "Large",       MNID_CTXT_FONTS_LARGE
		END
	END
END
75

76
STRINGTABLE
77
{
78 79 80 81 82 83 84
STID_WINE_HELP, 	"Wine Help"
STID_WHERROR, 		"ERROR"
STID_WARNING,  		"WARNING"
STID_INFO,  		"Information"
STID_NOT_IMPLEMENTED, 	"Not implemented"
STID_HLPFILE_ERROR_s, 	"Error while reading the help file `%s'"
STID_INDEX, 		"&Index"
85
STID_CONTENTS,		"Summary"
86 87 88
STID_BACK, 		"&Back"
STID_ALL_FILES, 	"All files (*.*)"
STID_HELP_FILES_HLP, 	"Help files (*.hlp)"
89
STID_FILE_NOT_FOUND_s	"Cannot find '%s'. Do you want to find this file yourself?"
90
STID_NO_RICHEDIT	"Cannot find a richedit implementation... Aborting"
91
STID_PSH_INDEX,		"Help topics: "
92
}
93

94 95
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL

96 97 98 99 100 101

MAIN_ACCEL ACCELERATORS
{
    VK_F1, MNID_HELP_HELPON, VIRTKEY
}

102 103
/* @makedep: winhelp.ico */
IDI_WINHELP ICON winhelp.ico