Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_ui_api.c
| Show First 20 Lines • Show All 1,486 Lines • ▼ Show 20 Lines | # endif | ||||
| func = RNA_def_function(srna, "template_reports_banner", "uiTemplateReportsBanner"); | func = RNA_def_function(srna, "template_reports_banner", "uiTemplateReportsBanner"); | ||||
| RNA_def_function_flag(func, FUNC_USE_CONTEXT); | RNA_def_function_flag(func, FUNC_USE_CONTEXT); | ||||
| func = RNA_def_function(srna, "template_input_status", "uiTemplateInputStatus"); | func = RNA_def_function(srna, "template_input_status", "uiTemplateInputStatus"); | ||||
| RNA_def_function_flag(func, FUNC_USE_CONTEXT); | RNA_def_function_flag(func, FUNC_USE_CONTEXT); | ||||
| func = RNA_def_function(srna, "template_node_link", "uiTemplateNodeLink"); | func = RNA_def_function(srna, "template_node_link", "uiTemplateNodeLink"); | ||||
| RNA_def_function_flag(func, FUNC_USE_CONTEXT); | |||||
| parm = RNA_def_pointer(func, "ntree", "NodeTree", "", ""); | parm = RNA_def_pointer(func, "ntree", "NodeTree", "", ""); | ||||
| RNA_def_parameter_flags(parm, 0, PARM_REQUIRED); | RNA_def_parameter_flags(parm, 0, PARM_REQUIRED); | ||||
| parm = RNA_def_pointer(func, "node", "Node", "", ""); | parm = RNA_def_pointer(func, "node", "Node", "", ""); | ||||
| RNA_def_parameter_flags(parm, 0, PARM_REQUIRED); | RNA_def_parameter_flags(parm, 0, PARM_REQUIRED); | ||||
| parm = RNA_def_pointer(func, "socket", "NodeSocket", "", ""); | parm = RNA_def_pointer(func, "socket", "NodeSocket", "", ""); | ||||
| RNA_def_parameter_flags(parm, 0, PARM_REQUIRED); | RNA_def_parameter_flags(parm, 0, PARM_REQUIRED); | ||||
| func = RNA_def_function(srna, "template_node_view", "uiTemplateNodeView"); | func = RNA_def_function(srna, "template_node_view", "uiTemplateNodeView"); | ||||
| ▲ Show 20 Lines • Show All 80 Lines • Show Last 20 Lines | |||||