winhlp32.rc 3.21 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 25
#pragma makedep po

26
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
27

28
MAIN_MENU MENU
29
{
30
 POPUP "&File" {
31
  MENUITEM "&Open...", MNID_FILE_OPEN
32
  MENUITEM SEPARATOR
33
  MENUITEM "&Print...", MNID_FILE_PRINT
34
  MENUITEM "Printer &setup...", MNID_FILE_SETUP
35
   MENUITEM SEPARATOR
36
  MENUITEM "E&xit", MNID_FILE_EXIT
37
 }
38
 POPUP "&Edit" {
39
   MENUITEM "&Copy", MNID_EDIT_COPYDLG
40
   MENUITEM SEPARATOR
41
   MENUITEM "&Annotate...", MNID_EDIT_ANNOTATE
42
 }
43 44
 POPUP "&Bookmark" {
   MENUITEM "&Define...", MNID_BKMK_DEFINE
45
 }
46
 POPUP "&Options" {
47
  MENUITEM "Always on &top", MNID_HELP_HELPTOP
48 49 50 51 52 53 54 55
  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
 }
56
 POPUP "&Help" {
57
   MENUITEM "&Help on help\tF1", MNID_HELP_HELPON
58
   MENUITEM "&About Wine Help", MNID_HELP_ABOUT
59 60
 }
}
61

62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
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
77

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

96 97 98 99 100 101 102 103 104 105 106 107 108
IDD_INDEX DIALOG 0, 0, 200, 190
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
FONT 8, "MS Shell Dlg"
CAPTION "Index"
{
    LISTBOX IDC_INDEXLIST, 10, 10, 180, 150, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_BORDER
}

IDD_SEARCH DIALOG 0, 0, 200, 190
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
FONT 8, "MS Shell Dlg"
CAPTION "Search"
{
109
    LTEXT  "Not yet implemented", -1, 10, 10, 180, 150
110 111
}

112 113
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL

114 115 116 117 118 119

MAIN_ACCEL ACCELERATORS
{
    VK_F1, MNID_HELP_HELPON, VIRTKEY
}

120 121
/* @makedep: winhelp.ico */
IDI_WINHELP ICON winhelp.ico