| 
									
										
										
										
											2011-02-23 10:52:22 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  |  * This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  |  * as published by the Free Software Foundation; either version 2 | 
					
						
							|  |  |  |  * of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with this program; if not, write to the Free Software Foundation, | 
					
						
							|  |  |  |  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-18 08:08:12 +11:00
										 |  |  | /** \file
 | 
					
						
							|  |  |  |  * \ingroup pythonintern | 
					
						
							| 
									
										
										
										
											2011-11-05 08:21:12 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This file currently exposes callbacks for interface regions but may be | 
					
						
							|  |  |  |  * extended later. | 
					
						
							| 
									
										
										
										
											2011-02-27 20:10:08 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-14 04:15:25 +00:00
										 |  |  | #include <Python.h>
 | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-02 04:51:43 +00:00
										 |  |  | #include "RNA_types.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-07 05:26:12 +00:00
										 |  |  | #include "BLI_utildefines.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | #include "bpy_rna.h"
 | 
					
						
							| 
									
										
										
										
											2011-02-13 10:52:18 +00:00
										 |  |  | #include "bpy_rna_callback.h"
 | 
					
						
							| 
									
										
										
										
											2017-11-29 21:11:29 +11:00
										 |  |  | #include "bpy_capi_utils.h"
 | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | #include "DNA_space_types.h"
 | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | #include "DNA_screen_types.h"
 | 
					
						
							| 
									
										
										
										
											2011-01-07 19:18:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-02 04:51:43 +00:00
										 |  |  | #include "RNA_access.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | #include "RNA_enum_types.h"
 | 
					
						
							| 
									
										
										
										
											2011-03-02 04:51:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | #include "BKE_context.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | #include "BKE_screen.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-25 15:31:02 +11:00
										 |  |  | #include "WM_api.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | #include "ED_space_api.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-25 15:31:02 +11:00
										 |  |  | #include "../generic/python_utildefines.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-02 01:30:59 +11:00
										 |  |  | /* Use this to stop other capsules from being mis-used. */ | 
					
						
							|  |  |  | static const char *rna_capsual_id = "RNA_HANDLE"; | 
					
						
							|  |  |  | static const char *rna_capsual_id_invalid = "RNA_HANDLE_REMOVED"; | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-18 15:07:26 +11:00
										 |  |  | static const EnumPropertyItem region_draw_mode_items[] = { | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 	{REGION_DRAW_POST_PIXEL, "POST_PIXEL", 0, "Post Pixel", ""}, | 
					
						
							|  |  |  | 	{REGION_DRAW_POST_VIEW, "POST_VIEW", 0, "Post View", ""}, | 
					
						
							|  |  |  | 	{REGION_DRAW_PRE_VIEW, "PRE_VIEW", 0, "Pre View", ""}, | 
					
						
							| 
									
										
										
										
											2019-02-03 14:01:45 +11:00
										 |  |  | 	{0, NULL, 0, NULL, NULL}, | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 10:52:18 +00:00
										 |  |  | static void cb_region_draw(const bContext *C, ARegion *UNUSED(ar), void *customdata) | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	PyObject *cb_func, *cb_args, *result; | 
					
						
							|  |  |  | 	PyGILState_STATE gilstate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bpy_context_set((bContext *)C, &gilstate); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 	cb_func = PyTuple_GET_ITEM((PyObject *)customdata, 1); | 
					
						
							|  |  |  | 	cb_args = PyTuple_GET_ITEM((PyObject *)customdata, 2); | 
					
						
							| 
									
										
										
										
											2011-12-26 12:26:11 +00:00
										 |  |  | 	result = PyObject_CallObject(cb_func, cb_args); | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-18 08:50:06 +00:00
										 |  |  | 	if (result) { | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 		Py_DECREF(result); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		PyErr_Print(); | 
					
						
							|  |  |  | 		PyErr_Clear(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bpy_context_clear((bContext *)C, &gilstate); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-25 15:31:02 +11:00
										 |  |  | /* We could make generic utility */ | 
					
						
							|  |  |  | static PyObject *PyC_Tuple_CopySized(PyObject *src, int len_dst) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *dst = PyTuple_New(len_dst); | 
					
						
							|  |  |  | 	int len_src = PyTuple_GET_SIZE(src); | 
					
						
							|  |  |  | 	BLI_assert(len_src <= len_dst); | 
					
						
							|  |  |  | 	for (int i = 0; i < len_src; i++) { | 
					
						
							|  |  |  | 		PyObject *item = PyTuple_GET_ITEM(src, i); | 
					
						
							|  |  |  | 		PyTuple_SET_ITEM(dst, i, item); | 
					
						
							|  |  |  | 		Py_INCREF(item); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return dst; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void cb_wm_cursor_draw(bContext *C, int x, int y, void *customdata) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *cb_func, *cb_args, *result; | 
					
						
							|  |  |  | 	PyGILState_STATE gilstate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bpy_context_set((bContext *)C, &gilstate); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cb_func = PyTuple_GET_ITEM((PyObject *)customdata, 1); | 
					
						
							|  |  |  | 	cb_args = PyTuple_GET_ITEM((PyObject *)customdata, 2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const int cb_args_len = PyTuple_GET_SIZE(cb_args); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	PyObject *cb_args_xy = PyTuple_New(2); | 
					
						
							|  |  |  | 	PyTuple_SET_ITEMS(cb_args_xy, PyLong_FromLong(x), PyLong_FromLong(y)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	PyObject *cb_args_with_xy = PyC_Tuple_CopySized(cb_args, cb_args_len + 1); | 
					
						
							|  |  |  | 	PyTuple_SET_ITEM(cb_args_with_xy, cb_args_len, cb_args_xy); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	result = PyObject_CallObject(cb_func, cb_args_with_xy); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Py_DECREF(cb_args_with_xy); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (result) { | 
					
						
							|  |  |  | 		Py_DECREF(result); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		PyErr_Print(); | 
					
						
							|  |  |  | 		PyErr_Clear(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bpy_context_clear((bContext *)C, &gilstate); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | PyObject *pyrna_callback_add(BPy_StructRNA *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	void *handle; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	PyObject *cb_func, *cb_args; | 
					
						
							| 
									
										
										
										
											2011-12-26 12:26:11 +00:00
										 |  |  | 	char *cb_event_str = NULL; | 
					
						
							| 
									
										
										
										
											2010-02-27 15:28:34 +00:00
										 |  |  | 	int cb_event; | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-30 06:12:48 +11:00
										 |  |  | 	if (!PyArg_ParseTuple(args, "OO!|s:bpy_struct.callback_add", &cb_func, &PyTuple_Type, &cb_args, &cb_event_str)) { | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2019-03-30 06:12:48 +11:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-06-04 08:54:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-18 08:50:06 +00:00
										 |  |  | 	if (!PyCallable_Check(cb_func)) { | 
					
						
							| 
									
										
										
										
											2010-08-09 02:29:06 +00:00
										 |  |  | 		PyErr_SetString(PyExc_TypeError, "callback_add(): first argument isn't callable"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-18 08:50:06 +00:00
										 |  |  | 	if (RNA_struct_is_a(self->ptr.type, &RNA_Region)) { | 
					
						
							|  |  |  | 		if (cb_event_str) { | 
					
						
							| 
									
										
										
										
											2018-06-12 17:34:44 +02:00
										 |  |  | 			if (pyrna_enum_value_from_id( | 
					
						
							|  |  |  | 			            region_draw_mode_items, cb_event_str, | 
					
						
							|  |  |  | 			            &cb_event, "bpy_struct.callback_add()") == -1) | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2010-08-09 02:29:06 +00:00
										 |  |  | 				return NULL; | 
					
						
							| 
									
										
										
										
											2011-12-18 08:50:06 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-08-09 02:29:06 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											2011-12-26 12:26:11 +00:00
										 |  |  | 			cb_event = REGION_DRAW_POST_PIXEL; | 
					
						
							| 
									
										
										
										
											2010-08-09 02:29:06 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-26 12:26:11 +00:00
										 |  |  | 		handle = ED_region_draw_cb_activate(((ARegion *)self->ptr.data)->type, cb_region_draw, (void *)args, cb_event); | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 		Py_INCREF(args); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2012-05-15 16:11:04 +00:00
										 |  |  | 		PyErr_SetString(PyExc_TypeError, "callback_add(): type does not support callbacks"); | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-02 01:30:59 +11:00
										 |  |  | 	return PyCapsule_New((void *)handle, rna_capsual_id, NULL); | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *pyrna_callback_remove(BPy_StructRNA *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *py_handle; | 
					
						
							|  |  |  | 	void *handle; | 
					
						
							|  |  |  | 	void *customdata; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-30 06:12:48 +11:00
										 |  |  | 	if (!PyArg_ParseTuple(args, "O!:callback_remove", &PyCapsule_Type, &py_handle)) { | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2019-03-30 06:12:48 +11:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-02 01:30:59 +11:00
										 |  |  | 	handle = PyCapsule_GetPointer(py_handle, rna_capsual_id); | 
					
						
							| 
									
										
										
										
											2010-02-28 09:36:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-26 12:26:11 +00:00
										 |  |  | 	if (handle == NULL) { | 
					
						
							| 
									
										
										
										
											2010-11-23 16:45:17 +00:00
										 |  |  | 		PyErr_SetString(PyExc_ValueError, "callback_remove(handle): NULL handle given, invalid or already removed"); | 
					
						
							| 
									
										
										
										
											2010-02-28 09:36:02 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-18 08:50:06 +00:00
										 |  |  | 	if (RNA_struct_is_a(self->ptr.type, &RNA_Region)) { | 
					
						
							| 
									
										
										
										
											2011-12-26 12:26:11 +00:00
										 |  |  | 		customdata = ED_region_draw_cb_customdata(handle); | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 		Py_DECREF((PyObject *)customdata); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ED_region_draw_cb_exit(((ARegion *)self->ptr.data)->type, handle); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 	else { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, "callback_remove(): type does not support callbacks"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* don't allow reuse */ | 
					
						
							| 
									
										
										
										
											2019-03-02 01:30:59 +11:00
										 |  |  | 	PyCapsule_SetName(py_handle, rna_capsual_id_invalid); | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Py_RETURN_NONE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* reverse of rna_Space_refine() */ | 
					
						
							|  |  |  | static eSpace_Type rna_Space_refine_reverse(StructRNA *srna) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-03-30 06:12:48 +11:00
										 |  |  | 	if (srna == &RNA_SpaceView3D)           { return SPACE_VIEW3D; } | 
					
						
							|  |  |  | 	if (srna == &RNA_SpaceGraphEditor)      { return SPACE_GRAPH; } | 
					
						
							|  |  |  | 	if (srna == &RNA_SpaceOutliner)         { return SPACE_OUTLINER; } | 
					
						
							|  |  |  | 	if (srna == &RNA_SpaceProperties)       { return SPACE_PROPERTIES; } | 
					
						
							|  |  |  | 	if (srna == &RNA_SpaceFileBrowser)      { return SPACE_FILE; } | 
					
						
							|  |  |  | 	if (srna == &RNA_SpaceImageEditor)      { return SPACE_IMAGE; } | 
					
						
							|  |  |  | 	if (srna == &RNA_SpaceInfo)             { return SPACE_INFO; } | 
					
						
							|  |  |  | 	if (srna == &RNA_SpaceSequenceEditor)   { return SPACE_SEQ; } | 
					
						
							|  |  |  | 	if (srna == &RNA_SpaceTextEditor)       { return SPACE_TEXT; } | 
					
						
							|  |  |  | 	if (srna == &RNA_SpaceDopeSheetEditor)  { return SPACE_ACTION; } | 
					
						
							|  |  |  | 	if (srna == &RNA_SpaceNLA)              { return SPACE_NLA; } | 
					
						
							|  |  |  | 	if (srna == &RNA_SpaceNodeEditor)       { return SPACE_NODE; } | 
					
						
							|  |  |  | 	if (srna == &RNA_SpaceConsole)          { return SPACE_CONSOLE; } | 
					
						
							|  |  |  | 	if (srna == &RNA_SpacePreferences)      { return SPACE_USERPREF; } | 
					
						
							|  |  |  | 	if (srna == &RNA_SpaceClipEditor)       { return SPACE_CLIP; } | 
					
						
							| 
									
										
										
										
											2015-08-12 22:17:27 +02:00
										 |  |  | 	return SPACE_EMPTY; | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *pyrna_callback_classmethod_add(PyObject *UNUSED(self), PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	void *handle; | 
					
						
							|  |  |  | 	PyObject *cls; | 
					
						
							|  |  |  | 	PyObject *cb_func, *cb_args; | 
					
						
							|  |  |  | 	StructRNA *srna; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (PyTuple_GET_SIZE(args) < 2) { | 
					
						
							| 
									
										
										
										
											2018-04-17 12:29:24 +02:00
										 |  |  | 		PyErr_SetString(PyExc_ValueError, "handler_add(handler): expected at least 2 args"); | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cls = PyTuple_GET_ITEM(args, 0); | 
					
						
							| 
									
										
										
										
											2013-01-07 05:26:12 +00:00
										 |  |  | 	if (!(srna = pyrna_struct_as_srna(cls, false, "handler_add"))) { | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	cb_func = PyTuple_GET_ITEM(args, 1); | 
					
						
							|  |  |  | 	if (!PyCallable_Check(cb_func)) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, "first argument isn't callable"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 04:23:46 +00:00
										 |  |  | 	/* class specific callbacks */ | 
					
						
							| 
									
										
										
										
											2018-10-25 15:31:02 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (srna == &RNA_WindowManager) { | 
					
						
							| 
									
										
										
										
											2018-10-25 16:27:13 +11:00
										 |  |  | 		const char *error_prefix = "WindowManager.draw_cursor_add"; | 
					
						
							|  |  |  | 		struct { | 
					
						
							|  |  |  | 			const char *space_type_str; | 
					
						
							|  |  |  | 			const char *region_type_str; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			int space_type; | 
					
						
							|  |  |  | 			int region_type; | 
					
						
							|  |  |  | 		} params = { | 
					
						
							|  |  |  | 			.space_type_str = NULL, | 
					
						
							|  |  |  | 			.region_type_str = NULL, | 
					
						
							|  |  |  | 			.space_type = SPACE_TYPE_ANY, | 
					
						
							|  |  |  | 			.region_type = RGN_TYPE_ANY, | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!PyArg_ParseTuple( | 
					
						
							|  |  |  | 		            args, "OOO!|ss:WindowManager.draw_cursor_add", | 
					
						
							|  |  |  | 		            &cls, &cb_func,  /* already assigned, no matter */ | 
					
						
							|  |  |  | 		            &PyTuple_Type, &cb_args, ¶ms.space_type_str, ¶ms.region_type_str)) | 
					
						
							| 
									
										
										
										
											2018-10-25 15:31:02 +11:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-10-25 16:27:13 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (params.space_type_str && pyrna_enum_value_from_id( | 
					
						
							|  |  |  | 		            rna_enum_space_type_items, params.space_type_str, | 
					
						
							|  |  |  | 		            ¶ms.space_type, error_prefix) == -1) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (params.region_type_str && pyrna_enum_value_from_id( | 
					
						
							|  |  |  | 		            rna_enum_region_type_items, params.region_type_str, | 
					
						
							|  |  |  | 		            ¶ms.region_type, error_prefix) == -1) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-25 15:31:02 +11:00
										 |  |  | 		bContext *C = BPy_GetContext(); | 
					
						
							|  |  |  | 		struct wmWindowManager *wm = CTX_wm_manager(C); | 
					
						
							| 
									
										
										
										
											2018-10-25 16:06:47 +11:00
										 |  |  | 		handle = WM_paint_cursor_activate( | 
					
						
							|  |  |  | 		        wm, | 
					
						
							| 
									
										
										
										
											2018-10-25 16:27:13 +11:00
										 |  |  | 		        params.space_type, params.region_type, | 
					
						
							| 
									
										
										
										
											2018-10-25 16:06:47 +11:00
										 |  |  | 		        NULL, cb_wm_cursor_draw, (void *)args); | 
					
						
							| 
									
										
										
										
											2018-10-25 15:31:02 +11:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else if (RNA_struct_is_a(srna, &RNA_Space)) { | 
					
						
							| 
									
										
										
										
											2018-10-25 16:27:13 +11:00
										 |  |  | 		const char *error_prefix = "Space.draw_handler_add"; | 
					
						
							|  |  |  | 		struct { | 
					
						
							|  |  |  | 			const char *region_type_str; | 
					
						
							|  |  |  | 			const char *event_str; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			int region_type; | 
					
						
							|  |  |  | 			int event; | 
					
						
							|  |  |  | 		} params; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!PyArg_ParseTuple( | 
					
						
							|  |  |  | 		            args, "OOO!ss:Space.draw_handler_add", | 
					
						
							|  |  |  | 		            &cls, &cb_func,  /* already assigned, no matter */ | 
					
						
							|  |  |  | 		            &PyTuple_Type, &cb_args, | 
					
						
							|  |  |  | 		            ¶ms.region_type_str, ¶ms.event_str)) | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-12 17:34:44 +02:00
										 |  |  | 		if (pyrna_enum_value_from_id( | 
					
						
							| 
									
										
										
										
											2018-10-25 16:27:13 +11:00
										 |  |  | 		            region_draw_mode_items, params.event_str, | 
					
						
							|  |  |  | 		            ¶ms.event, error_prefix) == -1) | 
					
						
							| 
									
										
										
										
											2018-06-12 17:34:44 +02:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-06-12 17:34:44 +02:00
										 |  |  | 		else if (pyrna_enum_value_from_id( | 
					
						
							| 
									
										
										
										
											2018-10-25 16:27:13 +11:00
										 |  |  | 		                 rna_enum_region_type_items, params.region_type_str, | 
					
						
							|  |  |  | 		                 ¶ms.region_type, error_prefix) == -1) | 
					
						
							| 
									
										
										
										
											2018-06-12 17:34:44 +02:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 			const eSpace_Type spaceid = rna_Space_refine_reverse(srna); | 
					
						
							| 
									
										
										
										
											2015-08-12 22:17:27 +02:00
										 |  |  | 			if (spaceid == SPACE_EMPTY) { | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 				PyErr_Format(PyExc_TypeError, "unknown space type '%.200s'", RNA_struct_identifier(srna)); | 
					
						
							|  |  |  | 				return NULL; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							|  |  |  | 				SpaceType *st = BKE_spacetype_from_id(spaceid); | 
					
						
							| 
									
										
										
										
											2018-10-25 16:27:13 +11:00
										 |  |  | 				ARegionType *art = BKE_regiontype_from_id(st, params.region_type); | 
					
						
							| 
									
										
										
										
											2018-06-12 17:34:44 +02:00
										 |  |  | 				if (art == NULL) { | 
					
						
							| 
									
										
										
										
											2018-10-25 16:27:13 +11:00
										 |  |  | 					PyErr_Format(PyExc_TypeError, "region type '%.200s' not in space", params.region_type_str); | 
					
						
							| 
									
										
										
										
											2018-06-12 17:34:44 +02:00
										 |  |  | 					return NULL; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-10-25 16:27:13 +11:00
										 |  |  | 				handle = ED_region_draw_cb_activate(art, cb_region_draw, (void *)args, params.event); | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, "callback_add(): type does not support callbacks"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-02 01:30:59 +11:00
										 |  |  | 	PyObject *ret = PyCapsule_New((void *)handle, rna_capsual_id, NULL); | 
					
						
							| 
									
										
										
										
											2018-10-26 09:19:51 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Store 'args' in context as well as the handler custom-data,
 | 
					
						
							|  |  |  | 	 * because the handle may be freed by Blender (new file, new window... etc) */ | 
					
						
							|  |  |  | 	PyCapsule_SetContext(ret, args); | 
					
						
							|  |  |  | 	Py_INCREF(args); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *pyrna_callback_classmethod_remove(PyObject *UNUSED(self), PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *cls; | 
					
						
							|  |  |  | 	PyObject *py_handle; | 
					
						
							|  |  |  | 	void *handle; | 
					
						
							|  |  |  | 	StructRNA *srna; | 
					
						
							| 
									
										
										
										
											2018-10-26 09:19:51 +11:00
										 |  |  | 	bool capsule_clear = false; | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (PyTuple_GET_SIZE(args) < 2) { | 
					
						
							| 
									
										
										
										
											2018-04-17 12:29:24 +02:00
										 |  |  | 		PyErr_SetString(PyExc_ValueError, "callback_remove(handler): expected at least 2 args"); | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cls = PyTuple_GET_ITEM(args, 0); | 
					
						
							| 
									
										
										
										
											2013-01-07 05:26:12 +00:00
										 |  |  | 	if (!(srna = pyrna_struct_as_srna(cls, false, "callback_remove"))) { | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	py_handle = PyTuple_GET_ITEM(args, 1); | 
					
						
							| 
									
										
										
										
											2019-03-02 01:30:59 +11:00
										 |  |  | 	handle = PyCapsule_GetPointer(py_handle, rna_capsual_id); | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 	if (handle == NULL) { | 
					
						
							| 
									
										
										
										
											2018-04-17 12:29:24 +02:00
										 |  |  | 		PyErr_SetString(PyExc_ValueError, "callback_remove(handler): NULL handler given, invalid or already removed"); | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-10-26 09:19:51 +11:00
										 |  |  | 	PyObject *handle_args = PyCapsule_GetContext(py_handle); | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-25 15:31:02 +11:00
										 |  |  | 	if (srna == &RNA_WindowManager) { | 
					
						
							| 
									
										
										
										
											2018-10-25 17:20:26 +11:00
										 |  |  | 		if (!PyArg_ParseTuple( | 
					
						
							|  |  |  | 		            args, "OO!:WindowManager.draw_cursor_remove", | 
					
						
							|  |  |  | 		            &cls, &PyCapsule_Type, &py_handle)) | 
					
						
							| 
									
										
										
										
											2018-10-25 15:31:02 +11:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		bContext *C = BPy_GetContext(); | 
					
						
							|  |  |  | 		struct wmWindowManager *wm = CTX_wm_manager(C); | 
					
						
							| 
									
										
										
										
											2018-10-26 09:19:51 +11:00
										 |  |  | 		WM_paint_cursor_end(wm, handle); | 
					
						
							|  |  |  | 		capsule_clear = true; | 
					
						
							| 
									
										
										
										
											2018-10-25 15:31:02 +11:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else if (RNA_struct_is_a(srna, &RNA_Space)) { | 
					
						
							| 
									
										
										
										
											2018-10-25 17:20:26 +11:00
										 |  |  | 		const char *error_prefix = "Space.draw_handler_remove"; | 
					
						
							|  |  |  | 		struct { | 
					
						
							|  |  |  | 			const char *region_type_str; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			int region_type; | 
					
						
							|  |  |  | 		} params; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!PyArg_ParseTuple( | 
					
						
							|  |  |  | 		            args, "OO!s:Space.draw_handler_remove", | 
					
						
							|  |  |  | 		            &cls, &PyCapsule_Type, &py_handle,  /* already assigned, no matter */ | 
					
						
							|  |  |  | 		            ¶ms.region_type_str)) | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-12 17:34:44 +02:00
										 |  |  | 		if (pyrna_enum_value_from_id( | 
					
						
							| 
									
										
										
										
											2018-10-25 17:20:26 +11:00
										 |  |  | 		            rna_enum_region_type_items, params.region_type_str, | 
					
						
							|  |  |  | 		            ¶ms.region_type, error_prefix) == -1) | 
					
						
							| 
									
										
										
										
											2018-06-12 17:34:44 +02:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 			const eSpace_Type spaceid = rna_Space_refine_reverse(srna); | 
					
						
							| 
									
										
										
										
											2015-08-12 22:17:27 +02:00
										 |  |  | 			if (spaceid == SPACE_EMPTY) { | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 				PyErr_Format(PyExc_TypeError, "unknown space type '%.200s'", RNA_struct_identifier(srna)); | 
					
						
							|  |  |  | 				return NULL; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							|  |  |  | 				SpaceType *st = BKE_spacetype_from_id(spaceid); | 
					
						
							| 
									
										
										
										
											2018-10-25 17:20:26 +11:00
										 |  |  | 				ARegionType *art = BKE_regiontype_from_id(st, params.region_type); | 
					
						
							| 
									
										
										
										
											2018-06-12 17:34:44 +02:00
										 |  |  | 				if (art == NULL) { | 
					
						
							| 
									
										
										
										
											2018-10-25 17:20:26 +11:00
										 |  |  | 					PyErr_Format(PyExc_TypeError, "region type '%.200s' not in space", params.region_type_str); | 
					
						
							| 
									
										
										
										
											2018-06-12 17:34:44 +02:00
										 |  |  | 					return NULL; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 				ED_region_draw_cb_exit(art, handle); | 
					
						
							| 
									
										
										
										
											2018-10-26 09:19:51 +11:00
										 |  |  | 				capsule_clear = true; | 
					
						
							| 
									
										
										
										
											2012-12-20 13:29:58 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, "callback_remove(): type does not support callbacks"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-18 07:38:51 +00:00
										 |  |  | 	/* don't allow reuse */ | 
					
						
							| 
									
										
										
										
											2018-10-26 09:19:51 +11:00
										 |  |  | 	if (capsule_clear) { | 
					
						
							|  |  |  | 		Py_DECREF(handle_args); | 
					
						
							| 
									
										
										
										
											2019-03-02 01:30:59 +11:00
										 |  |  | 		PyCapsule_SetName(py_handle, rna_capsual_id_invalid); | 
					
						
							| 
									
										
										
										
											2018-10-26 09:19:51 +11:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-02-28 09:36:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-27 13:27:06 +00:00
										 |  |  | 	Py_RETURN_NONE; | 
					
						
							|  |  |  | } |