1 /****************************************************************************
2 * Copyright (c) 1998 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 <juergen.pfeifer@gmx.net> 1995,1997 *
31 ****************************************************************************/
33 #include "form.priv.h"
35 MODULE_ID("$Id: frm_data.c,v 1.3 2002/06/18 20:30:00 king Exp $")
37 extern int winnstr(WINDOW
*, char *, int);
39 /*---------------------------------------------------------------------------
41 | Function : bool data_behind(const FORM *form)
43 | Description : Check for off-screen data behind. This is nearly trivial
44 | becose the begin of a field is fixed.
46 | Return Values : TRUE - there are off-screen data behind
47 | FALSE - there are no off-screen data behind
48 +--------------------------------------------------------------------------*/
49 bool data_behind(const FORM
*form
)
53 if (form
&& (form
->status
& _POSTED
) && form
->current
)
57 field
= form
->current
;
58 if (!Single_Line_Field(field
))
60 result
= (form
->toprow
==0) ? FALSE
: TRUE
;
64 result
= (form
->begincol
==0) ? FALSE
: TRUE
;
70 /*---------------------------------------------------------------------------
72 | Function : static char * After_Last_Non_Pad_Position(
77 | Description : Find the last position in the buffer that doesn't
78 | contain a padding character.
80 | Return Values : The pointer to this position
81 +--------------------------------------------------------------------------*/
83 static char * After_Last_Non_Pad_Position(char *buffer
, int len
, int pad
)
85 char *end
= buffer
+ len
;
87 assert(buffer
&& len
>=0);
88 while ( (buffer
< end
) && (*(end
-1)==pad
) )
94 #define SMALL_BUFFER_SIZE (80)
96 /*---------------------------------------------------------------------------
98 | Function : bool data_ahead(const FORM *form)
100 | Description : Check for off-screen data ahead. This is more difficult
101 | because a dynamic field has a variable end.
103 | Return Values : TRUE - there are off-screen data ahead
104 | FALSE - there are no off-screen data ahead
105 +--------------------------------------------------------------------------*/
106 bool data_ahead(const FORM
*form
)
110 if (form
&& (form
->status
& _POSTED
) && form
->current
)
112 static char buffer
[SMALL_BUFFER_SIZE
+ 1];
115 bool cursor_moved
= FALSE
;
120 field
= form
->current
;
121 assert(form
->w
!= 0);
123 large_buffer
= (field
->cols
> SMALL_BUFFER_SIZE
);
125 bp
= (char *)malloc((size_t)(field
->cols
) + 1);
131 if (Single_Line_Field(field
))
135 pos
= form
->begincol
+ field
->cols
;
136 while (pos
< field
->dcols
)
138 check_len
= field
->dcols
- pos
;
139 if ( check_len
>= field
->cols
)
140 check_len
= field
->cols
;
142 wmove(form
->w
,0,pos
);
143 winnstr(form
->w
,bp
,check_len
);
145 After_Last_Non_Pad_Position(bp
,check_len
,field
->pad
);
146 if (found_content
==bp
)
157 pos
= form
->toprow
+ field
->rows
;
158 while (pos
< field
->drows
)
161 wmove(form
->w
,pos
,0);
163 winnstr(form
->w
,bp
,field
->cols
);
165 After_Last_Non_Pad_Position(bp
,field
->cols
,field
->pad
);
166 if (found_content
!=bp
)
178 wmove(form
->w
,form
->currow
,form
->curcol
);
183 /* frm_data.c ends here */