Searched refs:fcol (Results 1 – 5 of 5) sorted by relevance
/illumos-gate/usr/src/lib/libeti/form/common/ |
H A D | field.c | 144 new_field(int rows, int cols, int frow, int fcol, int nrow, int nbuf) in new_field() argument 156 if (rows > 0 && cols > 0 && frow >= 0 && fcol >= 0 && nrow >= 0 && in new_field() 163 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() 312 field_info(FIELD *f, int *rows, int *cols, int *frow, int *fcol, in field_info() argument [all …]
|
H A D | chg_field.c | 138 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 D | utility.c | 159 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 D | form.c | 79 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 D | form.h | 79 int fcol; /* first col */ member
|