Menu

[c4b27c]: / joe / qw.c  Maximize  Restore  History

Download this file

312 lines (283 with data), 6.6 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
/*
* Query windows
* Copyright
* (C) 1992 Joseph H. Allen
*
* This file is part of JOE (Joe's Own Editor)
*/
#include "types.h"
/* Return width of a string */
ptrdiff_t joe_wcswidth(struct charmap *map,const char *s, ptrdiff_t len)
{
if (!map->type) {
return len;
} else {
int width = 0;
while (len) {
int c = utf8_decode_fwrd(&s, &len);
if (c >= 0) {
width += joe_wcwidth(1, c);
} else
++width;
}
return width;
}
}
/* Calculate number of lines needed for a given prompt string and a given window width.
Also this finds the nth line and returns the position of the substring which is
that line. Set n to -1 if you just want the height. */
ptrdiff_t break_height(struct charmap *map,const char **src,ptrdiff_t *src_len,ptrdiff_t wid,ptrdiff_t n)
{
const char *s = *src;
ptrdiff_t len = *src_len;
ptrdiff_t h = 1; /* Number of lines */
ptrdiff_t col = 0; /* Current column */
ptrdiff_t x = 0; /* Offset into string */
ptrdiff_t start_of_line = 0; /* Start of most recent line */
while (x != len) {
ptrdiff_t space = 0;
ptrdiff_t word = 0;
ptrdiff_t start = x;
ptrdiff_t start_word;
while (x != len && s[x] == ' ') {
++space;
++x;
}
start_word = x;
while (x != len && s[x] != ' ') {
++x;
}
word = joe_wcswidth(map, s + start_word, x - start_word);
if (col + space + word < wid || !col) {
/* Leading space and word fit on current line */
col += space + word;
} else {
/* They don't fit, start a new line */
if (!n--) {
x = start;
break;
}
++h;
col = word;
start_of_line = start_word;
}
}
*src = s + start_of_line;
*src_len = x - start_of_line;
return h;
}
static void dispqw(W *w, int flg)
{
QW *qw = (QW *)w->object;
ptrdiff_t y;
/* Generate prompt */
for (y = 0; y != w->h; ++y) {
const char *s = qw->prompt;
ptrdiff_t l = qw->promptlen;
break_height(locale_map, &s, &l, qw->org_w, y);
w->t->t->updtab[w->y + y] = 1;
genfield(w->t->t,
w->t->t->scrn + (w->y + y) * w->t->t->co + w->x,
w->t->t->attr + (w->y + y) * w->t->t->co + w->x,
w->x,
w->y + y,
0,
s,
l,
BG_COLOR(bg_prompt),
w->w - w->x,
1,NULL);
w->cury = y;
w->curx = w->x + joe_wcswidth(locale_map, s, l);
}
}
static void dispqwn(W *w, int flg)
{
QW *qw = (QW *)w->object;
ptrdiff_t y;
/* Set cursor position */
if (w->win->watom->follow && w->win->object)
w->win->watom->follow(w->win);
if (w->win->watom->disp && w->win->object)
w->win->watom->disp(w->win, 1);
w->curx = w->win->curx;
w->cury = w->win->cury + w->win->y - w->y;
/* Generate prompt */
for (y = 0; y != w->h; ++y) {
const char *s = qw->prompt;
ptrdiff_t l = qw->promptlen;
break_height(locale_map, &s, &l, qw->org_w, y);
w->t->t->updtab[w->y + y] = 1;
genfield(w->t->t,
w->t->t->scrn + (w->y + y) * w->t->t->co + w->x,
w->t->t->attr + (w->y + y) * w->t->t->co + w->x,
w->x,
w->y + y,
0,
s,
l,
BG_COLOR(bg_prompt),
w->w - w->x,
1,NULL);
}
}
/* When user hits a key in a query window */
struct utf8_sm qw_sm;
static int utypeqw(W *w, int c)
{
QW *qw = (QW *)w->object;
W *win;
int *notify = w->notify;
int (*func)(W *w, int k, void *object, int *notify);
void *object = qw->object;
if (locale_map->type) {
c = utf8_decode(&qw_sm, TO_CHAR_OK(c));
if (c < 0)
return 0;
}
win = qw->parent->win;
func = qw->func;
vsrm(qw->prompt);
joe_free(qw);
w->object = NULL;
w->notify = NULL;
wabort(w);
if (func)
return func(win, c, object, notify);
return -1;
}
static int abortqw(W *w)
{
QW *qw = (QW *)w->object;
W *win = w->win;
void *object = qw->object;
int (*abrt)(W *w, void *object) = qw->abrt;
vsrm(qw->prompt);
joe_free(qw);
if (abrt)
return abrt(win, object);
else
return -1;
}
static WATOM watomqw = {
"query",
dispqw,
NULL,
abortqw,
NULL,
utypeqw,
NULL,
NULL,
NULL,
NULL,
TYPEQW
};
static WATOM watqwn = {
"querya",
dispqwn,
NULL,
abortqw,
NULL,
utypeqw,
NULL,
NULL,
NULL,
NULL,
TYPEQW
};
static WATOM watqwsr = {
"querysr",
dispqwn,
NULL,
abortqw,
NULL,
utypeqw,
NULL,
NULL,
NULL,
NULL,
TYPEQW
};
/* Create a query window */
QW *mkqw(W *w, const char *prompt, ptrdiff_t len, int (*func) (W *w, int k, void *object, int *notify), int (*abrt)(W *w, void *object), void *object, int *notify)
{
W *neww;
QW *qw;
const char *s = prompt;
ptrdiff_t l = len;
ptrdiff_t h = break_height(locale_map, &s, &l, w->w, -1);
neww = wcreate(w->t, &watomqw, w, w, w->main, h, NULL, notify);
if (!neww) {
if (notify)
*notify = 1;
return NULL;
}
wfit(neww->t);
neww->object = (void *) (qw = (QW *) joe_malloc(SIZEOF(QW)));
qw->parent = neww;
qw->prompt = vsncpy(NULL, 0, prompt, len);
qw->promptlen = len;
qw->org_w = w->w;
qw->org_h = h;
qw->func = func;
qw->abrt = abrt;
qw->object = object;
w->t->curwin = neww;
return qw;
}
/* Same as above, but cursor is left in original window */
/* For Ctrl-Meta thing */
QW *mkqwna(W *w, const char *prompt, ptrdiff_t len, int (*func) (W *w, int k, void *object, int *notify), int (*abrt)(W *w, void *object), void *object, int *notify)
{
W *neww;
QW *qw;
const char *s = prompt;
ptrdiff_t l = len;
ptrdiff_t h = break_height(locale_map, &s, &l, w->w, -1);
neww = wcreate(w->t, &watqwn, w, w, w->main, h, NULL, notify);
if (!neww) {
if (notify)
*notify = 1;
return NULL;
}
wfit(neww->t);
neww->object = (void *) (qw = (QW *) joe_malloc(SIZEOF(QW)));
qw->parent = neww;
qw->prompt = vsncpy(NULL, 0, prompt, len);
qw->promptlen = len;
qw->org_w = w->w;
qw->org_h = h;
qw->func = func;
qw->abrt = abrt;
qw->object = object;
w->t->curwin = neww;
return qw;
}
/* Same as above, but cursor is left in original window */
/* For search and replace thing */
QW *mkqwnsr(W *w, const char *prompt, ptrdiff_t len, int (*func) (W *w, int k, void *object, int *notify), int (*abrt) (W *w, void *object), void *object, int *notify)
{
W *neww;
QW *qw;
const char *s = prompt;
ptrdiff_t l = len;
ptrdiff_t h = break_height(locale_map, &s, &l, w->w, -1);
neww = wcreate(w->t, &watqwsr, w, w, w->main, h, NULL, notify);
if (!neww) {
if (notify)
*notify = 1;
return NULL;
}
wfit(neww->t);
neww->object = (void *) (qw = (QW *) joe_malloc(SIZEOF(QW)));
qw->parent = neww;
qw->prompt = vsncpy(NULL, 0, prompt, len);
qw->promptlen = len;
qw->org_w = w->w;
qw->org_h = h;
qw->func = func;
qw->abrt = abrt;
qw->object = object;
w->t->curwin = neww;
return qw;
}
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.