2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2008 Blender Authors
|
2023-05-31 16:19:06 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2011-02-27 20:29:51 +00:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup spscript
|
2011-02-27 20:29:51 +00:00
|
|
|
*/
|
|
|
|
|
|
2012-02-17 18:59:41 +00:00
|
|
|
#pragma once
|
2008-12-14 14:43:08 +00:00
|
|
|
|
|
|
|
|
/* internal exports only */
|
|
|
|
|
|
2025-01-07 12:39:13 +01:00
|
|
|
struct wmKeyConfig;
|
|
|
|
|
struct wmOperatorType;
|
|
|
|
|
|
2023-07-31 11:50:54 +10:00
|
|
|
/* `script_ops.cc` */
|
2022-04-04 13:17:03 +10:00
|
|
|
|
2024-03-26 20:48:05 -04:00
|
|
|
void script_operatortypes();
|
|
|
|
|
void script_keymap(wmKeyConfig *keyconf);
|
2008-12-25 14:17:54 +00:00
|
|
|
|
2023-07-31 11:50:54 +10:00
|
|
|
/* `script_edit.cc` */
|
2022-04-04 13:17:03 +10:00
|
|
|
|
2024-03-26 20:48:05 -04:00
|
|
|
void SCRIPT_OT_reload(wmOperatorType *ot);
|
|
|
|
|
void SCRIPT_OT_python_file_run(wmOperatorType *ot);
|