Lines Matching defs:fcol
49 0, /* fcol */
142 new_field(int rows, int cols, int frow, int fcol, int nrow, int nbuf)
147 /* int fcol; first col relative to form origin */
154 if (rows > 0 && cols > 0 && frow >= 0 && fcol >= 0 && nrow >= 0 &&
161 f->fcol = fcol;
189 dup_field(FIELD *field, int frow, int fcol)
193 /* int fcol; first col relative to form origin */
198 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) {
202 f->fcol = fcol;
238 link_field(FIELD *field, int frow, int fcol)
242 /* int fcol; first col relative to form origin */
246 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) {
250 f->fcol = fcol;
310 field_info(FIELD *f, int *rows, int *cols, int *frow, int *fcol,
317 /* int *fcol; first col relative to form origin */
327 *fcol = f->fcol;
383 move_field(FIELD *f, int frow, int fcol)
387 /* int fcol; first col relative to form origin */
389 if (! f || frow < 0 || fcol < 0)
396 f->fcol = fcol;