Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/makesrna/intern/rna_workspace_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_workspace_api.c219
1 files changed, 108 insertions, 111 deletions
diff --git a/source/blender/makesrna/intern/rna_workspace_api.c b/source/blender/makesrna/intern/rna_workspace_api.c
index f82b1ecda60..b8c6a25ace8 100644
--- a/source/blender/makesrna/intern/rna_workspace_api.c
+++ b/source/blender/makesrna/intern/rna_workspace_api.c
@@ -18,7 +18,6 @@
* \ingroup RNA
*/
-
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
@@ -31,142 +30,140 @@
#include "DNA_object_types.h"
#include "DNA_windowmanager_types.h"
-#include "RNA_enum_types.h" /* own include */
+#include "RNA_enum_types.h" /* own include */
-#include "rna_internal.h" /* own include */
+#include "rna_internal.h" /* own include */
#ifdef RNA_RUNTIME
-#include "BKE_paint.h"
-
-#include "ED_screen.h"
-
-static void rna_WorkSpaceTool_setup(
- ID *id,
- bToolRef *tref,
- bContext *C,
- const char *name,
- /* Args for: 'bToolRef_Runtime'. */
- int cursor,
- const char *keymap,
- const char *gizmo_group,
- const char *data_block,
- const char *operator,
- int index)
+# include "BKE_paint.h"
+
+# include "ED_screen.h"
+
+static void rna_WorkSpaceTool_setup(ID *id,
+ bToolRef *tref,
+ bContext *C,
+ const char *name,
+ /* Args for: 'bToolRef_Runtime'. */
+ int cursor,
+ const char *keymap,
+ const char *gizmo_group,
+ const char *data_block,
+ const char *
+ operator,
+ int index)
{
- bToolRef_Runtime tref_rt = {0};
+ bToolRef_Runtime tref_rt = {0};
- tref_rt.cursor = cursor;
- STRNCPY(tref_rt.keymap, keymap);
- STRNCPY(tref_rt.gizmo_group, gizmo_group);
- STRNCPY(tref_rt.data_block, data_block);
- STRNCPY(tref_rt.op, operator);
- tref_rt.index = index;
+ tref_rt.cursor = cursor;
+ STRNCPY(tref_rt.keymap, keymap);
+ STRNCPY(tref_rt.gizmo_group, gizmo_group);
+ STRNCPY(tref_rt.data_block, data_block);
+ STRNCPY(tref_rt.op, operator);
+ tref_rt.index = index;
- WM_toolsystem_ref_set_from_runtime(C, (WorkSpace *)id, tref, &tref_rt, name);
+ WM_toolsystem_ref_set_from_runtime(C, (WorkSpace *)id, tref, &tref_rt, name);
}
-static void rna_WorkSpaceTool_refresh_from_context(
- ID *id,
- bToolRef *tref,
- Main *bmain)
+static void rna_WorkSpaceTool_refresh_from_context(ID *id, bToolRef *tref, Main *bmain)
{
- WM_toolsystem_ref_sync_from_context(bmain, (WorkSpace *)id, tref);
+ WM_toolsystem_ref_sync_from_context(bmain, (WorkSpace *)id, tref);
}
-static PointerRNA rna_WorkSpaceTool_operator_properties(
- bToolRef *tref,
- ReportList *reports,
- const char *idname)
+static PointerRNA rna_WorkSpaceTool_operator_properties(bToolRef *tref,
+ ReportList *reports,
+ const char *idname)
{
- wmOperatorType *ot = WM_operatortype_find(idname, true);
-
- if (ot != NULL) {
- PointerRNA ptr;
- WM_toolsystem_ref_properties_ensure_from_operator(tref, ot, &ptr);
- return ptr;
- }
- else {
- BKE_reportf(reports, RPT_ERROR, "Operator '%s' not found!", idname);
- }
- return PointerRNA_NULL;
+ wmOperatorType *ot = WM_operatortype_find(idname, true);
+
+ if (ot != NULL) {
+ PointerRNA ptr;
+ WM_toolsystem_ref_properties_ensure_from_operator(tref, ot, &ptr);
+ return ptr;
+ }
+ else {
+ BKE_reportf(reports, RPT_ERROR, "Operator '%s' not found!", idname);
+ }
+ return PointerRNA_NULL;
}
-static PointerRNA rna_WorkSpaceTool_gizmo_group_properties(
- bToolRef *tref,
- ReportList *reports,
- const char *idname)
+static PointerRNA rna_WorkSpaceTool_gizmo_group_properties(bToolRef *tref,
+ ReportList *reports,
+ const char *idname)
{
- wmGizmoGroupType *gzgt = WM_gizmogrouptype_find(idname, false);
- if (gzgt != NULL) {
- PointerRNA ptr;
- WM_toolsystem_ref_properties_ensure_from_gizmo_group(tref, gzgt, &ptr);
- return ptr;
- }
- else {
- BKE_reportf(reports, RPT_ERROR, "Gizmo group '%s' not found!", idname);
- }
- return PointerRNA_NULL;
+ wmGizmoGroupType *gzgt = WM_gizmogrouptype_find(idname, false);
+ if (gzgt != NULL) {
+ PointerRNA ptr;
+ WM_toolsystem_ref_properties_ensure_from_gizmo_group(tref, gzgt, &ptr);
+ return ptr;
+ }
+ else {
+ BKE_reportf(reports, RPT_ERROR, "Gizmo group '%s' not found!", idname);
+ }
+ return PointerRNA_NULL;
}
#else
void RNA_api_workspace(StructRNA *srna)
{
- FunctionRNA *func;
- PropertyRNA *parm;
-
- func = RNA_def_function(srna, "status_text_set", "ED_workspace_status_text");
- RNA_def_function_flag(func, FUNC_NO_SELF | FUNC_USE_CONTEXT);
- RNA_def_function_ui_description(func, "Set the status bar text, typically key shortcuts for modal operators");
- parm = RNA_def_string(func, "text", NULL, 0, "Text", "New string for the status bar, None clears the text");
- RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
- RNA_def_property_clear_flag(parm, PROP_NEVER_NULL);
+ FunctionRNA *func;
+ PropertyRNA *parm;
+
+ func = RNA_def_function(srna, "status_text_set", "ED_workspace_status_text");
+ RNA_def_function_flag(func, FUNC_NO_SELF | FUNC_USE_CONTEXT);
+ RNA_def_function_ui_description(
+ func, "Set the status bar text, typically key shortcuts for modal operators");
+ parm = RNA_def_string(
+ func, "text", NULL, 0, "Text", "New string for the status bar, None clears the text");
+ RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
+ RNA_def_property_clear_flag(parm, PROP_NEVER_NULL);
}
void RNA_api_workspace_tool(StructRNA *srna)
{
- PropertyRNA *parm;
- FunctionRNA *func;
-
- func = RNA_def_function(srna, "setup", "rna_WorkSpaceTool_setup");
- RNA_def_function_flag(func, FUNC_USE_SELF_ID | FUNC_USE_CONTEXT);
- RNA_def_function_ui_description(func, "Set the tool settings");
-
- parm = RNA_def_string(func, "idname", NULL, MAX_NAME, "Identifier", "");
- RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
-
- /* 'bToolRef_Runtime' */
- parm = RNA_def_property(func, "cursor", PROP_ENUM, PROP_NONE);
- RNA_def_property_enum_items(parm, rna_enum_window_cursor_items);
- RNA_def_string(func, "keymap", NULL, KMAP_MAX_NAME, "Key Map", "");
- RNA_def_string(func, "gizmo_group", NULL, MAX_NAME, "Gizmo Group", "");
- RNA_def_string(func, "data_block", NULL, MAX_NAME, "Data Block", "");
- RNA_def_string(func, "operator", NULL, MAX_NAME, "Operator", "");
- RNA_def_int(func, "index", 0, INT_MIN, INT_MAX, "Index", "", INT_MIN, INT_MAX);
-
- /* Access tool operator options (optionally create). */
- func = RNA_def_function(srna, "operator_properties", "rna_WorkSpaceTool_operator_properties");
- RNA_def_function_flag(func, FUNC_USE_REPORTS);
- parm = RNA_def_string(func, "operator", NULL, 0, "", "");
- RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
- /* return */
- parm = RNA_def_pointer(func, "result", "OperatorProperties", "", "");
- RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_RNAPTR);
- RNA_def_function_return(func, parm);
-
- /* Access gizmo-group options (optionally create). */
- func = RNA_def_function(srna, "gizmo_group_properties", "rna_WorkSpaceTool_gizmo_group_properties");
- RNA_def_function_flag(func, FUNC_USE_REPORTS);
- parm = RNA_def_string(func, "group", NULL, 0, "", "");
- RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
- /* return */
- parm = RNA_def_pointer(func, "result", "GizmoGroupProperties", "", "");
- RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_RNAPTR);
- RNA_def_function_return(func, parm);
-
- func = RNA_def_function(srna, "refresh_from_context", "rna_WorkSpaceTool_refresh_from_context");
- RNA_def_function_flag(func, FUNC_USE_SELF_ID | FUNC_USE_MAIN);
+ PropertyRNA *parm;
+ FunctionRNA *func;
+
+ func = RNA_def_function(srna, "setup", "rna_WorkSpaceTool_setup");
+ RNA_def_function_flag(func, FUNC_USE_SELF_ID | FUNC_USE_CONTEXT);
+ RNA_def_function_ui_description(func, "Set the tool settings");
+
+ parm = RNA_def_string(func, "idname", NULL, MAX_NAME, "Identifier", "");
+ RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
+
+ /* 'bToolRef_Runtime' */
+ parm = RNA_def_property(func, "cursor", PROP_ENUM, PROP_NONE);
+ RNA_def_property_enum_items(parm, rna_enum_window_cursor_items);
+ RNA_def_string(func, "keymap", NULL, KMAP_MAX_NAME, "Key Map", "");
+ RNA_def_string(func, "gizmo_group", NULL, MAX_NAME, "Gizmo Group", "");
+ RNA_def_string(func, "data_block", NULL, MAX_NAME, "Data Block", "");
+ RNA_def_string(func, "operator", NULL, MAX_NAME, "Operator", "");
+ RNA_def_int(func, "index", 0, INT_MIN, INT_MAX, "Index", "", INT_MIN, INT_MAX);
+
+ /* Access tool operator options (optionally create). */
+ func = RNA_def_function(srna, "operator_properties", "rna_WorkSpaceTool_operator_properties");
+ RNA_def_function_flag(func, FUNC_USE_REPORTS);
+ parm = RNA_def_string(func, "operator", NULL, 0, "", "");
+ RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
+ /* return */
+ parm = RNA_def_pointer(func, "result", "OperatorProperties", "", "");
+ RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_RNAPTR);
+ RNA_def_function_return(func, parm);
+
+ /* Access gizmo-group options (optionally create). */
+ func = RNA_def_function(
+ srna, "gizmo_group_properties", "rna_WorkSpaceTool_gizmo_group_properties");
+ RNA_def_function_flag(func, FUNC_USE_REPORTS);
+ parm = RNA_def_string(func, "group", NULL, 0, "", "");
+ RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
+ /* return */
+ parm = RNA_def_pointer(func, "result", "GizmoGroupProperties", "", "");
+ RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_RNAPTR);
+ RNA_def_function_return(func, parm);
+
+ func = RNA_def_function(srna, "refresh_from_context", "rna_WorkSpaceTool_refresh_from_context");
+ RNA_def_function_flag(func, FUNC_USE_SELF_ID | FUNC_USE_MAIN);
}
#endif