blob: eb77e35d8be7567a0713521771749e5dfeb252e2 [file] [log] [blame]
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +00001
2#ifndef Py_CURSES_H
3#define Py_CURSES_H
4
Jack Jansen26897bf2002-11-22 16:12:57 +00005#ifdef __APPLE__
6/*
7** On Mac OS X 10.2 [n]curses.h and stdlib.h use different guards
8** against multiple definition of wchar_t.
9*/
Serhiy Storchakae0fc1af2017-10-31 16:12:35 +020010#ifdef _BSD_WCHAR_T_DEFINED_
Jack Jansen26897bf2002-11-22 16:12:57 +000011#define _WCHAR_T
12#endif
Mark Dickinson6b3f1ef2009-09-06 21:21:05 +000013#endif /* __APPLE__ */
Jack Jansend00c13a2003-02-28 12:51:18 +000014
Andrew MacIntyre1a901172003-06-11 12:26:08 +000015#ifdef __FreeBSD__
16/*
17** On FreeBSD, [n]curses.h and stdlib.h/wchar.h use different guards
18** against multiple definition of wchar_t and wint_t.
19*/
Serhiy Storchakae0fc1af2017-10-31 16:12:35 +020020#ifdef _XOPEN_SOURCE_EXTENDED
Andrew MacIntyree3454af2003-06-29 15:46:21 +000021#ifndef __FreeBSD_version
22#include <osreldate.h>
23#endif
24#if __FreeBSD_version >= 500000
25#ifndef __wchar_t
26#define __wchar_t
27#endif
28#ifndef __wint_t
29#define __wint_t
30#endif
31#else
Andrew MacIntyre1a901172003-06-11 12:26:08 +000032#ifndef _WCHAR_T
33#define _WCHAR_T
34#endif
35#ifndef _WINT_T
36#define _WINT_T
37#endif
38#endif
39#endif
Andrew MacIntyree3454af2003-06-29 15:46:21 +000040#endif
Andrew MacIntyre1a901172003-06-11 12:26:08 +000041
Miss Islington (bot)6ba0b582017-11-01 05:36:48 -070042#if !defined(HAVE_CURSES_IS_PAD) && defined(WINDOW_HAS_FLAGS)
43/* The following definition is necessary for ncurses 5.7; without it,
44 some of [n]curses.h set NCURSES_OPAQUE to 1, and then Python
45 can't get at the WINDOW flags field. */
46#define NCURSES_OPAQUE 0
47#endif
48
Jack Jansend00c13a2003-02-28 12:51:18 +000049#ifdef HAVE_NCURSES_H
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000050#include <ncurses.h>
51#else
52#include <curses.h>
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000053#endif
54
Martin v. Löwiseb9b1032001-10-24 17:10:49 +000055#ifdef HAVE_NCURSES_H
56/* configure was checking <curses.h>, but we will
Miss Islington (bot)6ba0b582017-11-01 05:36:48 -070057 use <ncurses.h>, which has some or all these features. */
58#if !defined(WINDOW_HAS_FLAGS) && !(NCURSES_OPAQUE+0)
Martin v. Löwiseb9b1032001-10-24 17:10:49 +000059#define WINDOW_HAS_FLAGS 1
60#endif
Miss Islington (bot)6ba0b582017-11-01 05:36:48 -070061#if !defined(HAVE_CURSES_IS_PAD) && NCURSES_VERSION_PATCH+0 >= 20090906
62#define HAVE_CURSES_IS_PAD 1
63#endif
Martin v. Löwiseb9b1032001-10-24 17:10:49 +000064#ifndef MVWDELCH_IS_EXPRESSION
65#define MVWDELCH_IS_EXPRESSION 1
66#endif
67#endif
68
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000069#ifdef __cplusplus
70extern "C" {
71#endif
72
73#define PyCurses_API_pointers 4
74
75/* Type declarations */
76
77typedef struct {
Serhiy Storchakae0fc1af2017-10-31 16:12:35 +020078 PyObject_HEAD
79 WINDOW *win;
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000080} PyCursesWindowObject;
81
Serhiy Storchakae0fc1af2017-10-31 16:12:35 +020082#define PyCursesWindow_Check(v) (Py_TYPE(v) == &PyCursesWindow_Type)
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000083
Larry Hastings402b73f2010-03-25 00:54:54 +000084#define PyCurses_CAPSULE_NAME "_curses._C_API"
85
86
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000087#ifdef CURSES_MODULE
88/* This section is used when compiling _cursesmodule.c */
89
90#else
91/* This section is used in modules that use the _cursesmodule API */
92
93static void **PyCurses_API;
94
95#define PyCursesWindow_Type (*(PyTypeObject *) PyCurses_API[0])
96#define PyCursesSetupTermCalled {if (! ((int (*)(void))PyCurses_API[1]) () ) return NULL;}
97#define PyCursesInitialised {if (! ((int (*)(void))PyCurses_API[2]) () ) return NULL;}
98#define PyCursesInitialisedColor {if (! ((int (*)(void))PyCurses_API[3]) () ) return NULL;}
99
100#define import_curses() \
Larry Hastings402b73f2010-03-25 00:54:54 +0000101 PyCurses_API = (void **)PyCapsule_Import(PyCurses_CAPSULE_NAME, 1);
102
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000103#endif
104
105/* general error messages */
106static char *catchall_ERR = "curses function returned ERR";
107static char *catchall_NULL = "curses function returned NULL";
108
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000109/* Function Prototype Macros - They are ugly but very, very useful. ;-)
110
111 X - function name
112 TYPE - parameter Type
113 ERGSTR - format string for construction of the return value
114 PARSESTR - format string for argument parsing
115 */
116
117#define NoArgNoReturnFunction(X) \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000118static PyObject *PyCurses_ ## X (PyObject *self) \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000119{ \
120 PyCursesInitialised \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000121 return PyCursesCheckERR(X(), # X); }
122
123#define NoArgOrFlagNoReturnFunction(X) \
124static PyObject *PyCurses_ ## X (PyObject *self, PyObject *args) \
125{ \
126 int flag = 0; \
127 PyCursesInitialised \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000128 switch(PyTuple_Size(args)) { \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000129 case 0: \
130 return PyCursesCheckERR(X(), # X); \
131 case 1: \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000132 if (!PyArg_ParseTuple(args, "i;True(1) or False(0)", &flag)) return NULL; \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000133 if (flag) return PyCursesCheckERR(X(), # X); \
134 else return PyCursesCheckERR(no ## X (), # X); \
135 default: \
136 PyErr_SetString(PyExc_TypeError, # X " requires 0 or 1 arguments"); \
137 return NULL; } }
138
139#define NoArgReturnIntFunction(X) \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000140static PyObject *PyCurses_ ## X (PyObject *self) \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000141{ \
142 PyCursesInitialised \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000143 return PyInt_FromLong((long) X()); }
144
145
146#define NoArgReturnStringFunction(X) \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000147static PyObject *PyCurses_ ## X (PyObject *self) \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000148{ \
149 PyCursesInitialised \
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000150 return PyString_FromString(X()); }
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000151
152#define NoArgTrueFalseFunction(X) \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000153static PyObject *PyCurses_ ## X (PyObject *self) \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000154{ \
155 PyCursesInitialised \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000156 if (X () == FALSE) { \
157 Py_INCREF(Py_False); \
158 return Py_False; \
159 } \
160 Py_INCREF(Py_True); \
161 return Py_True; }
162
163#define NoArgNoReturnVoidFunction(X) \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000164static PyObject *PyCurses_ ## X (PyObject *self) \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000165{ \
166 PyCursesInitialised \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000167 X(); \
168 Py_INCREF(Py_None); \
169 return Py_None; }
170
171#ifdef __cplusplus
172}
173#endif
174
175#endif /* !defined(Py_CURSES_H) */
176
177