-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.h
68 lines (61 loc) · 2.5 KB
/
help.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**************************************************************************
* File name : help.h
*
* Description: This header file contains the identifiers for the
* constants used by the help manager.
*
* Concepts : help manager
*
* API's : [none]
*
* Required
* Files : [none]
*
* Copyright (C) 1991 IBM Corporation
*
* DISCLAIMER OF WARRANTIES. The following [enclosed] code is
* sample code created by IBM Corporation. This sample code is not
* part of any standard or IBM product and is provided to you solely
* for the purpose of assisting you in the development of your
* applications. The code is provided "AS IS", without
* warranty of any kind. IBM shall not be liable for any damages
* arising out of your use of the sample code, even if they have been
* advised of the possibility of such damages. *
*************************************************************************/
/*
* Help table and subtables
*/
#define TEMPLATE_HELP_TABLE 1000
#define SUBTABLE_MAIN 2000
#define SUBTABLE_PRODUCTINFODLG 3000
/*
* Main window help panels
*/
#define PANEL_MAIN 2100
#define PANEL_PRODUCTINFODLG 3100
#define PANEL_FILE 2210
#define PANEL_FILENEW 2220
#define PANEL_FILEOPEN 2230
#define PANEL_FILESAVE 2240
#define PANEL_FILESAVEAS 2250
#define PANEL_FILEEXIT 2290
#define PANEL_EDIT 2310
#define PANEL_EDITUNDO 2320
#define PANEL_EDITCUT 2330
#define PANEL_EDITCOPY 2340
#define PANEL_EDITPASTE 2350
#define PANEL_EDITCLEAR 2360
#define PANEL_HELP 2910
#define PANEL_HELPINDEX 2920
#define PANEL_HELPGENERAL 2930
#define PANEL_HELPUSINGHELP 2940
#define PANEL_HELPKEYS 2950
#define PANEL_HELPTUTORIAL 2960
#define PANEL_HELPPRODUCTINFO 2970
/*
* Enter text dialog help subtable
*/
#define PANEL_PRODUCTINFO_OK 3110
#define HID_FS_OPEN_DLG_HELP_PANEL 4163
#define HID_FS_SAVE_DLG_HELP_PANEL 4210
/*************************** End of help.h ****************************/