[Bf-blender-cvs] [16b15aed4e8] master: Cleanup: use "_update" suffix for RNA update callbacks

Campbell Barton noreply at git.blender.org
Fri May 24 04:59:00 CEST 2019


Commit: 16b15aed4e8bce686e103b465cd0b5f410c75431
Author: Campbell Barton
Date:   Fri May 24 12:56:14 2019 +1000
Branches: master
https://developer.blender.org/rB16b15aed4e8bce686e103b465cd0b5f410c75431

Cleanup: use "_update" suffix for RNA update callbacks

===================================================================

M	source/blender/makesrna/intern/rna_sequencer.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index 3a316a760d6..5a80dc5fe8c 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -111,7 +111,9 @@ static void rna_SequenceElement_update(Main *UNUSED(bmain), Scene *UNUSED(scene)
   }
 }
 
-static void rna_Sequence_invalidate_raw(Main *UNUSED(bmain), Scene *UNUSED(scene), PointerRNA *ptr)
+static void rna_Sequence_invalidate_raw_update(Main *UNUSED(bmain),
+                                               Scene *UNUSED(scene),
+                                               PointerRNA *ptr)
 {
   Scene *scene = (Scene *)ptr->id.data;
   Editing *ed = BKE_sequencer_editing_get(scene, false);
@@ -123,9 +125,9 @@ static void rna_Sequence_invalidate_raw(Main *UNUSED(bmain), Scene *UNUSED(scene
   }
 }
 
-static void rna_Sequence_invalidate_preprocessed(Main *UNUSED(bmain),
-                                                 Scene *UNUSED(scene),
-                                                 PointerRNA *ptr)
+static void rna_Sequence_invalidate_preprocessed_update(Main *UNUSED(bmain),
+                                                        Scene *UNUSED(scene),
+                                                        PointerRNA *ptr)
 {
   Scene *scene = (Scene *)ptr->id.data;
   Editing *ed = BKE_sequencer_editing_get(scene, false);
@@ -137,9 +139,9 @@ static void rna_Sequence_invalidate_preprocessed(Main *UNUSED(bmain),
   }
 }
 
-static void rna_Sequence_invalidate_composite(Main *UNUSED(bmain),
-                                              Scene *UNUSED(scene),
-                                              PointerRNA *ptr)
+static void rna_Sequence_invalidate_composite_update(Main *UNUSED(bmain),
+                                                     Scene *UNUSED(scene),
+                                                     PointerRNA *ptr)
 {
   Scene *scene = (Scene *)ptr->id.data;
   Editing *ed = BKE_sequencer_editing_get(scene, false);
@@ -222,7 +224,7 @@ static void rna_SequenceEditor_elements_begin(CollectionPropertyIterator *iter,
 
 static void rna_Sequence_views_format_update(Main *bmain, Scene *scene, PointerRNA *ptr)
 {
-  rna_Sequence_invalidate_raw(bmain, scene, ptr);
+  rna_Sequence_invalidate_raw_update(bmain, scene, ptr);
 }
 
 static void do_sequence_frame_change_update(Scene *scene, Sequence *seq)
@@ -256,7 +258,7 @@ static void rna_Sequence_frame_change_update(Main *bmain, Scene *UNUSED(scene),
 {
   Scene *scene = (Scene *)ptr->id.data;
   do_sequence_frame_change_update(scene, (Sequence *)ptr->data);
-  rna_Sequence_invalidate_preprocessed(bmain, scene, ptr);
+  rna_Sequence_invalidate_preprocessed_update(bmain, scene, ptr);
 }
 
 static void rna_Sequence_start_frame_set(PointerRNA *ptr, int value)
@@ -777,13 +779,13 @@ static void rna_SequenceElement_filename_set(PointerRNA *ptr, const char *value)
 }
 #  endif
 
-static void rna_Sequence_update_reopen_files(Main *bmain, Scene *UNUSED(scene), PointerRNA *ptr)
+static void rna_Sequence_reopen_files_update(Main *bmain, Scene *UNUSED(scene), PointerRNA *ptr)
 {
   Scene *scene = (Scene *)ptr->id.data;
   Editing *ed = BKE_sequencer_editing_get(scene, false);
 
   BKE_sequencer_free_imbuf(scene, &ed->seqbase, false);
-  rna_Sequence_invalidate_raw(bmain, scene, ptr);
+  rna_Sequence_invalidate_raw_update(bmain, scene, ptr);
 
   if (RNA_struct_is_a(ptr->type, &RNA_SoundSequence))
     BKE_sequencer_update_sound_bounds(scene, ptr->data);
@@ -803,7 +805,7 @@ static void rna_Sequence_filepath_update(Main *bmain, Scene *UNUSED(scene), Poin
   Sequence *seq = (Sequence *)(ptr->data);
   BKE_sequence_reload_new_file(scene, seq, true);
   BKE_sequence_calc(scene, seq);
-  rna_Sequence_invalidate_raw(bmain, scene, ptr);
+  rna_Sequence_invalidate_raw_update(bmain, scene, ptr);
 }
 
 static void rna_Sequence_sound_update(Main *UNUSED(bmain), Scene *UNUSED(scene), PointerRNA *ptr)
@@ -1365,12 +1367,12 @@ static void rna_def_strip_proxy(BlenderRNA *brna)
   prop = RNA_def_property(srna, "use_proxy_custom_directory", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "storage", SEQ_STORAGE_PROXY_CUSTOM_DIR);
   RNA_def_property_ui_text(prop, "Proxy Custom Directory", "Use a custom directory to store data");
-  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_raw");
+  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_raw_update");
 
   prop = RNA_def_property(srna, "use_proxy_custom_file", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "storage", SEQ_STORAGE_PROXY_CUSTOM_FILE);
   RNA_def_property_ui_text(prop, "Proxy Custom File", "Use a custom file to read proxy data from");
-  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_raw");
+  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_raw_update");
 }
 
 static void rna_def_color_balance(BlenderRNA *brna)
@@ -1578,7 +1580,7 @@ static void rna_def_sequence(BlenderRNA *brna)
   RNA_def_property_enum_items(prop, seq_type_items);
   RNA_def_property_ui_text(prop, "Type", "");
   RNA_def_property_translation_context(prop, BLT_I18NCONTEXT_ID_SEQUENCE);
-  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_raw");
+  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_raw_update");
 
   /* flags */
   prop = RNA_def_property(srna, "select", PROP_BOOLEAN, PROP_NONE);
@@ -1619,7 +1621,8 @@ static void rna_def_sequence(BlenderRNA *brna)
   RNA_def_property_int_funcs(
       prop, "rna_Sequence_frame_length_get", "rna_Sequence_frame_length_set", NULL);
   RNA_def_property_editable_func(prop, "rna_Sequence_frame_editable");
-  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed");
+  RNA_def_property_update(
+      prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed_update");
 
   prop = RNA_def_property(srna, "frame_duration", PROP_INT, PROP_TIME);
   RNA_def_property_int_sdna(prop, NULL, "len");
@@ -1635,7 +1638,8 @@ static void rna_def_sequence(BlenderRNA *brna)
   RNA_def_property_int_funcs(
       prop, NULL, "rna_Sequence_start_frame_set", NULL); /* overlap tests and calc_seq_disp */
   RNA_def_property_editable_func(prop, "rna_Sequence_frame_editable");
-  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed");
+  RNA_def_property_update(
+      prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed_update");
 
   prop = RNA_def_property(srna, "frame_final_start", PROP_INT, PROP_TIME);
   RNA_def_property_int_sdna(prop, NULL, "startdisp");
@@ -1648,7 +1652,8 @@ static void rna_def_sequence(BlenderRNA *brna)
   /* overlap tests and calc_seq_disp */
   RNA_def_property_int_funcs(prop, NULL, "rna_Sequence_start_frame_final_set", NULL);
   RNA_def_property_editable_func(prop, "rna_Sequence_frame_editable");
-  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed");
+  RNA_def_property_update(
+      prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed_update");
 
   prop = RNA_def_property(srna, "frame_final_end", PROP_INT, PROP_TIME);
   RNA_def_property_int_sdna(prop, NULL, "enddisp");
@@ -1658,7 +1663,8 @@ static void rna_def_sequence(BlenderRNA *brna)
   /* overlap tests and calc_seq_disp */
   RNA_def_property_int_funcs(prop, NULL, "rna_Sequence_end_frame_final_set", NULL);
   RNA_def_property_editable_func(prop, "rna_Sequence_frame_editable");
-  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed");
+  RNA_def_property_update(
+      prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed_update");
 
   prop = RNA_def_property(srna, "frame_offset_start", PROP_INT, PROP_TIME);
   RNA_def_property_int_sdna(prop, NULL, "startofs");
@@ -1694,14 +1700,16 @@ static void rna_def_sequence(BlenderRNA *brna)
   RNA_def_property_range(prop, 1, MAXSEQ);
   RNA_def_property_ui_text(prop, "Channel", "Y position of the sequence strip");
   RNA_def_property_int_funcs(prop, NULL, "rna_Sequence_channel_set", NULL); /* overlap test */
-  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed");
+  RNA_def_property_update(
+      prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed_update");
 
   prop = RNA_def_property(srna, "use_linear_modifiers", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_USE_LINEAR_MODIFIERS);
   RNA_def_property_ui_text(prop,
                            "Use Linear Modifiers",
                            "Calculate modifiers in linear space instead of sequencer's space");
-  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed");
+  RNA_def_property_update(
+      prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed_update");
 
   /* blending */
 
@@ -1710,7 +1718,8 @@ static void rna_def_sequence(BlenderRNA *brna)
   RNA_def_property_enum_items(prop, blend_mode_items);
   RNA_def_property_ui_text(
       prop, "Blend Mode", "Method for controlling how the strip combines with other strips");
-  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed");
+  RNA_def_property_update(
+      prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed_update");
 
   prop = RNA_def_property(srna, "blend_alpha", PROP_FLOAT, PROP_FACTOR);
   RNA_def_property_range(prop, 0.0f, 1.0f);
@@ -1718,14 +1727,16 @@ static void rna_def_sequence(BlenderRNA *brna)
       prop, "Blend Opacity", "Percentage of how much the strip's colors affect other strips");
   /* stupid 0-100 -> 0-1 */
   RNA_def_property_float_funcs(prop, "rna_Sequence_opacity_get", "rna_Sequence_opacity_set", NULL);
-  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_composite");
+  RNA_def_property_update(
+      prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_composite_update");
 
   prop = RNA_def_property(srna, "effect_fader", PROP_FLOAT, PROP

@@ Diff output truncated at 10240 characters. @@



More information about the Bf-blender-cvs mailing list