Home
last modified time | relevance | path

Searched refs:begincol (Results 1 – 3 of 3) sorted by relevance

/src/contrib/ncurses/form/
H A Dfrm_data.c66 result = (form->begincol == 0) ? FALSE : TRUE; in FORM_EXPORT()
153 pos = form->begincol + field->cols; in data_ahead()
H A Dfrm_driver.c852 field->fcol + form->curcol - form->begincol); in _nc_Position_Form_Cursor()
899 if (form->curcol < form->begincol) in _nc_Refresh_Current_Field()
900 form->begincol = form->curcol; in _nc_Refresh_Current_Field()
903 if (form->curcol >= (form->begincol + field->cols)) in _nc_Refresh_Current_Field()
904 form->begincol = form->curcol - field->cols in _nc_Refresh_Current_Field()
911 form->begincol, in _nc_Refresh_Current_Field()
1211 form->currow = form->curcol = form->toprow = form->begincol = 0; in Synchronize_Field()
1563 form->currow = form->curcol = form->toprow = form->begincol = 0; in _nc_Set_Current_Field()
2198 if ((cols_to_go + form->begincol) > (field->dcols - field->cols)) in HSC_Generic()
2199 cols_to_go = field->dcols - field->cols - form->begincol; in HSC_Generic()
[all …]
H A Dform.h143 int begincol; /* in horiz. scrollable field */ member