summaryrefslogtreecommitdiffstats
path: root/Source/CursesDialog/form
diff options
context:
space:
mode:
authorCraig Scott <craig.scott@csiro.au>2011-01-03 17:15:41 (GMT)
committerBrad King <brad.king@kitware.com>2011-01-03 17:15:41 (GMT)
commit7d691cab9b479b154653f49057724a7707015828 (patch)
tree8de61719516046fac2bcfd695582d554af271b24 /Source/CursesDialog/form
parenta67fd7265978a3d8e0565671da651ddfdc6b6e98 (diff)
downloadCMake-7d691cab9b479b154653f49057724a7707015828.zip
CMake-7d691cab9b479b154653f49057724a7707015828.tar.gz
CMake-7d691cab9b479b154653f49057724a7707015828.tar.bz2
ccmake: Port for LSB 4.0 (#11648)
Use getmaxyx instead of getmax[xy]. Avoid using getattrs.
Diffstat (limited to 'Source/CursesDialog/form')
-rw-r--r--Source/CursesDialog/form/frm_driver.c16
-rw-r--r--Source/CursesDialog/form/frm_post.c4
2 files changed, 14 insertions, 6 deletions
diff --git a/Source/CursesDialog/form/frm_driver.c b/Source/CursesDialog/form/frm_driver.c
index 0b53b5a..519d66d 100644
--- a/Source/CursesDialog/form/frm_driver.c
+++ b/Source/CursesDialog/form/frm_driver.c
@@ -357,8 +357,7 @@ static void Buffer_To_Window(const FIELD * field, WINDOW * win)
assert(win && field);
- width = getmaxx(win);
- height = getmaxy(win);
+ getmaxyx(win, height, width);
for(row=0, pBuffer=field->buf;
row < height;
@@ -390,13 +389,13 @@ static void Window_To_Buffer(WINDOW * win, FIELD * field)
int pad;
int len = 0;
char *p;
- int row, height;
+ int row, height, width;
assert(win && field && field->buf );
pad = field->pad;
p = field->buf;
- height = getmaxy(win);
+ getmaxyx(win, height, width);
for(row=0; (row < height) && (row < field->drows); row++ )
{
@@ -856,6 +855,8 @@ static int Display_Or_Erase_Field(FIELD * field, bool bEraseFlag)
{
WINDOW *win;
WINDOW *fwin;
+ attr_t fwinAttrs;
+ short fwinPair;
if (!field)
return E_SYSTEM_ERROR;
@@ -871,7 +872,12 @@ static int Display_Or_Erase_Field(FIELD * field, bool bEraseFlag)
if (field->opts & O_VISIBLE)
Set_Field_Window_Attributes(field,win);
else
- wattrset(win,getattrs(fwin));
+ {
+ /* getattrs() would be handy, but it is not part of LSB 4.0 */
+ /* wattrset(win,getattrs(fwin)); */
+ wattr_get(fwin, &fwinAttrs, &fwinPair, 0);
+ wattr_set(win, fwinAttrs, fwinPair, 0);
+ }
werase(win);
}
diff --git a/Source/CursesDialog/form/frm_post.c b/Source/CursesDialog/form/frm_post.c
index 5ead942..924fe6a 100644
--- a/Source/CursesDialog/form/frm_post.c
+++ b/Source/CursesDialog/form/frm_post.c
@@ -51,6 +51,7 @@ int post_form(FORM * form)
WINDOW *formwin;
int err;
int page;
+ int height, width;
if (!form)
RETURN(E_BAD_ARGUMENT);
@@ -62,7 +63,8 @@ int post_form(FORM * form)
RETURN(E_NOT_CONNECTED);
formwin = Get_Form_Window(form);
- if ((form->cols > getmaxx(formwin)) || (form->rows > getmaxy(formwin)))
+ getmaxyx(formwin, height, width);
+ if ((form->cols > width) || (form->rows > height))
RETURN(E_NO_ROOM);
/* reset form->curpage to an invald value. This forces Set_Form_Page