blob: a891c42be653535940cde30f593c6594c137ee1a [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
Mark Dickinson5ea7d642009-09-06 21:24:55 +000013
14/* the following define is necessary for OS X 10.6; without it, the
15 Apple-supplied ncurses.h sets NCURSES_OPAQUE to 1, and then Python
16 can't get at the WINDOW flags field. */
17#define NCURSES_OPAQUE 0
18#endif /* __APPLE__ */
Jack Jansend00c13a2003-02-28 12:51:18 +000019
Andrew MacIntyre1a901172003-06-11 12:26:08 +000020#ifdef __FreeBSD__
21/*
22** On FreeBSD, [n]curses.h and stdlib.h/wchar.h use different guards
23** against multiple definition of wchar_t and wint_t.
24*/
25#ifdef _XOPEN_SOURCE_EXTENDED
Andrew MacIntyree3454af2003-06-29 15:46:21 +000026#ifndef __FreeBSD_version
27#include <osreldate.h>
28#endif
29#if __FreeBSD_version >= 500000
30#ifndef __wchar_t
31#define __wchar_t
32#endif
33#ifndef __wint_t
34#define __wint_t
35#endif
36#else
Andrew MacIntyre1a901172003-06-11 12:26:08 +000037#ifndef _WCHAR_T
38#define _WCHAR_T
39#endif
40#ifndef _WINT_T
41#define _WINT_T
42#endif
43#endif
44#endif
Andrew MacIntyree3454af2003-06-29 15:46:21 +000045#endif
Andrew MacIntyre1a901172003-06-11 12:26:08 +000046
Jack Jansend00c13a2003-02-28 12:51:18 +000047#ifdef HAVE_NCURSES_H
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000048#include <ncurses.h>
49#else
50#include <curses.h>
Martin v. Löwis69532332001-10-13 09:12:41 +000051#ifdef HAVE_TERM_H
52/* for tigetstr, which is not declared in SysV curses */
53#include <term.h>
54#endif
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000055#endif
56
Martin v. Löwiseb9b1032001-10-24 17:10:49 +000057#ifdef HAVE_NCURSES_H
58/* configure was checking <curses.h>, but we will
59 use <ncurses.h>, which has all these features. */
60#ifndef WINDOW_HAS_FLAGS
61#define WINDOW_HAS_FLAGS 1
62#endif
63#ifndef MVWDELCH_IS_EXPRESSION
64#define MVWDELCH_IS_EXPRESSION 1
65#endif
66#endif
67
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000068#ifdef __cplusplus
69extern "C" {
70#endif
71
72#define PyCurses_API_pointers 4
73
74/* Type declarations */
75
76typedef struct {
77 PyObject_HEAD
78 WINDOW *win;
79} PyCursesWindowObject;
80
Christian Heimes90aa7642007-12-19 02:45:37 +000081#define PyCursesWindow_Check(v) (Py_TYPE(v) == &PyCursesWindow_Type)
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000082
Benjamin Petersonb173f782009-05-05 22:31:58 +000083#define PyCurses_CAPSULE_NAME "_curses._C_API"
84
85
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +000086#ifdef CURSES_MODULE
87/* This section is used when compiling _cursesmodule.c */
88
89#else
90/* This section is used in modules that use the _cursesmodule API */
91
92static void **PyCurses_API;
93
94#define PyCursesWindow_Type (*(PyTypeObject *) PyCurses_API[0])
95#define PyCursesSetupTermCalled {if (! ((int (*)(void))PyCurses_API[1]) () ) return NULL;}
96#define PyCursesInitialised {if (! ((int (*)(void))PyCurses_API[2]) () ) return NULL;}
97#define PyCursesInitialisedColor {if (! ((int (*)(void))PyCurses_API[3]) () ) return NULL;}
98
99#define import_curses() \
Benjamin Petersonb173f782009-05-05 22:31:58 +0000100 PyCurses_API = (void **)PyCapsule_Import(PyCurses_CAPSULE_NAME, 1);
101
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000102#endif
103
104/* general error messages */
105static char *catchall_ERR = "curses function returned ERR";
106static char *catchall_NULL = "curses function returned NULL";
107
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000108/* Function Prototype Macros - They are ugly but very, very useful. ;-)
109
110 X - function name
111 TYPE - parameter Type
112 ERGSTR - format string for construction of the return value
113 PARSESTR - format string for argument parsing
114 */
115
116#define NoArgNoReturnFunction(X) \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000117static PyObject *PyCurses_ ## X (PyObject *self) \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000118{ \
119 PyCursesInitialised \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000120 return PyCursesCheckERR(X(), # X); }
121
122#define NoArgOrFlagNoReturnFunction(X) \
123static PyObject *PyCurses_ ## X (PyObject *self, PyObject *args) \
124{ \
125 int flag = 0; \
126 PyCursesInitialised \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000127 switch(PyTuple_Size(args)) { \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000128 case 0: \
129 return PyCursesCheckERR(X(), # X); \
130 case 1: \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000131 if (!PyArg_ParseTuple(args, "i;True(1) or False(0)", &flag)) return NULL; \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000132 if (flag) return PyCursesCheckERR(X(), # X); \
133 else return PyCursesCheckERR(no ## X (), # X); \
134 default: \
135 PyErr_SetString(PyExc_TypeError, # X " requires 0 or 1 arguments"); \
136 return NULL; } }
137
138#define NoArgReturnIntFunction(X) \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000139static PyObject *PyCurses_ ## X (PyObject *self) \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000140{ \
141 PyCursesInitialised \
Christian Heimes217cfd12007-12-02 14:31:20 +0000142 return PyLong_FromLong((long) X()); }
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000143
144
145#define NoArgReturnStringFunction(X) \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000146static PyObject *PyCurses_ ## X (PyObject *self) \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000147{ \
148 PyCursesInitialised \
Christian Heimes72b710a2008-05-26 13:28:38 +0000149 return PyBytes_FromString(X()); }
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000150
151#define NoArgTrueFalseFunction(X) \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000152static PyObject *PyCurses_ ## X (PyObject *self) \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000153{ \
154 PyCursesInitialised \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000155 if (X () == FALSE) { \
156 Py_INCREF(Py_False); \
157 return Py_False; \
158 } \
159 Py_INCREF(Py_True); \
160 return Py_True; }
161
162#define NoArgNoReturnVoidFunction(X) \
Martin v. Löwisc0e16712002-01-17 23:08:27 +0000163static PyObject *PyCurses_ ## X (PyObject *self) \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000164{ \
165 PyCursesInitialised \
Andrew M. Kuchling0c7a0bd2000-12-22 21:51:10 +0000166 X(); \
167 Py_INCREF(Py_None); \
168 return Py_None; }
169
170#ifdef __cplusplus
171}
172#endif
173
174#endif /* !defined(Py_CURSES_H) */
175
176