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:
authorCampbell Barton <ideasman42@gmail.com>2019-03-25 11:30:59 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-25 11:30:59 +0300
commit6d8a945f06e3dfd720de4839d9df67989ce32388 (patch)
treef91c4e96bb59b29cfd6c7e40628f9228c538f1f2 /source/blender
parenta5bbfd9fcaaf8f314ba96bade208ca0c66091ac1 (diff)
UI: replace popovers with prop_popover_enum
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 9bab1bf5d6d..fd465d51ae6 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -2124,26 +2124,6 @@ const EnumPropertyItem *rna_TransformOrientation_with_scene_itemf(
#undef V3D_ORIENT_DEFAULT
-void rna_TransformOrientationSlot_ui_info(
- ID *scene_id, TransformOrientationSlot *orient_slot,
- char *r_name, int *r_icon_value)
-{
- Scene *scene = (Scene *)scene_id;
-
- if (orient_slot->type < V3D_ORIENT_CUSTOM) {
- const EnumPropertyItem *items = rna_enum_transform_orientation_items;
- const int i = RNA_enum_from_value(items, orient_slot->type);
- strcpy(r_name, items[i].name);
- *r_icon_value = items[i].icon;
- }
- else {
- TransformOrientation *orientation = BKE_scene_transform_orientation_find(
- scene, orient_slot->index_custom);
- strcpy(r_name, orientation->name);
- *r_icon_value = ICON_OBJECT_ORIGIN;
- }
-}
-
static const EnumPropertyItem *rna_UnitSettings_itemf_wrapper(
const int system, const int type, bool *r_free)
{
@@ -2330,20 +2310,6 @@ static void rna_def_transform_orientation_slot(BlenderRNA *brna)
RNA_def_property_boolean_sdna(prop, NULL, "flag", SELECT);
RNA_def_property_ui_text(prop, "Use", "Use scene orientation instead of a custom setting");
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);
-
- FunctionRNA *func;
- PropertyRNA *parm;
-
- /* UI access only (avoid slow RNA introspection). */
- func = RNA_def_function(srna, "ui_info", "rna_TransformOrientationSlot_ui_info");
- RNA_def_function_ui_description(func, "");
- RNA_def_function_flag(func, FUNC_USE_SELF_ID);
- parm = RNA_def_string(func, "name", NULL, sizeof(((TransformOrientation *)NULL)->name), "name", "");
- RNA_def_parameter_flags(parm, PROP_THICK_WRAP, 0);
- RNA_def_function_output(func, parm);
- parm = RNA_def_property(func, "icon_value", PROP_INT, PROP_NONE);
- RNA_def_property_ui_text(parm, "", "");
- RNA_def_function_output(func, parm);
}
static void rna_def_view3d_cursor(BlenderRNA *brna)