1 /****************************************************************************
2 * Copyright (c) 1998-2005,2010 Free Software Foundation, Inc. *
4 * Permission is hereby granted, free of charge, to any person obtaining a *
5 * copy of this software and associated documentation files (the *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
8 * distribute, distribute with modifications, sublicense, and/or sell *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * Except as contained in this notice, the name(s) of the above copyright *
24 * holders shall not be used in advertising or otherwise to promote the *
25 * sale, use or other dealings in this Software without prior written *
27 ****************************************************************************/
29 /****************************************************************************
30 * Author: Juergen Pfeifer, 1995,1997 *
31 ****************************************************************************/
33 #include "form.priv.h"
35 MODULE_ID("$Id: frm_data.c,v 1.15 2010/01/23 21:14:36 tom Exp $")
37 /*---------------------------------------------------------------------------
39 | Function : bool data_behind(const FORM *form)
41 | Description : Check for off-screen data behind. This is nearly trivial
42 | because the beginning of a field is fixed.
44 | Return Values : TRUE - there are off-screen data behind
45 | FALSE - there are no off-screen data behind
46 +--------------------------------------------------------------------------*/
48 data_behind(const FORM
*form
)
52 T((T_CALLED("data_behind(%p)"), (const void *)form
));
54 if (form
&& (form
->status
& _POSTED
) && form
->current
)
58 field
= form
->current
;
59 if (!Single_Line_Field(field
))
61 result
= (form
->toprow
== 0) ? FALSE
: TRUE
;
65 result
= (form
->begincol
== 0) ? FALSE
: TRUE
;
71 /*---------------------------------------------------------------------------
73 | Function : static char * Only_Padding(
78 | Description : Test if 'length' cells starting at the current position
79 | contain a padding character.
81 | Return Values : true if only padding cells are found
82 +--------------------------------------------------------------------------*/
83 NCURSES_INLINE
static bool
84 Only_Padding(WINDOW
*w
, int len
, int pad
)
91 for (j
= 0; j
< len
; ++j
)
93 if (wmove(w
, y
, x
+ j
) != ERR
)
96 if (win_wch(w
, &cell
) != ERR
)
98 if ((chtype
)CharOf(cell
) != ChCharOf(pad
)
99 || cell
.chars
[1] != 0)
107 if (ChCharOf(cell
) != ChCharOf(pad
))
116 /* if an error, return true: no non-padding text found */
120 /* no need to reset the cursor position; caller does this */
124 /*---------------------------------------------------------------------------
125 | Facility : libnform
126 | Function : bool data_ahead(const FORM *form)
128 | Description : Check for off-screen data ahead. This is more difficult
129 | because a dynamic field has a variable end.
131 | Return Values : TRUE - there are off-screen data ahead
132 | FALSE - there are no off-screen data ahead
133 +--------------------------------------------------------------------------*/
135 data_ahead(const FORM
*form
)
139 T((T_CALLED("data_ahead(%p)"), (const void *)form
));
141 if (form
&& (form
->status
& _POSTED
) && form
->current
)
144 bool cursor_moved
= FALSE
;
147 field
= form
->current
;
150 if (Single_Line_Field(field
))
154 pos
= form
->begincol
+ field
->cols
;
155 while (pos
< field
->dcols
)
157 check_len
= field
->dcols
- pos
;
158 if (check_len
>= field
->cols
)
159 check_len
= field
->cols
;
161 wmove(form
->w
, 0, pos
);
162 if (Only_Padding(form
->w
, check_len
, field
->pad
))
173 pos
= form
->toprow
+ field
->rows
;
174 while (pos
< field
->drows
)
177 wmove(form
->w
, pos
, 0);
179 if (!Only_Padding(form
->w
, field
->cols
, field
->pad
))
188 wmove(form
->w
, form
->currow
, form
->curcol
);
193 /* frm_data.c ends here */