Blender V4.3
rna_space_api.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9#include "DNA_object_types.h"
10
11#include "RNA_access.hh"
12#include "RNA_define.hh"
13
14#include "rna_internal.hh"
15
16#ifdef RNA_RUNTIME
17
18# include "BKE_global.hh"
19
20# include "ED_fileselect.hh"
21# include "ED_screen.hh"
22# include "ED_text.hh"
23
24int rna_object_type_visibility_icon_get_common(int object_type_exclude_viewport,
25 const int *object_type_exclude_select)
26{
27 const int view_value = (object_type_exclude_viewport != 0);
28
29 if (object_type_exclude_select) {
30 /* Ignore selection values when view is off,
31 * intent is to show if visible objects aren't selectable. */
32 const int select_value = (*object_type_exclude_select & ~object_type_exclude_viewport) != 0;
33 return ICON_VIS_SEL_11 + (view_value << 1) + select_value;
34 }
35
36 return view_value ? ICON_HIDE_ON : ICON_HIDE_OFF;
37}
38
39static void rna_RegionView3D_update(ID *id, RegionView3D *rv3d, bContext *C)
40{
41 bScreen *screen = (bScreen *)id;
42
43 ScrArea *area;
44 ARegion *region;
45
46 area_region_from_regiondata(screen, rv3d, &area, &region);
47
48 if (area && region && area->spacetype == SPACE_VIEW3D) {
49 Main *bmain = CTX_data_main(C);
50 View3D *v3d = static_cast<View3D *>(area->spacedata.first);
52
53 LISTBASE_FOREACH (wmWindow *, win, &wm->windows) {
54 if (WM_window_get_active_screen(win) == screen) {
57 Depsgraph *depsgraph = BKE_scene_ensure_depsgraph(bmain, scene, view_layer);
58
59 ED_view3d_update_viewmat(depsgraph, scene, v3d, region, nullptr, nullptr, nullptr, false);
60 break;
61 }
62 }
63 }
64}
65
66static void rna_SpaceTextEditor_region_location_from_cursor(
67 ID *id, SpaceText *st, int line, int column, int r_pixel_pos[2])
68{
69 bScreen *screen = (bScreen *)id;
71 if (area) {
73 const int cursor_co[2] = {line, column};
74 if (!ED_space_text_region_location_from_cursor(st, region, cursor_co, r_pixel_pos)) {
75 r_pixel_pos[0] = r_pixel_pos[1] = -1;
76 }
77 }
78}
79
80#else
81
83{
84 FunctionRNA *func;
85
86 func = RNA_def_function(srna, "update", "rna_RegionView3D_update");
88 RNA_def_function_ui_description(func, "Recalculate the view matrices");
89}
90
92{
93 FunctionRNA *func;
94 PropertyRNA *parm;
95
96 func = RNA_def_function(
97 srna, "cursor_location_from_region", "rna_SpaceNodeEditor_cursor_location_from_region");
98 RNA_def_function_ui_description(func, "Set the cursor location using region coordinates");
100 parm = RNA_def_int(func, "x", 0, INT_MIN, INT_MAX, "x", "Region x coordinate", -10000, 10000);
102 parm = RNA_def_int(func, "y", 0, INT_MIN, INT_MAX, "y", "Region y coordinate", -10000, 10000);
104}
105
107{
108 FunctionRNA *func;
109 PropertyRNA *parm;
110
111 func = RNA_def_function(
112 srna, "region_location_from_cursor", "rna_SpaceTextEditor_region_location_from_cursor");
114 func, "Retrieve the region position from the given line and character position");
116 parm = RNA_def_int(func, "line", 0, INT_MIN, INT_MAX, "Line", "Line index", 0, INT_MAX);
118 parm = RNA_def_int(func, "column", 0, INT_MIN, INT_MAX, "Column", "Column index", 0, INT_MAX);
120 parm = RNA_def_int_array(
121 func, "result", 2, nullptr, -1, INT_MAX, "", "Region coordinates", -1, INT_MAX);
122 RNA_def_function_output(func, parm);
123}
124
126 int noteflag,
127 const char *update_func)
128{
129 PropertyRNA *prop;
130
131 struct {
132 const char *name;
133 int type_mask;
134 const char *identifier[2];
135 const char *description[2];
136 } info[] = {
137 {"Mesh",
138 (1 << OB_MESH),
139 {"show_object_viewport_mesh", "show_object_select_mesh"},
140 {"Show mesh objects", "Allow selection of mesh objects"}},
141 {"Curve",
142 (1 << OB_CURVES_LEGACY),
143 {"show_object_viewport_curve", "show_object_select_curve"},
144 {"Show curves", "Allow selection of curves"}},
145 {"Surface",
146 (1 << OB_SURF),
147 {"show_object_viewport_surf", "show_object_select_surf"},
148 {"Show surfaces", "Allow selection of surfaces"}},
149 {"Meta",
150 (1 << OB_MBALL),
151 {"show_object_viewport_meta", "show_object_select_meta"},
152 {"Show metaballs", "Allow selection of metaballs"}},
153 {"Font",
154 (1 << OB_FONT),
155 {"show_object_viewport_font", "show_object_select_font"},
156 {"Show text objects", "Allow selection of text objects"}},
157 {"Hair Curves",
158 (1 << OB_CURVES),
159 {"show_object_viewport_curves", "show_object_select_curves"},
160 {"Show hair curves", "Allow selection of hair curves"}},
161 {"Point Cloud",
162 (1 << OB_POINTCLOUD),
163 {"show_object_viewport_pointcloud", "show_object_select_pointcloud"},
164 {"Show point clouds", "Allow selection of point clouds"}},
165 {"Volume",
166 (1 << OB_VOLUME),
167 {"show_object_viewport_volume", "show_object_select_volume"},
168 {"Show volumes", "Allow selection of volumes"}},
169 {"Armature",
170 (1 << OB_ARMATURE),
171 {"show_object_viewport_armature", "show_object_select_armature"},
172 {"Show armatures", "Allow selection of armatures"}},
173 {"Lattice",
174 (1 << OB_LATTICE),
175 {"show_object_viewport_lattice", "show_object_select_lattice"},
176 {"Show lattices", "Allow selection of lattices"}},
177 {"Empty",
178 (1 << OB_EMPTY),
179 {"show_object_viewport_empty", "show_object_select_empty"},
180 {"Show empties", "Allow selection of empties"}},
181 {"Grease Pencil",
182 (1 << OB_GREASE_PENCIL),
183 {"show_object_viewport_grease_pencil", "show_object_select_grease_pencil"},
184 {"Show grease pencil objects", "Allow selection of grease pencil objects"}},
185 {"Camera",
186 (1 << OB_CAMERA),
187 {"show_object_viewport_camera", "show_object_select_camera"},
188 {"Show cameras", "Allow selection of cameras"}},
189 {"Light",
190 (1 << OB_LAMP),
191 {"show_object_viewport_light", "show_object_select_light"},
192 {"Show lights", "Allow selection of lights"}},
193 {"Speaker",
194 (1 << OB_SPEAKER),
195 {"show_object_viewport_speaker", "show_object_select_speaker"},
196 {"Show speakers", "Allow selection of speakers"}},
197 {"Light Probe",
198 (1 << OB_LIGHTPROBE),
199 {"show_object_viewport_light_probe", "show_object_select_light_probe"},
200 {"Show light probes", "Allow selection of light probes"}},
201 };
202
203 const char *view_mask_member[2] = {
204 "object_type_exclude_viewport",
205 "object_type_exclude_select",
206 };
207 for (int mask_index = 0; mask_index < 2; mask_index++) {
208 for (int type_index = 0; type_index < ARRAY_SIZE(info); type_index++) {
209 prop = RNA_def_property(
210 srna, info[type_index].identifier[mask_index], PROP_BOOLEAN, PROP_NONE);
212 prop, nullptr, view_mask_member[mask_index], info[type_index].type_mask);
214 prop, info[type_index].name, info[type_index].description[mask_index]);
215 RNA_def_property_update(prop, noteflag, update_func);
216 }
217 }
218}
219
221{
222 FunctionRNA *func;
223 PropertyRNA *parm;
224
225 func = RNA_def_function(srna, "activate_asset_by_id", "ED_fileselect_activate_by_id");
227 func, "Activate and select the asset entry that represents the given ID");
228
229 parm = RNA_def_property(func, "id_to_activate", PROP_POINTER, PROP_NONE);
232
233 parm = RNA_def_boolean(
234 func,
235 "deferred",
236 false,
237 "",
238 "Whether to activate the ID immediately (false) or after the file browser refreshes (true)");
239
240 /* Select file by relative path. */
241 func = RNA_def_function(
242 srna, "activate_file_by_relative_path", "ED_fileselect_activate_by_relpath");
244 "Set active file and add to selection based on relative path to "
245 "current File Browser directory");
246 RNA_def_property(func, "relative_path", PROP_STRING, PROP_FILEPATH);
247
248 /* Deselect all files. */
249 func = RNA_def_function(srna, "deselect_all", "ED_fileselect_deselect_all");
250 RNA_def_function_ui_description(func, "Deselect all files");
251}
252
253#endif
Main * CTX_data_main(const bContext *C)
wmWindowManager * CTX_wm_manager(const bContext *C)
Depsgraph * BKE_scene_ensure_depsgraph(Main *bmain, Scene *scene, ViewLayer *view_layer)
Definition scene.cc:3377
ARegion ARegion ScrArea * BKE_screen_find_area_from_space(const bScreen *screen, const SpaceLink *sl) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(1
ARegion * BKE_area_find_region_type(const ScrArea *area, int region_type)
Definition screen.cc:815
#define LISTBASE_FOREACH(type, var, list)
#define ARRAY_SIZE(arr)
Object is a sort of wrapper for general info.
@ OB_SPEAKER
@ OB_LATTICE
@ OB_MBALL
@ OB_EMPTY
@ OB_SURF
@ OB_CAMERA
@ OB_FONT
@ OB_GREASE_PENCIL
@ OB_ARMATURE
@ OB_LAMP
@ OB_MESH
@ OB_POINTCLOUD
@ OB_VOLUME
@ OB_CURVES_LEGACY
@ OB_CURVES
@ OB_LIGHTPROBE
@ RGN_TYPE_WINDOW
@ SPACE_VIEW3D
bool ED_space_text_region_location_from_cursor(const SpaceText *st, const ARegion *region, const int cursor_co[2], int r_pixel_co[2])
void ED_view3d_update_viewmat(const Depsgraph *depsgraph, const Scene *scene, View3D *v3d, ARegion *region, const float viewmat[4][4], const float winmat[4][4], const rcti *rect, bool offscreen)
@ PARM_REQUIRED
Definition RNA_types.hh:397
@ FUNC_USE_CONTEXT
Definition RNA_types.hh:679
@ FUNC_USE_SELF_ID
Definition RNA_types.hh:667
@ PROP_BOOLEAN
Definition RNA_types.hh:65
@ PROP_STRING
Definition RNA_types.hh:68
@ PROP_POINTER
Definition RNA_types.hh:70
PropertyFlag
Definition RNA_types.hh:201
@ PROP_NONE
Definition RNA_types.hh:136
@ PROP_FILEPATH
Definition RNA_types.hh:139
const Depsgraph * depsgraph
PropertyRNA * RNA_def_int_array(StructOrFunctionRNA *cont_, const char *identifier, const int len, const int *default_value, const int hardmin, const int hardmax, const char *ui_name, const char *ui_description, const int softmin, const int softmax)
void RNA_def_property_ui_text(PropertyRNA *prop, const char *name, const char *description)
FunctionRNA * RNA_def_function(StructRNA *srna, const char *identifier, const char *call)
void RNA_def_property_struct_type(PropertyRNA *prop, const char *type)
void RNA_def_function_ui_description(FunctionRNA *func, const char *description)
void RNA_def_property_update(PropertyRNA *prop, int noteflag, const char *func)
PropertyRNA * RNA_def_property(StructOrFunctionRNA *cont_, const char *identifier, int type, int subtype)
void RNA_def_function_flag(FunctionRNA *func, int flag)
PropertyRNA * RNA_def_boolean(StructOrFunctionRNA *cont_, const char *identifier, const bool default_value, const char *ui_name, const char *ui_description)
void RNA_def_function_output(FunctionRNA *, PropertyRNA *ret)
PropertyRNA * RNA_def_int(StructOrFunctionRNA *cont_, const char *identifier, const int default_value, const int hardmin, const int hardmax, const char *ui_name, const char *ui_description, const int softmin, const int softmax)
void RNA_def_property_boolean_negative_sdna(PropertyRNA *prop, const char *structname, const char *propname, int64_t booleanbit)
void RNA_def_parameter_flags(PropertyRNA *prop, PropertyFlag flag_property, ParameterFlag flag_parameter)
int rna_object_type_visibility_icon_get_common(int object_type_exclude_viewport, const int *object_type_exclude_select)
void rna_def_object_type_visibility_flags_common(StructRNA *srna, int noteflag, const char *update_func)
void RNA_api_region_view3d(StructRNA *srna)
void RNA_api_space_filebrowser(StructRNA *srna)
void RNA_api_space_node(StructRNA *srna)
void RNA_api_space_text(StructRNA *srna)
Definition DNA_ID.h:413
ViewLayer * WM_window_get_active_view_layer(const wmWindow *win)
Scene * WM_window_get_active_scene(const wmWindow *win)
bScreen * WM_window_get_active_screen(const wmWindow *win)