2001-11-20 16:28:54 +03:00
|
|
|
#ifndef cmCursesStandardIncludes_h
|
|
|
|
#define cmCursesStandardIncludes_h
|
2001-11-07 23:57:10 +03:00
|
|
|
#if defined(__sun__) && defined(__GNUC__)
|
|
|
|
#define _MSE_INT_H
|
2001-11-07 23:01:59 +03:00
|
|
|
#endif
|
2001-11-07 23:57:10 +03:00
|
|
|
|
2001-11-10 00:05:33 +03:00
|
|
|
#if defined(__hpux)
|
|
|
|
#define _BOOL_DEFINED
|
|
|
|
#include <sys/time.h>
|
|
|
|
#define _XOPEN_SOURCE_EXTENDED
|
|
|
|
#include <curses.h>
|
|
|
|
#include <form.h>
|
|
|
|
#undef _XOPEN_SOURCE_EXTENDED
|
|
|
|
#else
|
|
|
|
#include <curses.h>
|
|
|
|
#include <form.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef getmaxyx
|
|
|
|
#define getmaxyx(w,y,x) ((y) = getmaxy(w), (x) = getmaxx(w))
|
|
|
|
#endif
|
|
|
|
|
2001-11-07 23:57:10 +03:00
|
|
|
|
2001-11-20 16:28:54 +03:00
|
|
|
// on some machines move erase and clear conflict with stl
|
|
|
|
// so remove them from the namespace
|
|
|
|
inline void curses_move(unsigned int x, unsigned int y)
|
|
|
|
{
|
|
|
|
move(x,y);
|
|
|
|
}
|
|
|
|
|
2001-11-30 19:34:13 +03:00
|
|
|
inline void curses_clear()
|
|
|
|
{
|
2001-12-04 19:20:24 +03:00
|
|
|
erase();
|
|
|
|
clearok(stdscr, TRUE);
|
2001-11-30 19:34:13 +03:00
|
|
|
}
|
|
|
|
|
2001-11-20 16:28:54 +03:00
|
|
|
#undef move
|
|
|
|
#undef erase
|
|
|
|
#undef clear
|
|
|
|
|
|
|
|
|
|
|
|
#endif // cmCursesStandardIncludes_h
|