Home
last modified time | relevance | path

Searched refs:fcol (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libeti/form/common/
H A Dfield.c163 f->fcol = fcol; in new_field()
191 dup_field(FIELD *field, int frow, int fcol) in dup_field() argument
200 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) { in dup_field()
204 f->fcol = fcol; in dup_field()
240 link_field(FIELD *field, int frow, int fcol) in link_field() argument
248 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) { in link_field()
252 f->fcol = fcol; in link_field()
329 *fcol = f->fcol; in field_info()
390 move_field(FIELD *f, int frow, int fcol) in move_field() argument
396 if (! f || frow < 0 || fcol < 0) in move_field()
[all …]
H A Dchg_field.c138 int col = f->fcol; in up()
143 while (f->frow == row && f->fcol != col); in up()
148 while (f->frow == row && f->fcol > col) in up()
162 int col = f->fcol; in down()
167 while (f->frow == row && f->fcol != col); in down()
172 while (f->frow == row && f->fcol < col) in down()
H A Dutility.c159 col = c->fcol + X(f) - B(f); in _pos_form_cursor()
162 col = c -> fcol + X(f); in _pos_form_cursor()
170 (void) wmove(Sub(f), c -> frow, c -> fcol); in _pos_form_cursor()
197 c->fcol, c->frow, c->fcol + c->cols - 1, in _update_current()
228 c -> frow + ys - T(f), c -> fcol, in _update_current()
230 c -> fcol + c -> cols - 1, FALSE); in _update_current()
312 f -> frow, f -> fcol); in display_field()
338 f -> frow, f -> fcol); in erase_field()
407 f -> fcol, f -> rows - 1, f -> cols - 1, in _sync_attrs()
528 c -> fcol); in _set_current_field()
H A Dform.c79 int frow, fcol; in insert() local
85 fcol = f->fcol; in insert()
88 (p->frow == frow && p->fcol < fcol)) { in insert()
140 int xmax = f->fcol + f->cols; in merge()
/illumos-gate/usr/src/lib/libeti/form/inc/
H A Dform.h79 int fcol; /* first col */ member