Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libeti/form/common/
H A Dfield.c142 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()
161 f->fcol = fcol; 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()
202 f->fcol = fcol; 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()
250 f->fcol = fcol; in link_field()
310 field_info(FIELD *f, int *rows, int *cols, int *frow, int *fcol, in field_info() argument
[all …]
H A Dchg_field.c140 int col = f->fcol; in up()
145 while (f->frow == row && f->fcol != col); in up()
150 while (f->frow == row && f->fcol > col) in up()
164 int col = f->fcol; in down()
169 while (f->frow == row && f->fcol != col); in down()
174 while (f->frow == row && f->fcol < col) in down()
H A Dllib-lform78 new_field(rows, cols, frow, fcol, nrow, nbuf)
82 int fcol;
88 dup_field(field, frow, fcol)
91 int fcol;
95 link_field(field, frow, fcol)
98 int fcol;
107 field_info(f, rows, cols, frow, fcol, nrow, nbuf)
112 int *fcol;
132 move_field(f, frow, fcol)
135 int fcol;
H A Dutility.c161 col = c->fcol + X(f) - B(f); in _pos_form_cursor()
164 col = c -> fcol + X(f); in _pos_form_cursor()
172 (void) wmove(Sub(f), c -> frow, c -> fcol); in _pos_form_cursor()
199 c->fcol, c->frow, c->fcol + c->cols - 1, in _update_current()
230 c -> frow + ys - T(f), c -> fcol, in _update_current()
232 c -> fcol + c -> cols - 1, FALSE); in _update_current()
314 f -> frow, f -> fcol); in display_field()
340 f -> frow, f -> fcol); in erase_field()
409 f -> fcol, f -> rows - 1, f -> cols - 1, in _sync_attrs()
530 c -> fcol); in _set_current_field()
H A Dform.c81 int frow, fcol; in insert() local
87 fcol = f->fcol; in insert()
90 (p->frow == frow && p->fcol < fcol)) { in insert()
142 int xmax = f->fcol + f->cols; in merge()
/titanic_41/usr/src/lib/libeti/form/inc/
H A Dform.h81 int fcol; /* first col */ member