2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-01-21 23:30:43 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2002-01-21 23:30:43 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
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)
|
2003-01-24 18:33:46 +03:00
|
|
|
# define _BOOL_DEFINED
|
|
|
|
# include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
|
2014-11-18 13:40:05 +03:00
|
|
|
#include <form.h>
|
|
|
|
|
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
|