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
|
|
|
|
2007-08-27 17:01:14 +04:00
|
|
|
#include <cmFormConfigure.h>
|
|
|
|
|
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>
|
|
|
|
# define _XOPEN_SOURCE_EXTENDED
|
|
|
|
# include <curses.h>
|
|
|
|
# include <form.h>
|
|
|
|
# undef _XOPEN_SOURCE_EXTENDED
|
2001-11-10 00:05:33 +03:00
|
|
|
#else
|
2007-08-27 17:01:14 +04:00
|
|
|
/* figure out which curses.h to include */
|
|
|
|
# if defined(CURSES_HAVE_NCURSES_H)
|
|
|
|
# include <ncurses.h>
|
|
|
|
# elif defined(CURSES_HAVE_NCURSES_NCURSES_H)
|
|
|
|
# include <ncurses/ncurses.h>
|
|
|
|
# elif defined(CURSES_HAVE_NCURSES_CURSES_H)
|
|
|
|
# include <ncurses/curses.h>
|
|
|
|
# else
|
|
|
|
# include <curses.h>
|
|
|
|
# endif
|
|
|
|
|
2003-01-24 18:33:46 +03:00
|
|
|
# include <form.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// This is a hack to prevent warnings about these functions being
|
|
|
|
// declared but not referenced.
|
|
|
|
#if defined(__sgi) && !defined(__GNUC__)
|
2003-02-03 06:32:00 +03:00
|
|
|
class cmCursesStandardIncludesHack
|
2003-01-29 22:20:05 +03:00
|
|
|
{
|
2003-02-03 06:32:00 +03:00
|
|
|
public:
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
Ref1 = sizeof(cfgetospeed(0)),
|
|
|
|
Ref2 = sizeof(cfgetispeed(0)),
|
|
|
|
Ref3 = sizeof(tcgetattr(0, 0)),
|
|
|
|
Ref4 = sizeof(tcsetattr(0, 0, 0)),
|
|
|
|
Ref5 = sizeof(cfsetospeed(0,0)),
|
|
|
|
Ref6 = sizeof(cfsetispeed(0,0))
|
|
|
|
};
|
2003-01-29 22:20:05 +03:00
|
|
|
};
|
2001-11-10 00:05:33 +03:00
|
|
|
#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
|