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
|
/*
* 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 */
int joe_wcswidth(struct charmap *map,unsigned char *s, int 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. */
int break_height(struct charmap *map,unsigned char **src,int *src_len,int wid,int n)
{
unsigned char *s = *src;
int len = *src_len;
int h = 1; /* Number of lines */
int col = 0; /* Current column */
int x = 0; /* Offset into string */
int start_of_line = 0; /* Start of most recent line */
while (x != len) {
int space = 0;
int word = 0;
int start = x;
int 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(QW *qw)
{
int y;
W *w = qw->parent;
/* Generate prompt */
for (y = 0; y != w->h; ++y) {
unsigned char *s = qw->prompt;
int 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(QW *qw)
{
int y;
W *w = qw->parent;
/* Set cursor position */
if (w->win->watom->follow && w->win->object)
w->win->watom->follow(w->win->object);
if (w->win->watom->disp && w->win->object)
w->win->watom->disp(w->win->object, 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) {
unsigned char *s = qw->prompt;
int 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(QW *qw, int c)
{
W *win;
W *w = qw->parent;
int *notify = w->notify;
int (*func) ();
void *object = qw->object;
if (locale_map->type) {
c = utf8_decode(&qw_sm, 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->object, c, object, notify);
return -1;
}
static int abortqw(QW *qw)
{
W *win = qw->parent->win;
void *object = qw->object;
int (*abrt) () = qw->abrt;
vsrm(qw->prompt);
joe_free(qw);
if (abrt)
return abrt(win->object, object);
else
return -1;
}
static WATOM watomqw = {
USTR "query",
dispqw,
NULL,
abortqw,
NULL,
utypeqw,
NULL,
NULL,
NULL,
NULL,
TYPEQW
};
static WATOM watqwn = {
USTR "querya",
dispqwn,
NULL,
abortqw,
NULL,
utypeqw,
NULL,
NULL,
NULL,
NULL,
TYPEQW
};
static WATOM watqwsr = {
USTR "querysr",
dispqwn,
NULL,
abortqw,
NULL,
utypeqw,
NULL,
NULL,
NULL,
NULL,
TYPEQW
};
/* Create a query window */
QW *mkqw(W *w, unsigned char *prompt, int len, int (*func) (/* ??? */), int (*abrt) (/* ??? */), void *object, int *notify)
{
W *new;
QW *qw;
unsigned char *s = prompt;
int l = len;
int h = break_height(locale_map, &s, &l, w->w, -1);
new = wcreate(w->t, &watomqw, w, w, w->main, h, NULL, notify);
if (!new) {
if (notify)
*notify = 1;
return NULL;
}
wfit(new->t);
new->object = (void *) (qw = (QW *) joe_malloc(sizeof(QW)));
qw->parent = new;
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 = new;
return qw;
}
/* Same as above, but cursor is left in original window */
/* For Ctrl-Meta thing */
QW *mkqwna(W *w, unsigned char *prompt, int len, int (*func) (/* ??? */), int (*abrt) (/* ??? */), void *object, int *notify)
{
W *new;
QW *qw;
unsigned char *s = prompt;
int l = len;
int h = break_height(locale_map, &s, &l, w->w, -1);
new = wcreate(w->t, &watqwn, w, w, w->main, h, NULL, notify);
if (!new) {
if (notify)
*notify = 1;
return NULL;
}
wfit(new->t);
new->object = (void *) (qw = (QW *) joe_malloc(sizeof(QW)));
qw->parent = new;
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 = new;
return qw;
}
/* Same as above, but cursor is left in original window */
/* For search and replace thing */
QW *mkqwnsr(W *w, unsigned char *prompt, int len, int (*func) (/* ??? */), int (*abrt) (/* ??? */), void *object, int *notify)
{
W *new;
QW *qw;
unsigned char *s = prompt;
int l = len;
int h = break_height(locale_map, &s, &l, w->w, -1);
new = wcreate(w->t, &watqwsr, w, w, w->main, h, NULL, notify);
if (!new) {
if (notify)
*notify = 1;
return NULL;
}
wfit(new->t);
new->object = (void *) (qw = (QW *) joe_malloc(sizeof(QW)));
qw->parent = new;
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 = new;
return qw;
}
|