Initial import of the CDE 2.1.30 sources from the Open Group.
[oweals/cde.git] / cde / programs / dtcm / dtcm / help.h
1 /*******************************************************************************
2 **
3 **  help.h
4 **
5 **  static char sccsid[] = "@(#)help.h 1.16 94/11/07 Copyr 1991 Sun Microsystems, Inc.";
6 **
7 **  $XConsortium: help.h /main/5 1996/10/08 14:12:28 barstow $
8 **
9 **  RESTRICTED CONFIDENTIAL INFORMATION:
10 **
11 **  The information in this document is subject to special
12 **  restrictions in a confidential disclosure agreement between
13 **  HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
14 **  document outside HP, IBM, Sun, USL, SCO, or Univel without
15 **  Sun's specific written approval.  This document and all copies
16 **  and derivative works thereof must be returned or destroyed at
17 **  Sun's request.
18 **
19 **  Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
20 **
21 *************************************************************************/
22
23 /*                                                                      *
24  * (c) Copyright 1993, 1994 Hewlett-Packard Company                     *
25  * (c) Copyright 1993, 1994 International Business Machines Corp.       *
26  * (c) Copyright 1993, 1994 Sun Microsystems, Inc.                      *
27  * (c) Copyright 1993, 1994 Novell, Inc.                                *
28  */
29
30 #ifndef _HELP_H
31 #define _HELP_H
32
33 /* for help */
34 #define HELP_OVERVIEW                           100
35 #define HELP_TASKS                              101
36 #define HELP_REFERENCE                          102
37 #define HELP_ONITEM                             103
38 #define HELP_USINGHELP                          104
39 #define HELP_ABOUTCALENDAR                      105
40 #define HELP_TOC                                106
41
42 /* location id's for on item help */
43 #define CALENDAR_HELP_FILE_BUTTON               "CalendarFileMenu"
44 #define CALENDAR_HELP_EDIT_BUTTON               "CalendarEditMenu"
45 #define CALENDAR_HELP_VIEW_BUTTON               "CalendarViewMenu"
46 #define CALENDAR_HELP_BROWSE_BUTTON             "CalendarBrowseMenu"
47 #define CALENDAR_HELP_HELP_BUTTON               "CalendarHelpMenu"
48 #define CALENDAR_HELP_APPT_BUTTON               "CalendarToolBar"
49 #define CALENDAR_HELP_TODO_BUTTON               "CalendarToolBar"
50 #define CALENDAR_HELP_PREV_BUTTON               "CalendarToolBar"
51 #define CALENDAR_HELP_NEXT_BUTTON               "CalendarToolBar"
52 #define CALENDAR_HELP_TODAY_BUTTON              "CalendarToolBar"
53 #define CALENDAR_HELP_DAY_BUTTON                "CalendarToolBar"
54 #define CALENDAR_HELP_WEEK_BUTTON               "CalendarToolBar"
55 #define CALENDAR_HELP_MONTH_BUTTON              "CalendarToolBar"
56 #define CALENDAR_HELP_YEAR_BUTTON               "CalendarToolBar"
57 #define CALENDAR_HELP_MONTH_WINDOW              "CalendarMonthWindow"
58 #define CALENDAR_HELP_WEEK_WINDOW               "CalendarWeekWindow"
59 #define CALENDAR_HELP_DAY_WINDOW                "CalendarDayWindow"
60 #define CALENDAR_HELP_YEAR_WINDOW               "CalendarYearWindow"
61
62 /* help buttons for popups */
63 #define OPTIONS_HELP_BUTTON             "CalendarOptionsCategoryDialog"
64 #define APPT_EDITOR_HELP_BUTTON         "CalendarApptEditorDialog"
65 #define TODO_EDITOR_HELP_BUTTON         "CalendarToDoEditorDialog"
66 #define FIND_HELP_BUTTON                "CalendarFindDialog"
67 #define GOTO_HELP_BUTTON                "CalendarGotoDateDialog"
68 #define SHOW_OTHER_CAL_HELP_BUTTON      "CalendarShowOtherCalendarDialog"
69 #define COMPARE_CALS_HELP_BUTTON        "CalendarCompareCalsDialog"
70 #define MENU_EDITOR_HELP_BUTTON         "CalendarMenuEditorDialog"
71 #define GROUP_APPT_EDITOR_HELP_BUTTON   "CalendarGroupApptEditorDialog"
72 #define APPT_LIST_HELP_BUTTON           "CalendarApptListDialog"
73 #define TODO_LIST_HELP_BUTTON           "CalendarTodoListDialog"
74 #define PRINT_HELP_BUTTON               "CalendarPrintDialog"
75 #define TIMEZONE_HELP_BUTTON            "CalendarTimeZoneDialog"
76
77 /* help buttons for popups */
78 #define CMSD_ERROR_HELP                 "CalendarCmsdError"
79 #define CAL_LOCATION_ERROR_HELP         "CalendarLocationError"
80 #define DND_ERROR_HELP                  "CalendarDnDError"
81 #define RESELECT_ERROR_HELP             "CalendarReselectError"
82 #define DATE_ERROR_HELP                 "CalendarDateFieldError"
83 #define START_ERROR_HELP                "CalendarStartFieldError"
84 #define STOP_ERROR_HELP                 "CalendarStopFieldError"
85 #define MISSING_FIELD_ERROR_HELP        "CalendarMissingFieldError"
86 #define REPEAT_FOR_ERROR_HELP           "CalendarRepeatForFieldError"
87 #define NO_TIME_ERROR_HELP              "CalendarNoTimeError"
88 #define BACK_END_ERROR_HELP             "CalendarBackEndError"
89 #define MEMORY_ALLOC_ERROR_HELP         "CalendarMemoryAllocError"
90 #define ACCESS_RIGHTS_ERROR_HELP        "CalendarAccessRightsError"
91 #define DESKSET_DEFAULTS_ERROR_HELP     "CalendarDesksetDefaultsError"
92 #define DURATION_ERROR_HELP             "CalendarDurationError"
93 #define ADVANCE_ERROR_HELP              "CalendarAdvanceError"
94
95 extern void     show_main_help  P((Widget, XtPointer, XtPointer));
96 extern void     help_cb         P((Widget, XtPointer, XtPointer));
97 extern void     help_view_cb    P((Widget, XtPointer, XtPointer));
98
99 #endif
100
101