blob: ae7b12b685c3699d5ea29c91ed5be9b3a069eb7c [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*/
10#ifdef _BSD_WCHAR_T_DEFINED_
11#define _WCHAR_T
12#endif
13#endif
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*/
20#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
Jack Jansend00c13a2003-02-28 12:51:18 +000042#ifdef HAVE_NCURSES_H
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000043#include <ncurses.h>
44#else
45#include <curses.h>
Martin v. Löwis69532332001-10-13 09:12:41 +000046#ifdef HAVE_TERM_H
47/* for tigetstr, which is not declared in SysV curses */
48#include <term.h>
49#endif
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000050#endif
51
Martin v. Löwiseb9b1032001-10-24 17:10:49 +000052#ifdef HAVE_NCURSES_H
53/* configure was checking <curses.h>, but we will
54 use <ncurses.h>, which has all these features. */
55#ifndef WINDOW_HAS_FLAGS
56#define WINDOW_HAS_FLAGS 1
57#endif
58#ifndef MVWDELCH_IS_EXPRESSION
59#define MVWDELCH_IS_EXPRESSION 1
60#endif
61#endif
62
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000063#ifdef __cplusplus
64extern "C" {
65#endif
66
67#define PyCurses_API_pointers 4
68
69/* Type declarations */
70
71typedef struct {
72 PyObject_HEAD
73 WINDOW *win;
74} PyCursesWindowObject;
75
Christian Heimes90aa7642007-12-19 02:45:37 +000076#define PyCursesWindow_Check(v) (Py_TYPE(v) == &PyCursesWindow_Type)
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000077
Benjamin Petersonb173f782009-05-05 22:31:58 +000078#define PyCurses_CAPSULE_NAME "_curses._C_API"
79
80
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000081#ifdef CURSES_MODULE
82/* This section is used when compiling _cursesmodule.c */
83
84#else
85/* This section is used in modules that use the _cursesmodule API */
86
87static void **PyCurses_API;
88
89#define PyCursesWindow_Type (*(PyTypeObject *) PyCurses_API[0])
90#define PyCursesSetupTermCalled {if (! ((int (*)(void))PyCurses_API[1]) () ) return NULL;}
91#define PyCursesInitialised {if (! ((int (*)(void))PyCurses_API[2]) () ) return NULL;}
92#define PyCursesInitialisedColor {if (! ((int (*)(void))PyCurses_API[3]) () ) return NULL;}
93
94#define import_curses() \
Benjamin Petersonb173f782009-05-05 22:31:58 +000095 PyCurses_API = (void **)PyCapsule_Import(PyCurses_CAPSULE_NAME, 1);
96
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000097#endif
98
99/* general error messages */
100static char *catchall_ERR = "curses function returned ERR";
101static char *catchall_NULL = "curses function returned NULL";
102
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000103/* Function Prototype Macros - They are ugly but very, very useful. ;-)
104
105 X - function name
106 TYPE - parameter Type
107 ERGSTR - format string for construction of the return value
108 PARSESTR - format string for argument parsing
109 */
110
111#define NoArgNoReturnFunction(X) \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000112static PyObject *PyCurses_ ## X (PyObject *self) \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000113{ \
114 PyCursesInitialised \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000115 return PyCursesCheckERR(X(), # X); }
116
117#define NoArgOrFlagNoReturnFunction(X) \
118static PyObject *PyCurses_ ## X (PyObject *self, PyObject *args) \
119{ \
120 int flag = 0; \
121 PyCursesInitialised \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000122 switch(PyTuple_Size(args)) { \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000123 case 0: \
124 return PyCursesCheckERR(X(), # X); \
125 case 1: \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000126 if (!PyArg_ParseTuple(args, "i;True(1) or False(0)", &flag)) return NULL; \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000127 if (flag) return PyCursesCheckERR(X(), # X); \
128 else return PyCursesCheckERR(no ## X (), # X); \
129 default: \
130 PyErr_SetString(PyExc_TypeError, # X " requires 0 or 1 arguments"); \
131 return NULL; } }
132
133#define NoArgReturnIntFunction(X) \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000134static PyObject *PyCurses_ ## X (PyObject *self) \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000135{ \
136 PyCursesInitialised \
Christian Heimes217cfd12007-12-02 14:31:20 +0000137 return PyLong_FromLong((long) X()); }
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000138
139
140#define NoArgReturnStringFunction(X) \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000141static PyObject *PyCurses_ ## X (PyObject *self) \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000142{ \
143 PyCursesInitialised \
Christian Heimes72b710a2008-05-26 13:28:38 +0000144 return PyBytes_FromString(X()); }
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000145
146#define NoArgTrueFalseFunction(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 \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000150 if (X () == FALSE) { \
151 Py_INCREF(Py_False); \
152 return Py_False; \
153 } \
154 Py_INCREF(Py_True); \
155 return Py_True; }
156
157#define NoArgNoReturnVoidFunction(X) \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000158static PyObject *PyCurses_ ## X (PyObject *self) \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000159{ \
160 PyCursesInitialised \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000161 X(); \
162 Py_INCREF(Py_None); \
163 return Py_None; }
164
165#ifdef __cplusplus
166}
167#endif
168
169#endif /* !defined(Py_CURSES_H) */
170
171