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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
/*
* print help popup on a particular topic. Help topics are identified by
* a short string that is looked up in the help file. The help file contains
* a list of button help entries; each consisting of a line "%% topic"
* followed by help text lines. Leading blanks in text lines are ignored.
* Lines beginning with '#' are ignored.
*
* To add a help text to a widget, call
* XtAddCallback(widget, XmNhelpCallback, help_callback, "topic")
* and add "%%n topic" and the help text to the help file (n is a number
* used for extracting a user's manual, it is not used by the plan program).
*
* help_callback(parent, topic) Print help for a topic, usually for
* button <parent>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#ifndef NEWSOS4
#ifndef STDLIBMALLOC
#include <malloc.h>
#endif
#endif
#include <Xm/Xm.h>
#include <Xm/DialogS.h>
#include <Xm/Form.h>
#include <Xm/Frame.h>
#include <Xm/LabelP.h>
#include <Xm/LabelG.h>
#include <Xm/PushBP.h>
#include <Xm/PushBG.h>
#include <Xm/ToggleB.h>
#include <Xm/Text.h>
#include <Xm/Protocols.h>
#include <X11/cursorfont.h>
#include "cal.h"
static void done_callback (Widget, int, XmToggleButtonCallbackStruct *);
static void context_callback (Widget, int, XmToggleButtonCallbackStruct *);
static char *get_text (char *);
extern Display *display; /* everybody uses the same server */
extern Widget toplevel; /* top-level shell for icon name */
extern XFontStruct *font[NFONTS]; /* fonts: FONT_* */
extern Pixel color[NCOLS]; /* colors: COL_* */
extern struct config config; /* global configuration data */
static BOOL have_shell; /* message popup exists if TRUE */
static Widget shell; /* popup menu shell */
/*
* destroy the help popup. Remove it from the screen, and destroy its widgets.
*/
void destroy_help_popup(void)
{
if (have_shell) {
XtPopdown(shell);
XTDESTROYWIDGET(shell);
have_shell = FALSE;
}
}
/*
* look up the help text for <topic> and create a window containing the text.
*/
/*ARGSUSED*/
void help_callback(
Widget parent,
char *topic)
{
static BOOL have_fontlist;
static XmFontList fontlist;
static Widget text_w;
Widget form, w;
Atom closewindow;
char *message;
Arg args[20];
int n;
int nlines = 1;
char *p;
if (!(message = get_text(topic)))
return;
if (have_shell) {
XmTextSetString(text_w, message);
XtPopup(shell, XtGrabNone);
return;
}
if (!have_fontlist++)
fontlist = XmFontListCreate(font[FONT_HELP], "cset");
for (nlines=0, p=message; *p; p++)
nlines += *p == '\n';
if (nlines > 30)
nlines = 30;
n = 0;
XtSetArg(args[n], XmNdeleteResponse, XmDO_NOTHING); n++;
XtSetArg(args[n], XmNiconic, False); n++;
shell = XtCreatePopupShell(_("Help"), applicationShellWidgetClass,
toplevel, args, n);
# ifdef EDITRES
XtAddEventHandler(shell, (EventMask)0, TRUE,
_XEditResCheckMessages, NULL);
# endif
set_icon(shell, 1);
form = XtCreateManagedWidget("helpform", xmFormWidgetClass,
shell, NULL, 0);
XtAddCallback(form, XmNhelpCallback, (XtCallbackProc)
help_callback, (XtPointer)"help");
/*-- buttons --*/
n = 0;
XtSetArg(args[n], XmNbottomAttachment, XmATTACH_FORM); n++;
XtSetArg(args[n], XmNbottomOffset, 8); n++;
XtSetArg(args[n], XmNrightAttachment, XmATTACH_FORM); n++;
XtSetArg(args[n], XmNrightOffset, 8); n++;
XtSetArg(args[n], XmNwidth, 80); n++;
w = XtCreateManagedWidget(_("Dismiss"), xmPushButtonWidgetClass,
form, args, n);
XtAddCallback(w, XmNactivateCallback, (XtCallbackProc)
done_callback, (XtPointer)0);
XtAddCallback(w, XmNhelpCallback, (XtCallbackProc)
help_callback, (XtPointer)"help_done");
n = 0;
XtSetArg(args[n], XmNbottomAttachment, XmATTACH_FORM); n++;
XtSetArg(args[n], XmNbottomOffset, 8); n++;
XtSetArg(args[n], XmNrightAttachment, XmATTACH_WIDGET); n++;
XtSetArg(args[n], XmNrightWidget, w); n++;
XtSetArg(args[n], XmNrightOffset, 8); n++;
XtSetArg(args[n], XmNwidth, 80); n++;
w = XtCreateManagedWidget(_("Context"), xmPushButtonWidgetClass,
form, args, n);
XtAddCallback(w, XmNactivateCallback, (XtCallbackProc)
context_callback, (XtPointer)0);
XtAddCallback(w, XmNhelpCallback, (XtCallbackProc)
help_callback, (XtPointer)"help");
/*-- text --*/
n = 0;
XtSetArg(args[n], XmNtopAttachment, XmATTACH_FORM); n++;
XtSetArg(args[n], XmNtopOffset, 8); n++;
XtSetArg(args[n], XmNbottomAttachment, XmATTACH_WIDGET); n++;
XtSetArg(args[n], XmNbottomWidget, w); n++;
XtSetArg(args[n], XmNbottomOffset, 16); n++;
XtSetArg(args[n], XmNleftAttachment, XmATTACH_FORM); n++;
XtSetArg(args[n], XmNleftOffset, 8); n++;
XtSetArg(args[n], XmNrightAttachment, XmATTACH_FORM); n++;
XtSetArg(args[n], XmNrightOffset, 8); n++;
XtSetArg(args[n], XmNhighlightThickness,0); n++;
XtSetArg(args[n], XmNeditable, False); n++;
XtSetArg(args[n], XmNeditMode, XmMULTI_LINE_EDIT); n++;
XtSetArg(args[n], XmNcolumns, 60); n++;
XtSetArg(args[n], XmNrows, nlines+1); n++;
XtSetArg(args[n], XmNfontList, fontlist); n++;
XtSetArg(args[n], XmNscrollVertical, True); n++;
XtSetArg(args[n], XmNpendingDelete, False); n++;
text_w = w = XmCreateScrolledText(form, "text", args, n);
XmTextSetString(w, message);
XtVaSetValues(w, XmNbackground, color[COL_CALBACK], NULL);
XtVaSetValues(w, XmNforeground, color[COL_STD], NULL);
XtManageChild(w);
XtAddCallback(w, XmNhelpCallback, (XtCallbackProc)
help_callback, (XtPointer)"help");
XtPopup(shell, XtGrabNone);
closewindow = XmInternAtom(display, "WM_DELETE_WINDOW", False);
XmAddWMProtocolCallback(shell, closewindow, (XtCallbackProc)
done_callback, (XtPointer)shell);
have_shell = TRUE;
free(message);
}
/*ARGSUSED*/
static void done_callback(
Widget widget,
int item,
XmToggleButtonCallbackStruct *data)
{
destroy_help_popup();
}
/*ARGSUSED*/
static void context_callback(
Widget widget,
int item,
XmToggleButtonCallbackStruct *data)
{
Widget w;
Cursor cursor = XCreateFontCursor(display, XC_question_arrow);
if (w = XmTrackingLocate(shell, cursor, False)) {
data->reason = XmCR_HELP;
XtCallCallbacks(w, XmNhelpCallback, &data);
}
XFreeCursor(display, cursor);
}
/*ARGSUSED*/
static char *get_text(
char *topic)
{
FILE *fp; /* help file */
char file[1024]; /* help file name */
char line[1024]; /* line buffer (and filename)*/
char *text; /* text buffer */
int textsize; /* size of text buffer */
int textlen = 0; /* # of chars in text buffer */
int n; /* for stripping trailing \n */
register char *p;
if (!(text = (char *)malloc(textsize = 4096)))
return(0);
*text = 0;
if (config.language)
sprintf(file, "%.767s.%.255s", HELP_FN, config.language);
if (!(config.language &&
find_file(line, file, FALSE) && (fp = fopen(line, "r"))) &&
!(find_file(line, HELP_FN, FALSE) && (fp = fopen(line, "r")))) {
sprintf(text, _("Sorry, no help available,\n%s not found"),
HELP_FN);
return(text);
}
for (;;) { /* find topic */
if (!fgets(line, 1024, fp)) {
strcpy(text, _("Sorry, no help available"));
return(text);
}
if (line[0] != '%' || line[1] != '%')
continue;
line[strlen(line)-1] = 0; /* strip \n */
for (p=line+2; *p >= '0' && *p <= '9'; p++);
for (; *p == ' ' || *p == '\t'; p++);
if (*p && *p != '\n' && !strcmp(p, topic))
break;
}
for (;;) { /* read text */
if (!fgets(line, 1024, fp))
break;
if (line[0] == '#')
continue;
if (line[0] == '%' && line[1] == '%') {
fclose(fp);
return(text);
}
p = line[0] == '\t' ? line+1 : line;
if (textlen + strlen(p) > textsize)
if (!(text = (char *)realloc(text, textsize += 4096)))
break;
strcat(text, p);
textlen += strlen(p);
}
for (n=strlen(text); n && text[n-1] == '\n'; n--)
text[n-1] = 0;
fclose(fp);
return(text);
}
|