Menu

[1626c5]: / joe / help.c  Maximize  Restore  History

Download this file

347 lines (317 with data), 7.1 kB

  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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
/*
* Help system
* Copyright
* (C) 1992 Joseph H. Allen
* (C) 2001 Marek 'Marx' Grac
*
* This file is part of JOE (Joe's Own Editor)
*/
#include "types.h"
struct help {
char *text; /* help text with attributes */
int lines; /* number of lines */
struct help *prev; /* previous help screen */
struct help *next; /* nex help screen */
char *name; /* context name for context sensitive help */
};
#define NOT_ENOUGH_MEMORY -11
int bg_help; /* Background color for help */
struct help *help_actual = NULL; /* actual help screen */
struct help *help_ptr = NULL; /* build pointer */
/*
* Process help file
* Returns new line number
*/
int help_init(JFILE *fd,char *bf,int line)
{
char buf[1024]; /* input buffer */
struct help *tmp;
ptrdiff_t bfl; /* buffer length */
ptrdiff_t hlpsiz, hlpbsz; /* number of used/allocated bytes for tmp->text */
char *tempbuf;
if (bf[0] == '{') { /* start of help screen */
tmp = (struct help *) joe_malloc(SIZEOF(struct help));
tmp->text = NULL;
tmp->lines = 0;
hlpsiz = 0;
hlpbsz = 0;
tmp->name = vsncpy(NULL, 0, sz(bf + 1) - 1); /* -1 kill the \n */
while ((jfgets(buf, SIZEOF(buf), fd)) && (buf[0] != '}')) {
++line;
bfl = zlen(buf);
if (hlpsiz + bfl > hlpbsz) {
if (tmp->text) {
tempbuf = (char *)joe_realloc(tmp->text, hlpbsz + bfl + 1024);
tmp->text = tempbuf;
} else {
tmp->text = (char *)joe_malloc(bfl + 1024);
tmp->text[0] = 0;
}
hlpbsz += bfl + 1024;
}
mcpy(tmp->text + hlpsiz, buf, bfl);
hlpsiz += bfl;
++tmp->lines;
}
tmp->prev = help_ptr;
tmp->next = NULL;
if (help_ptr) {
help_ptr->next = tmp;
} else {
help_actual = tmp;
}
help_ptr = tmp;
if (buf[0] == '}') { /* set new help screen as actual one */
++line;
} else {
logerror_1(joe_gettext(_("\n%d: EOF before end of help text\n")), line);
}
}
return line;
}
/*
* Find context help - find help entry with the same name
*/
static struct help *find_context_help(const char *name)
{
struct help *tmp = help_actual;
while (tmp->prev != NULL) /* find the first help entry */
tmp = tmp->prev;
while (tmp != NULL && zcmp(tmp->name, name) != 0)
tmp = tmp->next;
return tmp;
}
int help_is_utf8;
/*
* Display help text
*/
void help_display(Screen *t)
{
const char *str;
int y, x, c, z;
int atr = BG_COLOR(bg_help);
if (help_actual) {
str = help_actual->text;
} else {
str = NULL;
}
for (y = skiptop; y != t->wind; ++y) {
if (t->t->updtab[y]) {
const char *start = str, *eol;
ptrdiff_t width=0;
ptrdiff_t nspans=0;
ptrdiff_t spanwidth;
ptrdiff_t spancount=0;
ptrdiff_t spanextra;
ptrdiff_t len;
eol = zchr(str, '\n');
/* First pass: count no. springs \| and determine minimum width */
while(*str && *str!='\n') {
if (*str == '\\') {
++str;
switch(*str) {
case 'i':
case 'I':
case 'u':
case 'U':
case 'd':
case 'D':
case 'b':
case 'B':
case 'f':
case 'F':
++str;
break;
case '|':
++str;
++nspans;
break;
case 0:
break;
default:
++str;
++width;
}
} else {
len = eol - str;
if (help_is_utf8)
c = utf8_decode_fwrd(&str, &len);
else {
c = *str++;
--len;
}
width += joe_wcwidth(!!locale_map->type, c);
}
}
str = start;
/* Now calculate span width */
if (width >= t->w || nspans==0) {
spanwidth = 0;
spanextra = nspans;
} else {
spanwidth = (t->w - width)/nspans;
spanextra = nspans - (t->w - width - nspans*spanwidth);
}
/* Second pass: display text */
for (x = 0; x != t->w; ++x) {
if (*str == '\n' || !*str) {
if (eraeol(t->t, x, y, BG_COLOR(bg_help))) {
return;
} else {
break;
}
} else {
if (*str == '\\') {
switch (*++str) {
case '|':
++str;
for (z=0;z!=spanwidth;++z)
outatr(locale_map,t->t,t->t->scrn+x+y*t->w+z,t->t->attr+x+y*t->w+z,x+z,y,' ',atr);
if (spancount++ >= spanextra) {
outatr(locale_map,t->t,t->t->scrn+x+y*t->w+z,t->t->attr+x+y*t->w+z,x+z,y,' ',atr);
++z;
}
x += z-1;
continue;
case 'i':
case 'I':
atr ^= INVERSE;
++str;
--x;
continue;
case 'u':
case 'U':
atr ^= UNDERLINE;
++str;
--x;
continue;
case 'd':
case 'D':
atr ^= DIM;
++str;
--x;
continue;
case 'b':
case 'B':
atr ^= BOLD;
++str;
--x;
continue;
case 'l':
case 'L':
atr ^= ITALIC;
++str;
--x;
continue;
case 'f':
case 'F':
atr ^= BLINK;
++str;
--x;
continue;
case 0:
--x;
continue;
}
}
len = eol - str;
if (help_is_utf8)
c = utf8_decode_fwrd(&str, &len);
else {
c = *str++;
--len;
}
outatr(locale_map,
t->t, t->t->scrn + x + y * t->w,
t->t->attr + x + y * t->w, x, y,
c, atr);
x += (joe_wcwidth(!!locale_map->type, c) - 1);
}
}
atr = BG_COLOR(bg_help);
t->t->updtab[y] = 0;
}
while (*str && *str != '\n')
++str;
if (*str == '\n')
++str;
}
}
/*
* Show help screen
*/
int help_on(Screen *t)
{
if (help_actual) {
t->wind = help_actual->lines + skiptop;
if ((t->h - t->wind) < FITHEIGHT) {
t->wind = t->h - FITHEIGHT;
}
if (t->wind < 0) {
t->wind = skiptop;
return -1;
}
wfit(t);
msetI(t->t->updtab + skiptop, 1, t->wind);
return 0;
} else {
return -1;
}
}
/*
* Hide help screen
*/
static void help_off(Screen *t)
{
t->wind = skiptop;
wfit(t);
}
/*
* Show/hide current help screen
*/
int u_help(W *w, int k)
{
struct help *new_help;
if (w->huh && (new_help = find_context_help(w->huh)) != NULL) {
if (help_actual != new_help) {
if (w->t->wind != skiptop)
help_off(w->t);
help_actual = new_help; /* prepare context help */
}
}
if (w->t->wind == skiptop) {
return help_on(w->t); /* help screen is hidden, so show the actual one */
} else {
help_off(w->t); /* hide actual help screen */
return 0;
}
}
/*
* Show next help screen (if it is possible)
*/
int u_help_next(W *w, int k)
{
if (help_actual && help_actual->next) { /* is there any next help screen? */
if (w->t->wind != skiptop) {
help_off(w->t); /* if help screen was visible, then hide it */
}
help_actual = help_actual->next; /* change to next help screen */
return help_on(w->t); /* show actual help screen */
} else {
return -1;
}
}
/*
* Show previous help screen (if it is possible)
*/
int u_help_prev(W *w, int k)
{
if (help_actual && help_actual->prev) { /* is there any previous help screen? */
if (w->t->wind != skiptop)
help_off(w->t); /* if help screen was visible, then hide it */
help_actual = help_actual->prev; /* change to previous help screen */
return help_on(w->t); /* show actual help screen */
} else {
return -1;
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.