Searched refs:frow (Results 1 – 5 of 5) sorted by relevance
/illumos-gate/usr/src/lib/libeti/form/common/ |
H A D | chg_field.c | 109 int row = f->frow; in left() 114 while (f->frow != row); in left() 123 int row = f->frow; in right() 128 while (f->frow != row); in right() 137 int row = f->frow; in up() 143 while (f->frow == row && f->fcol != col); in up() 145 if (f->frow != row) { in up() 146 row = f->frow; in up() 148 while (f->frow == row && f->fcol > col) in up() 151 if (f->frow != row) in up() [all …]
|
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() 162 f->frow = frow; 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() 203 f->frow = frow; 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() 251 f->frow = frow; in link_field() 312 field_info(FIELD *f, int *rows, int *cols, int *frow, int *fcol, in field_info() argument [all …]
|
H A D | form.c | 79 int frow, fcol; in insert() local 84 frow = f->frow; in insert() 87 while ((p->frow < frow) || in insert() 88 (p->frow == frow && p->fcol < fcol)) { in insert() 141 int ymax = f->frow + f->rows; in merge()
|
H A D | utility.c | 158 row = c->frow; in _pos_form_cursor() 161 row = c -> frow + Y(f) - T(f); in _pos_form_cursor() 170 (void) wmove(Sub(f), c -> frow, c -> fcol); in _pos_form_cursor() 196 (void) copywin(w, Sub(f), 0, B(f), c->frow, in _update_current() 197 c->fcol, c->frow, c->fcol + c->cols - 1, in _update_current() 228 c -> frow + ys - T(f), c -> fcol, in _update_current() 229 c -> frow + ye - T(f) - 1, in _update_current() 312 f -> frow, f -> fcol); in display_field() 338 f -> frow, f -> fcol); in erase_field() 406 (void) copywin(w, Sub(p), 0, 0, f -> frow, in _sync_attrs() [all …]
|
/illumos-gate/usr/src/lib/libeti/form/inc/ |
H A D | form.h | 78 int frow; /* first row */ member
|