Searched refs:frow (Results 1 – 6 of 6) sorted by relevance
/titanic_50/usr/src/lib/libeti/form/common/ |
H A D | chg_field.c | 111 int row = f->frow; in left() 116 while (f->frow != row); in left() 125 int row = f->frow; in right() 130 while (f->frow != row); in right() 139 int row = f->frow; in up() 145 while (f->frow == row && f->fcol != col); in up() 147 if (f->frow != row) { in up() 148 row = f->frow; in up() 150 while (f->frow == row && f->fcol > col) in up() 153 if (f->frow != row) in up() [all …]
|
H A D | field.c | 142 new_field(int rows, int cols, int frow, int fcol, int nrow, int nbuf) in new_field() argument 154 if (rows > 0 && cols > 0 && frow >= 0 && fcol >= 0 && nrow >= 0 && in new_field() 160 f->frow = frow; in new_field() 189 dup_field(FIELD *field, int frow, int fcol) in dup_field() argument 198 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) { in dup_field() 201 f->frow = frow; in dup_field() 238 link_field(FIELD *field, int frow, int fcol) in link_field() argument 246 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) { in link_field() 249 f->frow = frow; in link_field() 310 field_info(FIELD *f, int *rows, int *cols, int *frow, int *fcol, in field_info() argument [all …]
|
H A D | form.c | 81 int frow, fcol; in insert() local 86 frow = f->frow; in insert() 89 while ((p->frow < frow) || in insert() 90 (p->frow == frow && p->fcol < fcol)) { in insert() 143 int ymax = f->frow + f->rows; in merge()
|
H A D | llib-lform | 78 new_field(rows, cols, frow, fcol, nrow, nbuf) 81 int frow; 88 dup_field(field, frow, fcol) 90 int frow; 95 link_field(field, frow, fcol) 97 int frow; 107 field_info(f, rows, cols, frow, fcol, nrow, nbuf) 111 int *frow; 132 move_field(f, frow, fcol) 134 int frow;
|
H A D | utility.c | 160 row = c->frow; in _pos_form_cursor() 163 row = c -> frow + Y(f) - T(f); in _pos_form_cursor() 172 (void) wmove(Sub(f), c -> frow, c -> fcol); in _pos_form_cursor() 198 (void) copywin(w, Sub(f), 0, B(f), c->frow, in _update_current() 199 c->fcol, c->frow, c->fcol + c->cols - 1, in _update_current() 230 c -> frow + ys - T(f), c -> fcol, in _update_current() 231 c -> frow + ye - T(f) - 1, in _update_current() 314 f -> frow, f -> fcol); in display_field() 340 f -> frow, f -> fcol); in erase_field() 408 (void) copywin(w, Sub(p), 0, 0, f -> frow, in _sync_attrs() [all …]
|
/titanic_50/usr/src/lib/libeti/form/inc/ |
H A D | form.h | 80 int frow; /* first row */ member
|