From 4c3bb77012024a3f14181eafe850b4d68bca1191 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 22 Mar 2012 07:26:09 +0000 Subject: style cleanup: spaces aroudn operators for operator definitions. --- source/blender/editors/object/object_add.c | 188 ++++++++--------- source/blender/editors/object/object_bake.c | 12 +- source/blender/editors/object/object_constraint.c | 242 +++++++++++----------- source/blender/editors/object/object_edit.c | 194 ++++++++--------- source/blender/editors/object/object_group.c | 68 +++--- source/blender/editors/object/object_hook.c | 88 ++++---- source/blender/editors/object/object_lattice.c | 24 +-- source/blender/editors/object/object_modifier.c | 222 ++++++++++---------- source/blender/editors/object/object_relations.c | 192 ++++++++--------- source/blender/editors/object/object_select.c | 92 ++++---- source/blender/editors/object/object_shapekey.c | 56 ++--- source/blender/editors/object/object_transform.c | 74 +++---- source/blender/editors/object/object_vgroup.c | 230 ++++++++++---------- 13 files changed, 841 insertions(+), 841 deletions(-) (limited to 'source/blender/editors/object') diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index 996dd4ca59f..8a8ce53c1d5 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -365,18 +365,18 @@ static int object_add_exec(bContext *C, wmOperator *op) void OBJECT_OT_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Object"; + ot->name = "Add Object"; ot->description = "Add an object to the scene"; - ot->idname= "OBJECT_OT_add"; + ot->idname = "OBJECT_OT_add"; /* api callbacks */ - ot->invoke= ED_object_add_generic_invoke; - ot->exec= object_add_exec; + ot->invoke = ED_object_add_generic_invoke; + ot->exec = object_add_exec; - ot->poll= ED_operator_objectmode; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_enum(ot->srna, "type", object_type_items, 0, "Type", ""); @@ -457,20 +457,20 @@ static int effector_add_exec(bContext *C, wmOperator *op) void OBJECT_OT_effector_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Effector"; + ot->name = "Add Effector"; ot->description = "Add an empty object with a physics effector to the scene"; - ot->idname= "OBJECT_OT_effector_add"; + ot->idname = "OBJECT_OT_effector_add"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= effector_add_exec; + ot->invoke = WM_menu_invoke; + ot->exec = effector_add_exec; - ot->poll= ED_operator_objectmode; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; - ot->prop= RNA_def_enum(ot->srna, "type", field_type_items, 0, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", field_type_items, 0, "Type", ""); ED_object_add_generic_props(ot, TRUE); } @@ -512,16 +512,16 @@ void OBJECT_OT_camera_add(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name= "Add Camera"; + ot->name = "Add Camera"; ot->description = "Add a camera object to the scene"; - ot->idname= "OBJECT_OT_camera_add"; + ot->idname = "OBJECT_OT_camera_add"; /* api callbacks */ - ot->exec= object_camera_add_exec; - ot->poll= ED_operator_objectmode; + ot->exec = object_camera_add_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; ED_object_add_generic_props(ot, TRUE); @@ -590,17 +590,17 @@ static int object_metaball_add_invoke(bContext *C, wmOperator *op, wmEvent *UNUS void OBJECT_OT_metaball_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Metaball"; - ot->description= "Add an metaball object to the scene"; - ot->idname= "OBJECT_OT_metaball_add"; + ot->name = "Add Metaball"; + ot->description = "Add an metaball object to the scene"; + ot->idname = "OBJECT_OT_metaball_add"; /* api callbacks */ - ot->invoke= object_metaball_add_invoke; - ot->exec= object_metaball_add_exec; - ot->poll= ED_operator_scene_editable; + ot->invoke = object_metaball_add_invoke; + ot->exec = object_metaball_add_exec; + ot->poll = ED_operator_scene_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_enum(ot->srna, "type", metaelem_type_items, 0, "Primitive", ""); ED_object_add_generic_props(ot, TRUE); @@ -630,17 +630,17 @@ static int object_add_text_exec(bContext *C, wmOperator *op) void OBJECT_OT_text_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Text"; + ot->name = "Add Text"; ot->description = "Add a text object to the scene"; - ot->idname= "OBJECT_OT_text_add"; + ot->idname = "OBJECT_OT_text_add"; /* api callbacks */ - ot->invoke= ED_object_add_generic_invoke; - ot->exec= object_add_text_exec; - ot->poll= ED_operator_objectmode; + ot->invoke = ED_object_add_generic_invoke; + ot->exec = object_add_text_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; ED_object_add_generic_props(ot, TRUE); } @@ -685,17 +685,17 @@ static int object_armature_add_exec(bContext *C, wmOperator *op) void OBJECT_OT_armature_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Armature"; + ot->name = "Add Armature"; ot->description = "Add an armature object to the scene"; - ot->idname= "OBJECT_OT_armature_add"; + ot->idname = "OBJECT_OT_armature_add"; /* api callbacks */ - ot->invoke= ED_object_add_generic_invoke; - ot->exec= object_armature_add_exec; - ot->poll= ED_operator_objectmode; + ot->invoke = ED_object_add_generic_invoke; + ot->exec = object_armature_add_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; ED_object_add_generic_props(ot, TRUE); } @@ -752,20 +752,20 @@ void OBJECT_OT_lamp_add(wmOperatorType *ot) {0, NULL, 0, NULL, NULL}}; /* identifiers */ - ot->name= "Add Lamp"; + ot->name = "Add Lamp"; ot->description = "Add a lamp object to the scene"; - ot->idname= "OBJECT_OT_lamp_add"; + ot->idname = "OBJECT_OT_lamp_add"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= object_lamp_add_exec; - ot->poll= ED_operator_objectmode; + ot->invoke = WM_menu_invoke; + ot->exec = object_lamp_add_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ - ot->prop= RNA_def_enum(ot->srna, "type", lamp_type_items, 0, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", lamp_type_items, 0, "Type", ""); ED_object_add_generic_props(ot, FALSE); } @@ -843,16 +843,16 @@ static int object_speaker_add_exec(bContext *C, wmOperator *op) void OBJECT_OT_speaker_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Speaker"; + ot->name = "Add Speaker"; ot->description = "Add a speaker object to the scene"; - ot->idname= "OBJECT_OT_speaker_add"; + ot->idname = "OBJECT_OT_speaker_add"; /* api callbacks */ - ot->exec= object_speaker_add_exec; - ot->poll= ED_operator_objectmode; + ot->exec = object_speaker_add_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; ED_object_add_generic_props(ot, TRUE); } @@ -863,23 +863,23 @@ void OBJECT_OT_group_instance_add(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name= "Add Group Instance"; + ot->name = "Add Group Instance"; ot->description = "Add a dupligroup instance"; - ot->idname= "OBJECT_OT_group_instance_add"; + ot->idname = "OBJECT_OT_group_instance_add"; /* api callbacks */ - ot->invoke= WM_enum_search_invoke; - ot->exec= group_instance_add_exec; + ot->invoke = WM_enum_search_invoke; + ot->exec = group_instance_add_exec; - ot->poll= ED_operator_objectmode; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ prop= RNA_def_enum(ot->srna, "group", DummyRNA_NULL_items, 0, "Group", ""); RNA_def_enum_funcs(prop, RNA_group_itemf); - ot->prop= prop; + ot->prop = prop; ED_object_add_generic_props(ot, FALSE); } @@ -946,17 +946,17 @@ static int object_delete_exec(bContext *C, wmOperator *op) void OBJECT_OT_delete(wmOperatorType *ot) { /* identifiers */ - ot->name= "Delete"; + ot->name = "Delete"; ot->description = "Delete selected objects"; - ot->idname= "OBJECT_OT_delete"; + ot->idname = "OBJECT_OT_delete"; /* api callbacks */ - ot->invoke= WM_operator_confirm; - ot->exec= object_delete_exec; - ot->poll= ED_operator_objectmode; + ot->invoke = WM_operator_confirm; + ot->exec = object_delete_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_boolean(ot->srna, "use_global", 0, "Delete Globally", "Remove object from all scenes"); } @@ -1209,17 +1209,17 @@ void OBJECT_OT_duplicates_make_real(wmOperatorType *ot) { /* identifiers */ - ot->name= "Make Duplicates Real"; + ot->name = "Make Duplicates Real"; ot->description = "Make dupli objects attached to this object real"; - ot->idname= "OBJECT_OT_duplicates_make_real"; + ot->idname = "OBJECT_OT_duplicates_make_real"; /* api callbacks */ - ot->exec= object_duplicates_make_real_exec; + ot->exec = object_duplicates_make_real_exec; - ot->poll= ED_operator_objectmode; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_boolean(ot->srna, "use_base_parent", 0, "Parent", "Parent newly created objects to the original duplicator"); RNA_def_boolean(ot->srna, "use_hierarchy", 0, "Keep Hierarchy", "Maintain parent child relationships"); @@ -1580,20 +1580,20 @@ static int convert_exec(bContext *C, wmOperator *op) void OBJECT_OT_convert(wmOperatorType *ot) { /* identifiers */ - ot->name= "Convert to"; + ot->name = "Convert to"; ot->description = "Convert selected objects to another type"; - ot->idname= "OBJECT_OT_convert"; + ot->idname = "OBJECT_OT_convert"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= convert_exec; - ot->poll= convert_poll; + ot->invoke = WM_menu_invoke; + ot->exec = convert_exec; + ot->poll = convert_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ - ot->prop= RNA_def_enum(ot->srna, "target", convert_target_items, OB_MESH, "Target", "Type of object to convert to"); + ot->prop = RNA_def_enum(ot->srna, "target", convert_target_items, OB_MESH, "Target", "Type of object to convert to"); RNA_def_boolean(ot->srna, "keep_original", 0, "Keep Original", "Keep original objects instead of replacing them"); } @@ -1910,16 +1910,16 @@ void OBJECT_OT_duplicate(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name= "Duplicate Objects"; + ot->name = "Duplicate Objects"; ot->description = "Duplicate selected objects"; - ot->idname= "OBJECT_OT_duplicate"; + ot->idname = "OBJECT_OT_duplicate"; /* api callbacks */ - ot->exec= duplicate_exec; - ot->poll= ED_operator_objectmode; + ot->exec = duplicate_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* to give to transform */ RNA_def_boolean(ot->srna, "linked", 0, "Linked", "Duplicate object but not object data, linking to the original data"); @@ -1981,16 +1981,16 @@ static int add_named_exec(bContext *C, wmOperator *op) void OBJECT_OT_add_named(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Named Object"; + ot->name = "Add Named Object"; ot->description = "Add named object"; - ot->idname= "OBJECT_OT_add_named"; + ot->idname = "OBJECT_OT_add_named"; /* api callbacks */ - ot->exec= add_named_exec; - ot->poll= ED_operator_objectmode; + ot->exec = add_named_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_boolean(ot->srna, "linked", 0, "Linked", "Duplicate object but not object data, linking to the original data"); RNA_def_string(ot->srna, "name", "Cube", MAX_ID_NAME-2, "Name", "Object name to add"); @@ -2039,16 +2039,16 @@ static int join_exec(bContext *C, wmOperator *op) void OBJECT_OT_join(wmOperatorType *ot) { /* identifiers */ - ot->name= "Join"; + ot->name = "Join"; ot->description = "Join selected objects into active object"; - ot->idname= "OBJECT_OT_join"; + ot->idname = "OBJECT_OT_join"; /* api callbacks */ - ot->exec= join_exec; - ot->poll= join_poll; + ot->exec = join_exec; + ot->poll = join_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /**************************** Join as Shape Key*************************/ @@ -2088,14 +2088,14 @@ static int join_shapes_exec(bContext *C, wmOperator *op) void OBJECT_OT_join_shapes(wmOperatorType *ot) { /* identifiers */ - ot->name= "Join as Shapes"; + ot->name = "Join as Shapes"; ot->description = "Merge selected objects to shapes of active object"; - ot->idname= "OBJECT_OT_join_shapes"; + ot->idname = "OBJECT_OT_join_shapes"; /* api callbacks */ - ot->exec= join_shapes_exec; - ot->poll= join_shapes_poll; + ot->exec = join_shapes_exec; + ot->poll = join_shapes_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } diff --git a/source/blender/editors/object/object_bake.c b/source/blender/editors/object/object_bake.c index b9cbc653c19..4f64a64607e 100644 --- a/source/blender/editors/object/object_bake.c +++ b/source/blender/editors/object/object_bake.c @@ -1536,12 +1536,12 @@ static int bake_image_exec(bContext *C, wmOperator *op) void OBJECT_OT_bake_image(wmOperatorType *ot) { /* identifiers */ - ot->name= "Bake"; - ot->description= "Bake image textures of selected objects"; - ot->idname= "OBJECT_OT_bake_image"; + ot->name = "Bake"; + ot->description = "Bake image textures of selected objects"; + ot->idname = "OBJECT_OT_bake_image"; /* api callbacks */ - ot->exec= bake_image_exec; - ot->invoke= objects_bake_render_invoke; - ot->modal= objects_bake_render_modal; + ot->exec = bake_image_exec; + ot->invoke = objects_bake_render_invoke; + ot->modal = objects_bake_render_modal; } diff --git a/source/blender/editors/object/object_constraint.c b/source/blender/editors/object/object_constraint.c index 2529b6f518f..e1dca0278f4 100644 --- a/source/blender/editors/object/object_constraint.c +++ b/source/blender/editors/object/object_constraint.c @@ -644,16 +644,16 @@ static int stretchto_reset_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED(e void CONSTRAINT_OT_stretchto_reset (wmOperatorType *ot) { /* identifiers */ - ot->name= "Reset Original Length"; - ot->idname= "CONSTRAINT_OT_stretchto_reset"; - ot->description= "Reset original length of bone for Stretch To Constraint"; + ot->name = "Reset Original Length"; + ot->idname = "CONSTRAINT_OT_stretchto_reset"; + ot->description = "Reset original length of bone for Stretch To Constraint"; - ot->exec= stretchto_reset_exec; - ot->invoke= stretchto_reset_invoke; - ot->poll= edit_constraint_poll; + ot->exec = stretchto_reset_exec; + ot->invoke = stretchto_reset_invoke; + ot->poll = edit_constraint_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_constraint_properties(ot); } @@ -687,16 +687,16 @@ static int limitdistance_reset_invoke(bContext *C, wmOperator *op, wmEvent *UNUS void CONSTRAINT_OT_limitdistance_reset (wmOperatorType *ot) { /* identifiers */ - ot->name= "Reset Distance"; - ot->idname= "CONSTRAINT_OT_limitdistance_reset"; - ot->description= "Reset limiting distance for Limit Distance Constraint"; + ot->name = "Reset Distance"; + ot->idname = "CONSTRAINT_OT_limitdistance_reset"; + ot->description = "Reset limiting distance for Limit Distance Constraint"; - ot->exec= limitdistance_reset_exec; - ot->invoke= limitdistance_reset_invoke; - ot->poll= edit_constraint_poll; + ot->exec = limitdistance_reset_exec; + ot->invoke = limitdistance_reset_invoke; + ot->poll = edit_constraint_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_constraint_properties(ot); } @@ -813,16 +813,16 @@ static int childof_set_inverse_invoke(bContext *C, wmOperator *op, wmEvent *UNUS void CONSTRAINT_OT_childof_set_inverse (wmOperatorType *ot) { /* identifiers */ - ot->name= "Set Inverse"; - ot->idname= "CONSTRAINT_OT_childof_set_inverse"; - ot->description= "Set inverse correction for ChildOf constraint"; + ot->name = "Set Inverse"; + ot->idname = "CONSTRAINT_OT_childof_set_inverse"; + ot->description = "Set inverse correction for ChildOf constraint"; - ot->exec= childof_set_inverse_exec; - ot->invoke= childof_set_inverse_invoke; - ot->poll= edit_constraint_poll; + ot->exec = childof_set_inverse_exec; + ot->invoke = childof_set_inverse_invoke; + ot->poll = edit_constraint_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_constraint_properties(ot); } @@ -857,16 +857,16 @@ static int childof_clear_inverse_invoke(bContext *C, wmOperator *op, wmEvent *UN void CONSTRAINT_OT_childof_clear_inverse (wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear Inverse"; - ot->idname= "CONSTRAINT_OT_childof_clear_inverse"; - ot->description= "Clear inverse correction for ChildOf constraint"; + ot->name = "Clear Inverse"; + ot->idname = "CONSTRAINT_OT_childof_clear_inverse"; + ot->description = "Clear inverse correction for ChildOf constraint"; - ot->exec= childof_clear_inverse_exec; - ot->invoke= childof_clear_inverse_invoke; - ot->poll= edit_constraint_poll; + ot->exec = childof_clear_inverse_exec; + ot->invoke = childof_clear_inverse_invoke; + ot->poll = edit_constraint_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_constraint_properties(ot); } @@ -904,16 +904,16 @@ static int objectsolver_set_inverse_invoke(bContext *C, wmOperator *op, wmEvent void CONSTRAINT_OT_objectsolver_set_inverse (wmOperatorType *ot) { /* identifiers */ - ot->name= "Set Inverse"; - ot->idname= "CONSTRAINT_OT_objectsolver_set_inverse"; - ot->description= "Set inverse correction for ObjectSolver constraint"; + ot->name = "Set Inverse"; + ot->idname = "CONSTRAINT_OT_objectsolver_set_inverse"; + ot->description = "Set inverse correction for ObjectSolver constraint"; - ot->exec= objectsolver_set_inverse_exec; - ot->invoke= objectsolver_set_inverse_invoke; - ot->poll= edit_constraint_poll; + ot->exec = objectsolver_set_inverse_exec; + ot->invoke = objectsolver_set_inverse_invoke; + ot->poll = edit_constraint_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_constraint_properties(ot); } @@ -947,16 +947,16 @@ static int objectsolver_clear_inverse_invoke(bContext *C, wmOperator *op, wmEven void CONSTRAINT_OT_objectsolver_clear_inverse (wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear Inverse"; - ot->idname= "CONSTRAINT_OT_objectsolver_clear_inverse"; - ot->description= "Clear inverse correction for ObjectSolver constraint"; + ot->name = "Clear Inverse"; + ot->idname = "CONSTRAINT_OT_objectsolver_clear_inverse"; + ot->description = "Clear inverse correction for ObjectSolver constraint"; - ot->exec= objectsolver_clear_inverse_exec; - ot->invoke= objectsolver_clear_inverse_invoke; - ot->poll= edit_constraint_poll; + ot->exec = objectsolver_clear_inverse_exec; + ot->invoke = objectsolver_clear_inverse_invoke; + ot->poll = edit_constraint_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_constraint_properties(ot); } @@ -1033,16 +1033,16 @@ static int constraint_delete_exec (bContext *C, wmOperator *UNUSED(op)) void CONSTRAINT_OT_delete (wmOperatorType *ot) { /* identifiers */ - ot->name= "Delete Constraint"; - ot->idname= "CONSTRAINT_OT_delete"; - ot->description= "Remove constraint from constraint stack"; + ot->name = "Delete Constraint"; + ot->idname = "CONSTRAINT_OT_delete"; + ot->description = "Remove constraint from constraint stack"; /* callbacks */ - ot->exec= constraint_delete_exec; - ot->poll= constraint_poll; + ot->exec = constraint_delete_exec; + ot->poll = constraint_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int constraint_move_down_exec (bContext *C, wmOperator *op) @@ -1078,17 +1078,17 @@ static int constraint_move_down_invoke(bContext *C, wmOperator *op, wmEvent *UNU void CONSTRAINT_OT_move_down (wmOperatorType *ot) { /* identifiers */ - ot->name= "Move Constraint Down"; - ot->idname= "CONSTRAINT_OT_move_down"; - ot->description= "Move constraint down in constraint stack"; + ot->name = "Move Constraint Down"; + ot->idname = "CONSTRAINT_OT_move_down"; + ot->description = "Move constraint down in constraint stack"; /* callbacks */ - ot->exec= constraint_move_down_exec; - ot->invoke= constraint_move_down_invoke; - ot->poll= edit_constraint_poll; + ot->exec = constraint_move_down_exec; + ot->invoke = constraint_move_down_invoke; + ot->poll = edit_constraint_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_constraint_properties(ot); } @@ -1125,17 +1125,17 @@ static int constraint_move_up_invoke(bContext *C, wmOperator *op, wmEvent *UNUSE void CONSTRAINT_OT_move_up (wmOperatorType *ot) { /* identifiers */ - ot->name= "Move Constraint Up"; - ot->idname= "CONSTRAINT_OT_move_up"; - ot->description= "Move constraint up in constraint stack"; + ot->name = "Move Constraint Up"; + ot->idname = "CONSTRAINT_OT_move_up"; + ot->description = "Move constraint up in constraint stack"; /* callbacks */ - ot->exec= constraint_move_up_exec; - ot->invoke= constraint_move_up_invoke; - ot->poll= edit_constraint_poll; + ot->exec = constraint_move_up_exec; + ot->invoke = constraint_move_up_invoke; + ot->poll = edit_constraint_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_constraint_properties(ot); } @@ -1173,12 +1173,12 @@ void POSE_OT_constraints_clear(wmOperatorType *ot) { /* identifiers */ ot->name = "Clear Pose Constraints"; - ot->idname= "POSE_OT_constraints_clear"; - ot->description= "Clear all the constraints for the selected bones"; + ot->idname = "POSE_OT_constraints_clear"; + ot->description = "Clear all the constraints for the selected bones"; /* callbacks */ - ot->exec= pose_constraints_clear_exec; - ot->poll= ED_operator_posemode; // XXX - do we want to ensure there are selected bones too? + ot->exec = pose_constraints_clear_exec; + ot->poll = ED_operator_posemode; // XXX - do we want to ensure there are selected bones too? } @@ -1208,12 +1208,12 @@ void OBJECT_OT_constraints_clear(wmOperatorType *ot) { /* identifiers */ ot->name = "Clear Object Constraints"; - ot->idname= "OBJECT_OT_constraints_clear"; - ot->description= "Clear all the constraints for the active Object only"; + ot->idname = "OBJECT_OT_constraints_clear"; + ot->description = "Clear all the constraints for the active Object only"; /* callbacks */ - ot->exec= object_constraints_clear_exec; - ot->poll= ED_operator_object_active_editable; + ot->exec = object_constraints_clear_exec; + ot->poll = ED_operator_object_active_editable; } /************************ copy all constraints operators *********************/ @@ -1253,16 +1253,16 @@ static int pose_constraint_copy_exec(bContext *C, wmOperator *op) void POSE_OT_constraints_copy(wmOperatorType *ot) { /* identifiers */ - ot->name= "Copy Constraints to Selected"; - ot->idname= "POSE_OT_constraints_copy"; + ot->name = "Copy Constraints to Selected"; + ot->idname = "POSE_OT_constraints_copy"; ot->description = "Copy constraints to other selected bones"; /* api callbacks */ - ot->exec= pose_constraint_copy_exec; - ot->poll= ED_operator_posemode; + ot->exec = pose_constraint_copy_exec; + ot->poll = ED_operator_posemode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int object_constraint_copy_exec(bContext *C, wmOperator *UNUSED(op)) @@ -1294,16 +1294,16 @@ static int object_constraint_copy_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_constraints_copy(wmOperatorType *ot) { /* identifiers */ - ot->name= "Copy Constraints to Selected"; - ot->idname= "OBJECT_OT_constraints_copy"; + ot->name = "Copy Constraints to Selected"; + ot->idname = "OBJECT_OT_constraints_copy"; ot->description = "Copy constraints to other selected objects"; /* api callbacks */ - ot->exec= object_constraint_copy_exec; - ot->poll= ED_operator_object_active_editable; + ot->exec = object_constraint_copy_exec; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /************************ add constraint operators *********************/ @@ -1609,77 +1609,77 @@ static int pose_constraint_add_exec(bContext *C, wmOperator *op) void OBJECT_OT_constraint_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Constraint"; + ot->name = "Add Constraint"; ot->description = "Add a constraint to the active object"; - ot->idname= "OBJECT_OT_constraint_add"; + ot->idname = "OBJECT_OT_constraint_add"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= object_constraint_add_exec; - ot->poll= ED_operator_object_active_editable; + ot->invoke = WM_menu_invoke; + ot->exec = object_constraint_add_exec; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ - ot->prop= RNA_def_enum(ot->srna, "type", constraint_type_items, 0, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", constraint_type_items, 0, "Type", ""); } void OBJECT_OT_constraint_add_with_targets(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Constraint (with Targets)"; + ot->name = "Add Constraint (with Targets)"; ot->description = "Add a constraint to the active object, with target (where applicable) set to the selected Objects/Bones"; - ot->idname= "OBJECT_OT_constraint_add_with_targets"; + ot->idname = "OBJECT_OT_constraint_add_with_targets"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= object_constraint_add_exec; - ot->poll= ED_operator_object_active_editable; + ot->invoke = WM_menu_invoke; + ot->exec = object_constraint_add_exec; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ - ot->prop= RNA_def_enum(ot->srna, "type", constraint_type_items, 0, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", constraint_type_items, 0, "Type", ""); } void POSE_OT_constraint_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Constraint"; + ot->name = "Add Constraint"; ot->description = "Add a constraint to the active bone"; - ot->idname= "POSE_OT_constraint_add"; + ot->idname = "POSE_OT_constraint_add"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= pose_constraint_add_exec; - ot->poll= ED_operator_posemode; + ot->invoke = WM_menu_invoke; + ot->exec = pose_constraint_add_exec; + ot->poll = ED_operator_posemode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ - ot->prop= RNA_def_enum(ot->srna, "type", constraint_type_items, 0, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", constraint_type_items, 0, "Type", ""); } void POSE_OT_constraint_add_with_targets(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Constraint (with Targets)"; + ot->name = "Add Constraint (with Targets)"; ot->description = "Add a constraint to the active bone, with target (where applicable) set to the selected Objects/Bones"; - ot->idname= "POSE_OT_constraint_add_with_targets"; + ot->idname = "POSE_OT_constraint_add_with_targets"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= pose_constraint_add_exec; - ot->poll= ED_operator_posemode; + ot->invoke = WM_menu_invoke; + ot->exec = pose_constraint_add_exec; + ot->poll = ED_operator_posemode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ - ot->prop= RNA_def_enum(ot->srna, "type", constraint_type_items, 0, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", constraint_type_items, 0, "Type", ""); } /************************ IK Constraint operators *********************/ @@ -1752,17 +1752,17 @@ static int pose_ik_add_exec(bContext *C, wmOperator *op) void POSE_OT_ik_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add IK to Bone"; - ot->description= "Add IK Constraint to the active Bone"; - ot->idname= "POSE_OT_ik_add"; + ot->name = "Add IK to Bone"; + ot->description = "Add IK Constraint to the active Bone"; + ot->idname = "POSE_OT_ik_add"; /* api callbacks */ - ot->invoke= pose_ik_add_invoke; - ot->exec= pose_ik_add_exec; - ot->poll= ED_operator_posemode; + ot->invoke = pose_ik_add_invoke; + ot->exec = pose_ik_add_exec; + ot->poll = ED_operator_posemode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ RNA_def_boolean(ot->srna, "with_targets", 1, "With Targets", "Assign IK Constraint with targets derived from the select bones/objects"); @@ -1803,15 +1803,15 @@ static int pose_ik_clear_exec(bContext *C, wmOperator *UNUSED(op)) void POSE_OT_ik_clear(wmOperatorType *ot) { /* identifiers */ - ot->name= "Remove IK"; - ot->description= "Remove all IK Constraints from selected bones"; - ot->idname= "POSE_OT_ik_clear"; + ot->name = "Remove IK"; + ot->description = "Remove all IK Constraints from selected bones"; + ot->idname = "POSE_OT_ik_clear"; /* api callbacks */ - ot->exec= pose_ik_clear_exec; - ot->poll= ED_operator_posemode; + ot->exec = pose_ik_clear_exec; + ot->poll = ED_operator_posemode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c index e456e6f0796..10f30818931 100644 --- a/source/blender/editors/object/object_edit.c +++ b/source/blender/editors/object/object_edit.c @@ -161,16 +161,16 @@ void OBJECT_OT_hide_view_clear(wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear Restrict View"; + ot->name = "Clear Restrict View"; ot->description = "Reveal the object by setting the hide flag"; - ot->idname= "OBJECT_OT_hide_view_clear"; + ot->idname = "OBJECT_OT_hide_view_clear"; /* api callbacks */ - ot->exec= object_hide_view_clear_exec; - ot->poll= ED_operator_view3d_active; + ot->exec = object_hide_view_clear_exec; + ot->poll = ED_operator_view3d_active; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int object_hide_view_set_exec(bContext *C, wmOperator *op) @@ -215,16 +215,16 @@ static int object_hide_view_set_exec(bContext *C, wmOperator *op) void OBJECT_OT_hide_view_set(wmOperatorType *ot) { /* identifiers */ - ot->name= "Set Restrict View"; + ot->name = "Set Restrict View"; ot->description = "Hide the object by setting the hide flag"; - ot->idname= "OBJECT_OT_hide_view_set"; + ot->idname = "OBJECT_OT_hide_view_set"; /* api callbacks */ - ot->exec= object_hide_view_set_exec; - ot->poll= ED_operator_view3d_active; + ot->exec = object_hide_view_set_exec; + ot->poll = ED_operator_view3d_active; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_boolean(ot->srna, "unselected", 0, "Unselected", "Hide unselected rather than selected objects"); @@ -254,16 +254,16 @@ void OBJECT_OT_hide_render_clear(wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear Restrict Render"; + ot->name = "Clear Restrict Render"; ot->description = "Reveal the render object by setting the hide render flag"; - ot->idname= "OBJECT_OT_hide_render_clear"; + ot->idname = "OBJECT_OT_hide_render_clear"; /* api callbacks */ - ot->exec= object_hide_render_clear_exec; - ot->poll= ED_operator_view3d_active; + ot->exec = object_hide_render_clear_exec; + ot->poll = ED_operator_view3d_active; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int object_hide_render_set_exec(bContext *C, wmOperator *op) @@ -290,16 +290,16 @@ static int object_hide_render_set_exec(bContext *C, wmOperator *op) void OBJECT_OT_hide_render_set(wmOperatorType *ot) { /* identifiers */ - ot->name= "Set Restrict Render"; + ot->name = "Set Restrict Render"; ot->description = "Hide the render object by setting the hide render flag"; - ot->idname= "OBJECT_OT_hide_render_set"; + ot->idname = "OBJECT_OT_hide_render_set"; /* api callbacks */ - ot->exec= object_hide_render_set_exec; - ot->poll= ED_operator_view3d_active; + ot->exec = object_hide_render_set_exec; + ot->poll = ED_operator_view3d_active; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_boolean(ot->srna, "unselected", 0, "Unselected", "Hide unselected rather than selected objects"); } @@ -547,17 +547,17 @@ void OBJECT_OT_editmode_toggle(wmOperatorType *ot) { /* identifiers */ - ot->name= "Toggle Editmode"; + ot->name = "Toggle Editmode"; ot->description = "Toggle object's editmode"; - ot->idname= "OBJECT_OT_editmode_toggle"; + ot->idname = "OBJECT_OT_editmode_toggle"; /* api callbacks */ - ot->exec= editmode_toggle_exec; + ot->exec = editmode_toggle_exec; - ot->poll= editmode_toggle_poll; + ot->poll = editmode_toggle_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /* *************************** */ @@ -585,16 +585,16 @@ static int posemode_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_posemode_toggle(wmOperatorType *ot) { /* identifiers */ - ot->name= "Toggle Pose Mode"; - ot->idname= "OBJECT_OT_posemode_toggle"; - ot->description= "Enable or disable posing/selecting bones"; + ot->name = "Toggle Pose Mode"; + ot->idname = "OBJECT_OT_posemode_toggle"; + ot->description = "Enable or disable posing/selecting bones"; /* api callbacks */ - ot->exec= posemode_exec; - ot->poll= ED_operator_object_active_editable; + ot->exec = posemode_exec; + ot->poll = ED_operator_object_active_editable; /* flag */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static void copymenu_properties(Scene *scene, View3D *v3d, Object *ob) @@ -1071,16 +1071,16 @@ void OBJECT_OT_forcefield_toggle(wmOperatorType *ot) { /* identifiers */ - ot->name= "Toggle Force Field"; + ot->name = "Toggle Force Field"; ot->description = "Toggle object's force field"; - ot->idname= "OBJECT_OT_forcefield_toggle"; + ot->idname = "OBJECT_OT_forcefield_toggle"; /* api callbacks */ - ot->exec= forcefield_toggle_exec; - ot->poll= ED_operator_object_active_editable; + ot->exec = forcefield_toggle_exec; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /* ********************************************** */ @@ -1137,16 +1137,16 @@ static int object_calculate_paths_exec (bContext *C, wmOperator *op) void OBJECT_OT_paths_calculate (wmOperatorType *ot) { /* identifiers */ - ot->name= "Calculate Object Paths"; - ot->idname= "OBJECT_OT_paths_calculate"; - ot->description= "Calculate paths for the selected bones"; + ot->name = "Calculate Object Paths"; + ot->idname = "OBJECT_OT_paths_calculate"; + ot->description = "Calculate paths for the selected bones"; /* api callbacks */ - ot->exec= object_calculate_paths_exec; - ot->poll= ED_operator_object_active_editable; + ot->exec = object_calculate_paths_exec; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /* --------- */ @@ -1181,13 +1181,13 @@ static int object_clear_paths_exec (bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_paths_clear (wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear Object Paths"; - ot->idname= "OBJECT_OT_paths_clear"; - ot->description= "Clear path caches for selected bones"; + ot->name = "Clear Object Paths"; + ot->idname = "OBJECT_OT_paths_clear"; + ot->description = "Clear path caches for selected bones"; /* api callbacks */ - ot->exec= object_clear_paths_exec; - ot->poll= ED_operator_object_active_editable; + ot->exec = object_clear_paths_exec; + ot->poll = ED_operator_object_active_editable; /* flags */ ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; @@ -1240,31 +1240,31 @@ static int shade_poll(bContext *C) void OBJECT_OT_shade_flat(wmOperatorType *ot) { /* identifiers */ - ot->name= "Shade Flat"; - ot->description= "Display faces 'flat'"; - ot->idname= "OBJECT_OT_shade_flat"; + ot->name = "Shade Flat"; + ot->description = "Display faces 'flat'"; + ot->idname = "OBJECT_OT_shade_flat"; /* api callbacks */ - ot->poll= shade_poll; - ot->exec= shade_smooth_exec; + ot->poll = shade_poll; + ot->exec = shade_smooth_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } void OBJECT_OT_shade_smooth(wmOperatorType *ot) { /* identifiers */ - ot->name= "Shade Smooth"; - ot->description= "Display faces 'smooth' (using vertex normals)"; - ot->idname= "OBJECT_OT_shade_smooth"; + ot->name = "Shade Smooth"; + ot->description = "Display faces 'smooth' (using vertex normals)"; + ot->idname = "OBJECT_OT_shade_smooth"; /* api callbacks */ - ot->poll= shade_poll; - ot->exec= shade_smooth_exec; + ot->poll = shade_poll; + ot->exec = shade_smooth_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /* ********************** */ @@ -1450,17 +1450,17 @@ void OBJECT_OT_mode_set(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name= "Set Object Mode"; + ot->name = "Set Object Mode"; ot->description = "Sets the object interaction mode"; - ot->idname= "OBJECT_OT_mode_set"; + ot->idname = "OBJECT_OT_mode_set"; /* api callbacks */ - ot->exec= object_mode_set_exec; + ot->exec = object_mode_set_exec; - ot->poll= ED_operator_object_active_editable; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= 0; /* no register/undo here, leave it to operators being called */ + ot->flag = 0; /* no register/undo here, leave it to operators being called */ prop= RNA_def_enum(ot->srna, "mode", object_mode_items, OB_MODE_OBJECT, "Mode", ""); RNA_def_enum_funcs(prop, object_mode_set_itemsf); @@ -1515,16 +1515,16 @@ static int game_property_new(bContext *C, wmOperator *op) void OBJECT_OT_game_property_new(wmOperatorType *ot) { /* identifiers */ - ot->name= "New Game Property"; - ot->description= "Create a new property available to the game engine"; - ot->idname= "OBJECT_OT_game_property_new"; + ot->name = "New Game Property"; + ot->description = "Create a new property available to the game engine"; + ot->idname = "OBJECT_OT_game_property_new"; /* api callbacks */ - ot->exec= game_property_new; - ot->poll= ED_operator_object_active_editable; + ot->exec = game_property_new; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_enum(ot->srna, "type", gameproperty_type_items, GPROP_FLOAT, "Type", "Type of game property to add"); RNA_def_string(ot->srna, "name", "", MAX_NAME, "Name", "Name of the game property to add"); @@ -1556,16 +1556,16 @@ static int game_property_remove(bContext *C, wmOperator *op) void OBJECT_OT_game_property_remove(wmOperatorType *ot) { /* identifiers */ - ot->name= "Remove Game Property"; - ot->description= "Remove game property"; - ot->idname= "OBJECT_OT_game_property_remove"; + ot->name = "Remove Game Property"; + ot->description = "Remove game property"; + ot->idname = "OBJECT_OT_game_property_remove"; /* api callbacks */ - ot->exec= game_property_remove; - ot->poll= ED_operator_object_active_editable; + ot->exec = game_property_remove; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_int(ot->srna, "index", 0, 0, INT_MAX, "Index", "Property index to remove ", 0, INT_MAX); } @@ -1647,20 +1647,20 @@ void OBJECT_OT_game_property_copy(wmOperatorType *ot) { PropertyRNA *prop; /* identifiers */ - ot->name= "Copy Game Property"; - ot->idname= "OBJECT_OT_game_property_copy"; + ot->name = "Copy Game Property"; + ot->idname = "OBJECT_OT_game_property_copy"; /* api callbacks */ - ot->exec= game_property_copy_exec; - ot->poll= ED_operator_object_active_editable; + ot->exec = game_property_copy_exec; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_enum(ot->srna, "operation", game_properties_copy_operations, 3, "Operation", ""); prop=RNA_def_enum(ot->srna, "property", gameprops_items, 0, "Property", "Properties to copy"); RNA_def_enum_funcs(prop, gameprops_itemf); - ot->prop=prop; + ot->prop = prop; } static int game_property_clear_exec(bContext *C, wmOperator *UNUSED(op)) @@ -1676,15 +1676,15 @@ static int game_property_clear_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_game_property_clear(wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear Game Property"; - ot->idname= "OBJECT_OT_game_property_clear"; + ot->name = "Clear Game Property"; + ot->idname = "OBJECT_OT_game_property_clear"; /* api callbacks */ - ot->exec= game_property_clear_exec; - ot->poll= ED_operator_object_active_editable; + ot->exec = game_property_clear_exec; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /************************ Copy Logic Bricks ***********************/ @@ -1733,16 +1733,16 @@ static int logicbricks_copy_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_logic_bricks_copy(wmOperatorType *ot) { /* identifiers */ - ot->name= "Copy Logic Bricks to Selected"; + ot->name = "Copy Logic Bricks to Selected"; ot->description = "Copy logic bricks to other selected objects"; - ot->idname= "OBJECT_OT_logic_bricks_copy"; + ot->idname = "OBJECT_OT_logic_bricks_copy"; /* api callbacks */ - ot->exec= logicbricks_copy_exec; - ot->poll= ED_operator_object_active_editable; + ot->exec = logicbricks_copy_exec; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int game_physics_copy_exec(bContext *C, wmOperator *UNUSED(op)) @@ -1781,14 +1781,14 @@ static int game_physics_copy_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_game_physics_copy(struct wmOperatorType *ot) { /* identifiers */ - ot->name= "Copy Game Physics Properties to Selected"; + ot->name = "Copy Game Physics Properties to Selected"; ot->description = "Copy game physics properties to other selected objects"; - ot->idname= "OBJECT_OT_game_physics_copy"; + ot->idname = "OBJECT_OT_game_physics_copy"; /* api callbacks */ - ot->exec= game_physics_copy_exec; - ot->poll= ED_operator_object_active_editable; + ot->exec = game_physics_copy_exec; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } diff --git a/source/blender/editors/object/object_group.c b/source/blender/editors/object/object_group.c index d5dfbda8696..fd664275259 100644 --- a/source/blender/editors/object/object_group.c +++ b/source/blender/editors/object/object_group.c @@ -94,16 +94,16 @@ static int objects_add_active_exec(bContext *C, wmOperator *op) void GROUP_OT_objects_add_active(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Selected To Active Group"; + ot->name = "Add Selected To Active Group"; ot->description = "Add the object to an object group that contains the active object"; - ot->idname= "GROUP_OT_objects_add_active"; + ot->idname = "GROUP_OT_objects_add_active"; /* api callbacks */ - ot->exec= objects_add_active_exec; - ot->poll= ED_operator_objectmode; + ot->exec = objects_add_active_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int objects_remove_active_exec(bContext *C, wmOperator *op) @@ -141,16 +141,16 @@ static int objects_remove_active_exec(bContext *C, wmOperator *op) void GROUP_OT_objects_remove_active(wmOperatorType *ot) { /* identifiers */ - ot->name= "Remove Selected From Active Group"; + ot->name = "Remove Selected From Active Group"; ot->description = "Remove the object from an object group that contains the active object"; - ot->idname= "GROUP_OT_objects_remove_active"; + ot->idname = "GROUP_OT_objects_remove_active"; /* api callbacks */ - ot->exec= objects_remove_active_exec; - ot->poll= ED_operator_objectmode; + ot->exec = objects_remove_active_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int group_objects_remove_exec(bContext *C, wmOperator *UNUSED(op)) @@ -175,16 +175,16 @@ static int group_objects_remove_exec(bContext *C, wmOperator *UNUSED(op)) void GROUP_OT_objects_remove(wmOperatorType *ot) { /* identifiers */ - ot->name= "Remove From Groups"; + ot->name = "Remove From Groups"; ot->description = "Remove selected objects from all groups"; - ot->idname= "GROUP_OT_objects_remove"; + ot->idname = "GROUP_OT_objects_remove"; /* api callbacks */ - ot->exec= group_objects_remove_exec; - ot->poll= ED_operator_objectmode; + ot->exec = group_objects_remove_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int group_create_exec(bContext *C, wmOperator *op) @@ -212,16 +212,16 @@ static int group_create_exec(bContext *C, wmOperator *op) void GROUP_OT_create(wmOperatorType *ot) { /* identifiers */ - ot->name= "Create New Group"; + ot->name = "Create New Group"; ot->description = "Create an object group from selected objects"; - ot->idname= "GROUP_OT_create"; + ot->idname = "GROUP_OT_create"; /* api callbacks */ - ot->exec= group_create_exec; - ot->poll= ED_operator_objectmode; + ot->exec = group_create_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_string(ot->srna, "name", "Group", MAX_ID_NAME-2, "Name", "Name of the new group"); } @@ -248,15 +248,15 @@ static int group_add_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_group_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add to Group"; - ot->idname= "OBJECT_OT_group_add"; + ot->name = "Add to Group"; + ot->idname = "OBJECT_OT_group_add"; ot->description = "Add an object to a new group"; /* api callbacks */ - ot->exec= group_add_exec; + ot->exec = group_add_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int group_link_exec(bContext *C, wmOperator *op) @@ -280,21 +280,21 @@ void OBJECT_OT_group_link(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name= "Link to Group"; - ot->idname= "OBJECT_OT_group_link"; + ot->name = "Link to Group"; + ot->idname = "OBJECT_OT_group_link"; ot->description = "Add an object to an existing group"; /* api callbacks */ - ot->exec= group_link_exec; - ot->invoke= WM_enum_search_invoke; + ot->exec = group_link_exec; + ot->invoke = WM_enum_search_invoke; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ prop= RNA_def_enum(ot->srna, "group", DummyRNA_NULL_items, 0, "Group", ""); RNA_def_enum_funcs(prop, RNA_group_local_itemf); - ot->prop= prop; + ot->prop = prop; } static int group_remove_exec(bContext *C, wmOperator *UNUSED(op)) @@ -316,13 +316,13 @@ static int group_remove_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_group_remove(wmOperatorType *ot) { /* identifiers */ - ot->name= "Remove Group"; - ot->idname= "OBJECT_OT_group_remove"; + ot->name = "Remove Group"; + ot->idname = "OBJECT_OT_group_remove"; /* api callbacks */ - ot->exec= group_remove_exec; + ot->exec = group_remove_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } diff --git a/source/blender/editors/object/object_hook.c b/source/blender/editors/object/object_hook.c index eb128ad3025..13294a3e240 100644 --- a/source/blender/editors/object/object_hook.c +++ b/source/blender/editors/object/object_hook.c @@ -505,16 +505,16 @@ static int object_add_hook_selob_exec(bContext *C, wmOperator *op) void OBJECT_OT_hook_add_selobj(wmOperatorType *ot) { /* identifiers */ - ot->name= "Hook to Selected Object"; - ot->description= "Hook selected vertices to the first selected Object"; - ot->idname= "OBJECT_OT_hook_add_selob"; + ot->name = "Hook to Selected Object"; + ot->description = "Hook selected vertices to the first selected Object"; + ot->idname = "OBJECT_OT_hook_add_selob"; /* api callbacks */ - ot->exec= object_add_hook_selob_exec; - ot->poll= hook_op_edit_poll; + ot->exec = object_add_hook_selob_exec; + ot->poll = hook_op_edit_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int object_add_hook_newob_exec(bContext *C, wmOperator *UNUSED(op)) @@ -533,16 +533,16 @@ static int object_add_hook_newob_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_hook_add_newobj(wmOperatorType *ot) { /* identifiers */ - ot->name= "Hook to New Object"; - ot->description= "Hook selected vertices to the first selected Object"; - ot->idname= "OBJECT_OT_hook_add_newob"; + ot->name = "Hook to New Object"; + ot->description = "Hook selected vertices to the first selected Object"; + ot->idname = "OBJECT_OT_hook_add_newob"; /* api callbacks */ - ot->exec= object_add_hook_newob_exec; - ot->poll= hook_op_edit_poll; + ot->exec = object_add_hook_newob_exec; + ot->poll = hook_op_edit_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int object_hook_remove_exec(bContext *C, wmOperator *op) @@ -602,24 +602,24 @@ void OBJECT_OT_hook_remove(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name= "Remove Hook"; - ot->idname= "OBJECT_OT_hook_remove"; - ot->description= "Remove a hook from the active object"; + ot->name = "Remove Hook"; + ot->idname = "OBJECT_OT_hook_remove"; + ot->description = "Remove a hook from the active object"; /* api callbacks */ - ot->exec= object_hook_remove_exec; - ot->invoke= WM_menu_invoke; - ot->poll= hook_op_edit_poll; + ot->exec = object_hook_remove_exec; + ot->invoke = WM_menu_invoke; + ot->poll = hook_op_edit_poll; /* flags */ /* this operator removes modifier which isn't stored in local undo stack, * so redoing it from redo panel gives totally weird results */ - ot->flag= /*OPTYPE_REGISTER|*/OPTYPE_UNDO; + ot->flag = /*OPTYPE_REGISTER|*/OPTYPE_UNDO; /* properties */ prop= RNA_def_enum(ot->srna, "modifier", DummyRNA_NULL_items, 0, "Modifier", "Modifier number to remove"); RNA_def_enum_funcs(prop, hook_mod_itemf); - ot->prop= prop; + ot->prop = prop; } static int object_hook_reset_exec(bContext *C, wmOperator *op) @@ -672,16 +672,16 @@ void OBJECT_OT_hook_reset(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name= "Reset Hook"; - ot->description= "Recalculate and clear offset transformation"; - ot->idname= "OBJECT_OT_hook_reset"; + ot->name = "Reset Hook"; + ot->description = "Recalculate and clear offset transformation"; + ot->idname = "OBJECT_OT_hook_reset"; /* callbacks */ - ot->exec= object_hook_reset_exec; - ot->poll= hook_op_edit_poll; + ot->exec = object_hook_reset_exec; + ot->poll = hook_op_edit_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ prop= RNA_def_enum(ot->srna, "modifier", DummyRNA_NULL_items, 0, "Modifier", "Modifier number to assign to"); @@ -728,16 +728,16 @@ void OBJECT_OT_hook_recenter(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name= "Recenter Hook"; - ot->description= "Set hook center to cursor position"; - ot->idname= "OBJECT_OT_hook_recenter"; + ot->name = "Recenter Hook"; + ot->description = "Set hook center to cursor position"; + ot->idname = "OBJECT_OT_hook_recenter"; /* callbacks */ - ot->exec= object_hook_recenter_exec; - ot->poll= hook_op_edit_poll; + ot->exec = object_hook_recenter_exec; + ot->poll = hook_op_edit_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ prop= RNA_def_enum(ot->srna, "modifier", DummyRNA_NULL_items, 0, "Modifier", "Modifier number to assign to"); @@ -792,18 +792,18 @@ void OBJECT_OT_hook_assign(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name= "Assign to Hook"; - ot->description= "Assign the selected vertices to a hook"; - ot->idname= "OBJECT_OT_hook_assign"; + ot->name = "Assign to Hook"; + ot->description = "Assign the selected vertices to a hook"; + ot->idname = "OBJECT_OT_hook_assign"; /* callbacks */ - ot->exec= object_hook_assign_exec; - ot->poll= hook_op_edit_poll; + ot->exec = object_hook_assign_exec; + ot->poll = hook_op_edit_poll; /* flags */ /* this operator changes data stored in modifier which doesn't get pushed to undo stack, * so redoing it from redo panel gives totally weird results */ - ot->flag= /*OPTYPE_REGISTER|*/OPTYPE_UNDO; + ot->flag = /*OPTYPE_REGISTER|*/OPTYPE_UNDO; /* properties */ prop= RNA_def_enum(ot->srna, "modifier", DummyRNA_NULL_items, 0, "Modifier", "Modifier number to assign to"); @@ -843,16 +843,16 @@ void OBJECT_OT_hook_select(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name= "Select Hook"; - ot->description= "Select affected vertices on mesh"; - ot->idname= "OBJECT_OT_hook_select"; + ot->name = "Select Hook"; + ot->description = "Select affected vertices on mesh"; + ot->idname = "OBJECT_OT_hook_select"; /* callbacks */ - ot->exec= object_hook_select_exec; - ot->poll= hook_op_edit_poll; + ot->exec = object_hook_select_exec; + ot->poll = hook_op_edit_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ prop= RNA_def_enum(ot->srna, "modifier", DummyRNA_NULL_items, 0, "Modifier", "Modifier number to remove"); diff --git a/source/blender/editors/object/object_lattice.c b/source/blender/editors/object/object_lattice.c index 67fdb1777b0..8d83bd6f9be 100644 --- a/source/blender/editors/object/object_lattice.c +++ b/source/blender/editors/object/object_lattice.c @@ -240,16 +240,16 @@ static int lattice_select_all_exec(bContext *C, wmOperator *op) void LATTICE_OT_select_all(wmOperatorType *ot) { /* identifiers */ - ot->name= "(De)select All"; - ot->description= "Change selection of all UVW control points"; - ot->idname= "LATTICE_OT_select_all"; + ot->name = "(De)select All"; + ot->description = "Change selection of all UVW control points"; + ot->idname = "LATTICE_OT_select_all"; /* api callbacks */ - ot->exec= lattice_select_all_exec; - ot->poll= ED_operator_editlattice; + ot->exec = lattice_select_all_exec; + ot->poll = ED_operator_editlattice; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; WM_operator_properties_select_all(ot); } @@ -288,16 +288,16 @@ static int make_regular_exec(bContext *C, wmOperator *UNUSED(op)) void LATTICE_OT_make_regular(wmOperatorType *ot) { /* identifiers */ - ot->name= "Make Regular"; - ot->description= "Set UVW control points a uniform distance apart"; - ot->idname= "LATTICE_OT_make_regular"; + ot->name = "Make Regular"; + ot->description = "Set UVW control points a uniform distance apart"; + ot->idname = "LATTICE_OT_make_regular"; /* api callbacks */ - ot->exec= make_regular_exec; - ot->poll= make_regular_poll; + ot->exec = make_regular_exec; + ot->poll = make_regular_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /****************************** Mouse Selection *************************/ diff --git a/source/blender/editors/object/object_modifier.c b/source/blender/editors/object/object_modifier.c index c420b214a7a..56c150bc662 100644 --- a/source/blender/editors/object/object_modifier.c +++ b/source/blender/editors/object/object_modifier.c @@ -687,22 +687,22 @@ void OBJECT_OT_modifier_add(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name= "Add Modifier"; + ot->name = "Add Modifier"; ot->description = "Add a modifier to the active object"; - ot->idname= "OBJECT_OT_modifier_add"; + ot->idname = "OBJECT_OT_modifier_add"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= modifier_add_exec; - ot->poll= ED_operator_object_active_editable; + ot->invoke = WM_menu_invoke; + ot->exec = modifier_add_exec; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ prop= RNA_def_enum(ot->srna, "type", modifier_type_items, eModifierType_Subsurf, "Type", ""); RNA_def_enum_funcs(prop, modifier_add_itemf); - ot->prop= prop; + ot->prop = prop; } /************************ generic functions for operators using mod names and data context *********************/ @@ -794,16 +794,16 @@ static int modifier_remove_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED(e void OBJECT_OT_modifier_remove(wmOperatorType *ot) { - ot->name= "Remove Modifier"; - ot->description= "Remove a modifier from the active object"; - ot->idname= "OBJECT_OT_modifier_remove"; + ot->name = "Remove Modifier"; + ot->description = "Remove a modifier from the active object"; + ot->idname = "OBJECT_OT_modifier_remove"; - ot->invoke= modifier_remove_invoke; - ot->exec= modifier_remove_exec; - ot->poll= edit_modifier_poll; + ot->invoke = modifier_remove_invoke; + ot->exec = modifier_remove_exec; + ot->poll = edit_modifier_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_modifier_properties(ot); } @@ -833,16 +833,16 @@ static int modifier_move_up_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED( void OBJECT_OT_modifier_move_up(wmOperatorType *ot) { - ot->name= "Move Up Modifier"; - ot->description= "Move modifier up in the stack"; - ot->idname= "OBJECT_OT_modifier_move_up"; + ot->name = "Move Up Modifier"; + ot->description = "Move modifier up in the stack"; + ot->idname = "OBJECT_OT_modifier_move_up"; - ot->invoke= modifier_move_up_invoke; - ot->exec= modifier_move_up_exec; - ot->poll= edit_modifier_poll; + ot->invoke = modifier_move_up_invoke; + ot->exec = modifier_move_up_exec; + ot->poll = edit_modifier_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_modifier_properties(ot); } @@ -872,16 +872,16 @@ static int modifier_move_down_invoke(bContext *C, wmOperator *op, wmEvent *UNUSE void OBJECT_OT_modifier_move_down(wmOperatorType *ot) { - ot->name= "Move Down Modifier"; - ot->description= "Move modifier down in the stack"; - ot->idname= "OBJECT_OT_modifier_move_down"; + ot->name = "Move Down Modifier"; + ot->description = "Move modifier down in the stack"; + ot->idname = "OBJECT_OT_modifier_move_down"; - ot->invoke= modifier_move_down_invoke; - ot->exec= modifier_move_down_exec; - ot->poll= edit_modifier_poll; + ot->invoke = modifier_move_down_invoke; + ot->exec = modifier_move_down_exec; + ot->poll = edit_modifier_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_modifier_properties(ot); } @@ -919,16 +919,16 @@ static EnumPropertyItem modifier_apply_as_items[] = { void OBJECT_OT_modifier_apply(wmOperatorType *ot) { - ot->name= "Apply Modifier"; - ot->description= "Apply modifier and remove from the stack"; - ot->idname= "OBJECT_OT_modifier_apply"; + ot->name = "Apply Modifier"; + ot->description = "Apply modifier and remove from the stack"; + ot->idname = "OBJECT_OT_modifier_apply"; - ot->invoke= modifier_apply_invoke; - ot->exec= modifier_apply_exec; - ot->poll= edit_modifier_poll; + ot->invoke = modifier_apply_invoke; + ot->exec = modifier_apply_exec; + ot->poll = edit_modifier_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_enum(ot->srna, "apply_as", modifier_apply_as_items, MODIFIER_APPLY_DATA, "Apply as", "How to apply the modifier to the geometry"); edit_modifier_properties(ot); @@ -962,16 +962,16 @@ static int modifier_convert_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED( void OBJECT_OT_modifier_convert(wmOperatorType *ot) { - ot->name= "Convert Modifier"; - ot->description= "Convert particles to a mesh object"; - ot->idname= "OBJECT_OT_modifier_convert"; + ot->name = "Convert Modifier"; + ot->description = "Convert particles to a mesh object"; + ot->idname = "OBJECT_OT_modifier_convert"; - ot->invoke= modifier_convert_invoke; - ot->exec= modifier_convert_exec; - ot->poll= edit_modifier_poll; + ot->invoke = modifier_convert_invoke; + ot->exec = modifier_convert_exec; + ot->poll = edit_modifier_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_modifier_properties(ot); } @@ -1001,16 +1001,16 @@ static int modifier_copy_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED(eve void OBJECT_OT_modifier_copy(wmOperatorType *ot) { - ot->name= "Copy Modifier"; - ot->description= "Duplicate modifier at the same position in the stack"; - ot->idname= "OBJECT_OT_modifier_copy"; + ot->name = "Copy Modifier"; + ot->description = "Duplicate modifier at the same position in the stack"; + ot->idname = "OBJECT_OT_modifier_copy"; - ot->invoke= modifier_copy_invoke; - ot->exec= modifier_copy_exec; - ot->poll= edit_modifier_poll; + ot->invoke = modifier_copy_invoke; + ot->exec = modifier_copy_exec; + ot->poll = edit_modifier_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_modifier_properties(ot); } @@ -1046,16 +1046,16 @@ static int multires_higher_levels_delete_invoke(bContext *C, wmOperator *op, wmE void OBJECT_OT_multires_higher_levels_delete(wmOperatorType *ot) { - ot->name= "Delete Higher Levels"; - ot->description= "Deletes the higher resolution mesh, potential loss of detail"; - ot->idname= "OBJECT_OT_multires_higher_levels_delete"; + ot->name = "Delete Higher Levels"; + ot->description = "Deletes the higher resolution mesh, potential loss of detail"; + ot->idname = "OBJECT_OT_multires_higher_levels_delete"; - ot->poll= multires_poll; - ot->invoke= multires_higher_levels_delete_invoke; - ot->exec= multires_higher_levels_delete_exec; + ot->poll = multires_poll; + ot->invoke = multires_higher_levels_delete_invoke; + ot->exec = multires_higher_levels_delete_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_modifier_properties(ot); } @@ -1087,16 +1087,16 @@ static int multires_subdivide_invoke(bContext *C, wmOperator *op, wmEvent *UNUSE void OBJECT_OT_multires_subdivide(wmOperatorType *ot) { - ot->name= "Multires Subdivide"; - ot->description= "Add a new level of subdivision"; - ot->idname= "OBJECT_OT_multires_subdivide"; + ot->name = "Multires Subdivide"; + ot->description = "Add a new level of subdivision"; + ot->idname = "OBJECT_OT_multires_subdivide"; - ot->poll= multires_poll; - ot->invoke= multires_subdivide_invoke; - ot->exec= multires_subdivide_exec; + ot->poll = multires_poll; + ot->invoke = multires_subdivide_invoke; + ot->exec = multires_subdivide_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_modifier_properties(ot); } @@ -1150,16 +1150,16 @@ static int multires_reshape_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED( void OBJECT_OT_multires_reshape(wmOperatorType *ot) { - ot->name= "Multires Reshape"; - ot->description= "Copy vertex coordinates from other object"; - ot->idname= "OBJECT_OT_multires_reshape"; + ot->name = "Multires Reshape"; + ot->description = "Copy vertex coordinates from other object"; + ot->idname = "OBJECT_OT_multires_reshape"; - ot->poll= multires_poll; - ot->invoke= multires_reshape_invoke; - ot->exec= multires_reshape_exec; + ot->poll = multires_poll; + ot->invoke = multires_reshape_invoke; + ot->exec = multires_reshape_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_modifier_properties(ot); } @@ -1224,17 +1224,17 @@ static int multires_external_save_invoke(bContext *C, wmOperator *op, wmEvent *U void OBJECT_OT_multires_external_save(wmOperatorType *ot) { - ot->name= "Multires Save External"; - ot->description= "Save displacements to an external file"; - ot->idname= "OBJECT_OT_multires_external_save"; + ot->name = "Multires Save External"; + ot->description = "Save displacements to an external file"; + ot->idname = "OBJECT_OT_multires_external_save"; - // XXX modifier no longer in context after file browser .. ot->poll= multires_poll; - ot->exec= multires_external_save_exec; - ot->invoke= multires_external_save_invoke; - ot->poll= multires_poll; + // XXX modifier no longer in context after file browser .. ot->poll = multires_poll; + ot->exec = multires_external_save_exec; + ot->invoke = multires_external_save_invoke; + ot->poll = multires_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; WM_operator_properties_filesel(ot, FOLDERFILE|BTXFILE, FILE_SPECIAL, FILE_SAVE, WM_FILESEL_FILEPATH|WM_FILESEL_RELPATH, FILE_DEFAULTDISPLAY); edit_modifier_properties(ot); @@ -1258,15 +1258,15 @@ static int multires_external_pack_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_multires_external_pack(wmOperatorType *ot) { - ot->name= "Multires Pack External"; - ot->description= "Pack displacements from an external file"; - ot->idname= "OBJECT_OT_multires_external_pack"; + ot->name = "Multires Pack External"; + ot->description = "Pack displacements from an external file"; + ot->idname = "OBJECT_OT_multires_external_pack"; - ot->poll= multires_poll; - ot->exec= multires_external_pack_exec; + ot->poll = multires_poll; + ot->exec = multires_external_pack_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /********************* multires apply base ***********************/ @@ -1297,16 +1297,16 @@ static int multires_base_apply_invoke(bContext *C, wmOperator *op, wmEvent *UNUS void OBJECT_OT_multires_base_apply(wmOperatorType *ot) { - ot->name= "Multires Apply Base"; - ot->description= "Modify the base mesh to conform to the displaced mesh"; - ot->idname= "OBJECT_OT_multires_base_apply"; + ot->name = "Multires Apply Base"; + ot->description = "Modify the base mesh to conform to the displaced mesh"; + ot->idname = "OBJECT_OT_multires_base_apply"; - ot->poll= multires_poll; - ot->invoke= multires_base_apply_invoke; - ot->exec= multires_base_apply_exec; + ot->poll = multires_poll; + ot->invoke = multires_base_apply_invoke; + ot->exec = multires_base_apply_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_modifier_properties(ot); } @@ -1391,17 +1391,17 @@ static int meshdeform_bind_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED(e void OBJECT_OT_meshdeform_bind(wmOperatorType *ot) { /* identifiers */ - ot->name= "Mesh Deform Bind"; + ot->name = "Mesh Deform Bind"; ot->description = "Bind mesh to cage in mesh deform modifier"; - ot->idname= "OBJECT_OT_meshdeform_bind"; + ot->idname = "OBJECT_OT_meshdeform_bind"; /* api callbacks */ - ot->poll= meshdeform_poll; - ot->invoke= meshdeform_bind_invoke; - ot->exec= meshdeform_bind_exec; + ot->poll = meshdeform_poll; + ot->invoke = meshdeform_bind_invoke; + ot->exec = meshdeform_bind_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_modifier_properties(ot); } @@ -1439,16 +1439,16 @@ static int explode_refresh_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED(e void OBJECT_OT_explode_refresh(wmOperatorType *ot) { - ot->name= "Explode Refresh"; - ot->description= "Refresh data in the Explode modifier"; - ot->idname= "OBJECT_OT_explode_refresh"; + ot->name = "Explode Refresh"; + ot->description = "Refresh data in the Explode modifier"; + ot->idname = "OBJECT_OT_explode_refresh"; - ot->poll= explode_poll; - ot->invoke= explode_refresh_invoke; - ot->exec= explode_refresh_exec; + ot->poll = explode_poll; + ot->invoke = explode_refresh_invoke; + ot->exec = explode_refresh_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_modifier_properties(ot); } @@ -1654,16 +1654,16 @@ static int ocean_bake_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED(event) void OBJECT_OT_ocean_bake(wmOperatorType *ot) { - ot->name= "Bake Ocean"; - ot->description= "Bake an image sequence of ocean data"; - ot->idname= "OBJECT_OT_ocean_bake"; + ot->name = "Bake Ocean"; + ot->description = "Bake an image sequence of ocean data"; + ot->idname = "OBJECT_OT_ocean_bake"; - ot->poll= ocean_bake_poll; - ot->invoke= ocean_bake_invoke; - ot->exec= ocean_bake_exec; + ot->poll = ocean_bake_poll; + ot->invoke = ocean_bake_invoke; + ot->exec = ocean_bake_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; edit_modifier_properties(ot); RNA_def_boolean(ot->srna, "free", FALSE, "Free", "Free the bake, rather than generating it"); diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c index a388e465a21..8754aa2ca5a 100644 --- a/source/blender/editors/object/object_relations.c +++ b/source/blender/editors/object/object_relations.c @@ -260,17 +260,17 @@ static int vertex_parent_set_exec(bContext *C, wmOperator *op) void OBJECT_OT_vertex_parent_set(wmOperatorType *ot) { /* identifiers */ - ot->name= "Make Vertex Parent"; + ot->name = "Make Vertex Parent"; ot->description = "Parent selected objects to the selected vertices"; - ot->idname= "OBJECT_OT_vertex_parent_set"; + ot->idname = "OBJECT_OT_vertex_parent_set"; /* api callbacks */ - ot->invoke= WM_operator_confirm; - ot->poll= vertex_parent_set_poll; - ot->exec= vertex_parent_set_exec; + ot->invoke = WM_operator_confirm; + ot->poll = vertex_parent_set_poll; + ot->exec = vertex_parent_set_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /********************** Make Proxy Operator *************************/ @@ -396,22 +396,22 @@ void OBJECT_OT_proxy_make (wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name= "Make Proxy"; - ot->idname= "OBJECT_OT_proxy_make"; - ot->description= "Add empty object to become local replacement data of a library-linked object"; + ot->name = "Make Proxy"; + ot->idname = "OBJECT_OT_proxy_make"; + ot->description = "Add empty object to become local replacement data of a library-linked object"; /* callbacks */ - ot->invoke= make_proxy_invoke; - ot->exec= make_proxy_exec; - ot->poll= ED_operator_object_active; + ot->invoke = make_proxy_invoke; + ot->exec = make_proxy_exec; + ot->poll = ED_operator_object_active; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ prop= RNA_def_enum(ot->srna, "object", DummyRNA_DEFAULT_items, 0, "Proxy Object", "Name of lib-linked/grouped object to make a proxy for"); /* XXX, relies on hard coded ID at the moment */ RNA_def_enum_funcs(prop, proxy_group_object_itemf); - ot->prop= prop; + ot->prop = prop; } /********************** Clear Parent Operator ******************* */ @@ -464,20 +464,20 @@ static int parent_clear_exec(bContext *C, wmOperator *op) void OBJECT_OT_parent_clear(wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear Parent"; + ot->name = "Clear Parent"; ot->description = "Clear the object's parenting"; - ot->idname= "OBJECT_OT_parent_clear"; + ot->idname = "OBJECT_OT_parent_clear"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= parent_clear_exec; + ot->invoke = WM_menu_invoke; + ot->exec = parent_clear_exec; - ot->poll= ED_operator_object_active_editable; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; - ot->prop= RNA_def_enum(ot->srna, "type", prop_clear_parent_types, 0, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", prop_clear_parent_types, 0, "Type", ""); } /* ******************** Make Parent Operator *********************** */ @@ -730,18 +730,18 @@ static int parent_set_invoke(bContext *C, wmOperator *UNUSED(op), wmEvent *UNUSE void OBJECT_OT_parent_set(wmOperatorType *ot) { /* identifiers */ - ot->name= "Make Parent"; + ot->name = "Make Parent"; ot->description = "Set the object's parenting"; - ot->idname= "OBJECT_OT_parent_set"; + ot->idname = "OBJECT_OT_parent_set"; /* api callbacks */ - ot->invoke= parent_set_invoke; - ot->exec= parent_set_exec; + ot->invoke = parent_set_invoke; + ot->exec = parent_set_exec; - ot->poll= ED_operator_object_active; + ot->poll = ED_operator_object_active; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_enum(ot->srna, "type", prop_make_parent_types, 0, "Type", ""); } @@ -787,17 +787,17 @@ static int parent_noinv_set_exec(bContext *C, wmOperator *op) void OBJECT_OT_parent_no_inverse_set(wmOperatorType *ot) { /* identifiers */ - ot->name= "Make Parent without Inverse"; + ot->name = "Make Parent without Inverse"; ot->description = "Set the object's parenting without setting the inverse parent correction"; - ot->idname= "OBJECT_OT_parent_no_inverse_set"; + ot->idname = "OBJECT_OT_parent_no_inverse_set"; /* api callbacks */ - ot->invoke= WM_operator_confirm; - ot->exec= parent_noinv_set_exec; - ot->poll= ED_operator_object_active_editable; + ot->invoke = WM_operator_confirm; + ot->exec = parent_noinv_set_exec; + ot->poll = ED_operator_object_active_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /************************ Clear Slow Parent Operator *********************/ @@ -829,17 +829,17 @@ void OBJECT_OT_slow_parent_clear(wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear Slow Parent"; + ot->name = "Clear Slow Parent"; ot->description = "Clear the object's slow parent"; - ot->idname= "OBJECT_OT_slow_parent_clear"; + ot->idname = "OBJECT_OT_slow_parent_clear"; /* api callbacks */ - ot->invoke= WM_operator_confirm; - ot->exec= object_slow_parent_clear_exec; - ot->poll= ED_operator_view3d_active; + ot->invoke = WM_operator_confirm; + ot->exec = object_slow_parent_clear_exec; + ot->poll = ED_operator_view3d_active; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /********************** Make Slow Parent Operator *********************/ @@ -868,17 +868,17 @@ void OBJECT_OT_slow_parent_set(wmOperatorType *ot) { /* identifiers */ - ot->name= "Set Slow Parent"; + ot->name = "Set Slow Parent"; ot->description = "Set the object's slow parent"; - ot->idname= "OBJECT_OT_slow_parent_set"; + ot->idname = "OBJECT_OT_slow_parent_set"; /* api callbacks */ - ot->invoke= WM_operator_confirm; - ot->exec= object_slow_parent_set_exec; - ot->poll= ED_operator_view3d_active; + ot->invoke = WM_operator_confirm; + ot->exec = object_slow_parent_set_exec; + ot->poll = ED_operator_view3d_active; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /* ******************** Clear Track Operator ******************* */ @@ -929,20 +929,20 @@ static int object_track_clear_exec(bContext *C, wmOperator *op) void OBJECT_OT_track_clear(wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear track"; + ot->name = "Clear track"; ot->description = "Clear tracking constraint or flag from object"; - ot->idname= "OBJECT_OT_track_clear"; + ot->idname = "OBJECT_OT_track_clear"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= object_track_clear_exec; + ot->invoke = WM_menu_invoke; + ot->exec = object_track_clear_exec; - ot->poll= ED_operator_objectmode; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; - ot->prop= RNA_def_enum(ot->srna, "type", prop_clear_track_types, 0, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", prop_clear_track_types, 0, "Type", ""); } /************************** Make Track Operator *****************************/ @@ -1034,21 +1034,21 @@ static int track_set_exec(bContext *C, wmOperator *op) void OBJECT_OT_track_set(wmOperatorType *ot) { /* identifiers */ - ot->name= "Make Track"; + ot->name = "Make Track"; ot->description = "Make the object track another object, either by constraint or old way or locked track"; - ot->idname= "OBJECT_OT_track_set"; + ot->idname = "OBJECT_OT_track_set"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= track_set_exec; + ot->invoke = WM_menu_invoke; + ot->exec = track_set_exec; - ot->poll= ED_operator_objectmode; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ - ot->prop= RNA_def_enum(ot->srna, "type", prop_make_track_types, 0, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", prop_make_track_types, 0, "Type", ""); } /************************** Move to Layer Operator *****************************/ @@ -1145,17 +1145,17 @@ static int move_to_layer_exec(bContext *C, wmOperator *op) void OBJECT_OT_move_to_layer(wmOperatorType *ot) { /* identifiers */ - ot->name= "Move to Layer"; + ot->name = "Move to Layer"; ot->description = "Move the object to different layers"; - ot->idname= "OBJECT_OT_move_to_layer"; + ot->idname = "OBJECT_OT_move_to_layer"; /* api callbacks */ - ot->invoke= move_to_layer_invoke; - ot->exec= move_to_layer_exec; - ot->poll= ED_operator_objectmode; + ot->invoke = move_to_layer_invoke; + ot->exec = move_to_layer_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ RNA_def_boolean_layer_member(ot->srna, "layers", 20, NULL, "Layer", ""); @@ -1323,22 +1323,22 @@ void OBJECT_OT_make_links_scene(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name= "Link Objects to Scene"; + ot->name = "Link Objects to Scene"; ot->description = "Link selection to another scene"; - ot->idname= "OBJECT_OT_make_links_scene"; + ot->idname = "OBJECT_OT_make_links_scene"; /* api callbacks */ - ot->invoke= WM_enum_search_invoke; - ot->exec= make_links_scene_exec; + ot->invoke = WM_enum_search_invoke; + ot->exec = make_links_scene_exec; /* better not run the poll check */ /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ prop= RNA_def_enum(ot->srna, "scene", DummyRNA_NULL_items, 0, "Scene", ""); RNA_def_enum_funcs(prop, RNA_scene_local_itemf); - ot->prop= prop; + ot->prop = prop; } void OBJECT_OT_make_links_data(wmOperatorType *ot) @@ -1352,19 +1352,19 @@ void OBJECT_OT_make_links_data(wmOperatorType *ot) {0, NULL, 0, NULL, NULL}}; /* identifiers */ - ot->name= "Link Data"; + ot->name = "Link Data"; ot->description = "Make links from the active object to other selected objects"; - ot->idname= "OBJECT_OT_make_links_data"; + ot->idname = "OBJECT_OT_make_links_data"; /* api callbacks */ - ot->exec= make_links_data_exec; - ot->poll= ED_operator_object_active; + ot->exec = make_links_data_exec; + ot->poll = ED_operator_object_active; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ - ot->prop= RNA_def_enum(ot->srna, "type", make_links_items, 0, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", make_links_items, 0, "Type", ""); } @@ -1812,20 +1812,20 @@ void OBJECT_OT_make_local(wmOperatorType *ot) {0, NULL, 0, NULL, NULL}}; /* identifiers */ - ot->name= "Make Local"; + ot->name = "Make Local"; ot->description = "Make library linked datablocks local to this file"; - ot->idname= "OBJECT_OT_make_local"; + ot->idname = "OBJECT_OT_make_local"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= make_local_exec; - ot->poll= ED_operator_objectmode; + ot->invoke = WM_menu_invoke; + ot->exec = make_local_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ - ot->prop= RNA_def_enum(ot->srna, "type", type_items, 0, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", type_items, 0, "Type", ""); } static int make_single_user_exec(bContext *C, wmOperator *op) @@ -1865,20 +1865,20 @@ void OBJECT_OT_make_single_user(wmOperatorType *ot) {0, NULL, 0, NULL, NULL}}; /* identifiers */ - ot->name= "Make Single User"; + ot->name = "Make Single User"; ot->description = "Make linked data local to each object"; - ot->idname= "OBJECT_OT_make_single_user"; + ot->idname = "OBJECT_OT_make_single_user"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= make_single_user_exec; - ot->poll= ED_operator_objectmode; + ot->invoke = WM_menu_invoke; + ot->exec = make_single_user_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ - ot->prop= RNA_def_enum(ot->srna, "type", type_items, SELECT, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", type_items, SELECT, "Type", ""); RNA_def_boolean(ot->srna, "object", 0, "Object", "Make single user objects"); RNA_def_boolean(ot->srna, "obdata", 0, "Object Data", "Make single user object data"); @@ -1913,16 +1913,16 @@ void OBJECT_OT_drop_named_material(wmOperatorType *ot) { /* identifiers */ - ot->name= "Drop Named Material on Object"; + ot->name = "Drop Named Material on Object"; ot->description = ""; - ot->idname= "OBJECT_OT_drop_named_material"; + ot->idname = "OBJECT_OT_drop_named_material"; /* api callbacks */ - ot->invoke= drop_named_material_invoke; - ot->poll= ED_operator_objectmode; + ot->invoke = drop_named_material_invoke; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_UNDO; + ot->flag = OPTYPE_UNDO; /* properties */ RNA_def_string(ot->srna, "name", "Material", MAX_ID_NAME-2, "Name", "Material name to assign"); diff --git a/source/blender/editors/object/object_select.c b/source/blender/editors/object/object_select.c index 66fe2b98968..aff9fe1ac61 100644 --- a/source/blender/editors/object/object_select.c +++ b/source/blender/editors/object/object_select.c @@ -165,21 +165,21 @@ static int object_select_by_type_exec(bContext *C, wmOperator *op) void OBJECT_OT_select_by_type(wmOperatorType *ot) { /* identifiers */ - ot->name= "Select By Type"; + ot->name = "Select By Type"; ot->description = "Select all visible objects that are of a type"; - ot->idname= "OBJECT_OT_select_by_type"; + ot->idname = "OBJECT_OT_select_by_type"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= object_select_by_type_exec; - ot->poll= objects_selectable_poll; + ot->invoke = WM_menu_invoke; + ot->exec = object_select_by_type_exec; + ot->poll = objects_selectable_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ RNA_def_boolean(ot->srna, "extend", FALSE, "Extend", "Extend selection instead of deselecting everything first"); - ot->prop= RNA_def_enum(ot->srna, "type", object_type_items, 1, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", object_type_items, 1, "Type", ""); } /*********************** Selection by Links *********************/ @@ -347,21 +347,21 @@ static int object_select_linked_exec(bContext *C, wmOperator *op) void OBJECT_OT_select_linked(wmOperatorType *ot) { /* identifiers */ - ot->name= "Select Linked"; + ot->name = "Select Linked"; ot->description = "Select all visible objects that are linked"; - ot->idname= "OBJECT_OT_select_linked"; + ot->idname = "OBJECT_OT_select_linked"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= object_select_linked_exec; - ot->poll= objects_selectable_poll; + ot->invoke = WM_menu_invoke; + ot->exec = object_select_linked_exec; + ot->poll = objects_selectable_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ RNA_def_boolean(ot->srna, "extend", FALSE, "Extend", "Extend selection instead of deselecting everything first"); - ot->prop= RNA_def_enum(ot->srna, "type", prop_select_linked_types, 0, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", prop_select_linked_types, 0, "Type", ""); } /*********************** Selected Grouped ********************/ @@ -673,21 +673,21 @@ static int object_select_grouped_exec(bContext *C, wmOperator *op) void OBJECT_OT_select_grouped(wmOperatorType *ot) { /* identifiers */ - ot->name= "Select Grouped"; + ot->name = "Select Grouped"; ot->description = "Select all visible objects grouped by various properties"; - ot->idname= "OBJECT_OT_select_grouped"; + ot->idname = "OBJECT_OT_select_grouped"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= object_select_grouped_exec; - ot->poll= objects_selectable_poll; + ot->invoke = WM_menu_invoke; + ot->exec = object_select_grouped_exec; + ot->poll = objects_selectable_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ RNA_def_boolean(ot->srna, "extend", FALSE, "Extend", "Extend selection instead of deselecting everything first"); - ot->prop= RNA_def_enum(ot->srna, "type", prop_select_grouped_types, 0, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", prop_select_grouped_types, 0, "Type", ""); } /************************* Select by Layer **********************/ @@ -722,17 +722,17 @@ static int object_select_by_layer_exec(bContext *C, wmOperator *op) void OBJECT_OT_select_by_layer(wmOperatorType *ot) { /* identifiers */ - ot->name= "Select by Layer"; + ot->name = "Select by Layer"; ot->description = "Select all visible objects on a layer"; - ot->idname= "OBJECT_OT_select_by_layer"; + ot->idname = "OBJECT_OT_select_by_layer"; /* api callbacks */ /*ot->invoke = XXX - need a int grid popup*/ - ot->exec= object_select_by_layer_exec; - ot->poll= objects_selectable_poll; + ot->exec = object_select_by_layer_exec; + ot->poll = objects_selectable_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ RNA_def_boolean(ot->srna, "extend", FALSE, "Extend", "Extend selection instead of deselecting everything first"); @@ -787,16 +787,16 @@ void OBJECT_OT_select_all(wmOperatorType *ot) { /* identifiers */ - ot->name= "(De)select All"; + ot->name = "(De)select All"; ot->description = "Change selection of all visible objects in scene"; - ot->idname= "OBJECT_OT_select_all"; + ot->idname = "OBJECT_OT_select_all"; /* api callbacks */ - ot->exec= object_select_all_exec; - ot->poll= objects_selectable_poll; + ot->exec = object_select_all_exec; + ot->poll = objects_selectable_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; WM_operator_properties_select_all(ot); } @@ -836,16 +836,16 @@ void OBJECT_OT_select_same_group(wmOperatorType *ot) { /* identifiers */ - ot->name= "Select Same Group"; + ot->name = "Select Same Group"; ot->description = "Select object in the same group"; - ot->idname= "OBJECT_OT_select_same_group"; + ot->idname = "OBJECT_OT_select_same_group"; /* api callbacks */ - ot->exec= object_select_same_group_exec; - ot->poll= objects_selectable_poll; + ot->exec = object_select_same_group_exec; + ot->poll = objects_selectable_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_string(ot->srna, "group", "", MAX_ID_NAME, "Group", "Name of the group to select"); } @@ -889,16 +889,16 @@ void OBJECT_OT_select_mirror(wmOperatorType *ot) { /* identifiers */ - ot->name= "Select Mirror"; + ot->name = "Select Mirror"; ot->description = "Select the Mirror objects of the selected object eg. L.sword -> R.sword"; - ot->idname= "OBJECT_OT_select_mirror"; + ot->idname = "OBJECT_OT_select_mirror"; /* api callbacks */ - ot->exec= object_select_mirror_exec; - ot->poll= objects_selectable_poll; + ot->exec = object_select_mirror_exec; + ot->poll = objects_selectable_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_boolean(ot->srna, "extend", 0, "Extend", "Extend selection instead of deselecting everything first"); } @@ -936,17 +936,17 @@ static int object_select_random_exec(bContext *C, wmOperator *op) void OBJECT_OT_select_random(wmOperatorType *ot) { /* identifiers */ - ot->name= "Select Random"; + ot->name = "Select Random"; ot->description = "Set select on random visible objects"; - ot->idname= "OBJECT_OT_select_random"; + ot->idname = "OBJECT_OT_select_random"; /* api callbacks */ - /*ot->invoke= object_select_random_invoke XXX - need a number popup ;*/ + /*ot->invoke = object_select_random_invoke XXX - need a number popup ;*/ ot->exec = object_select_random_exec; - ot->poll= objects_selectable_poll; + ot->poll = objects_selectable_poll; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ RNA_def_float_percentage(ot->srna, "percent", 50.f, 0.0f, 100.0f, "Percent", "Percentage of objects to select randomly", 0.f, 100.0f); diff --git a/source/blender/editors/object/object_shapekey.c b/source/blender/editors/object/object_shapekey.c index 87a058334c0..b6a775650d4 100644 --- a/source/blender/editors/object/object_shapekey.c +++ b/source/blender/editors/object/object_shapekey.c @@ -296,16 +296,16 @@ static int shape_key_add_exec(bContext *C, wmOperator *op) void OBJECT_OT_shape_key_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Shape Key"; - ot->idname= "OBJECT_OT_shape_key_add"; - ot->description= "Add shape key to the object"; + ot->name = "Add Shape Key"; + ot->idname = "OBJECT_OT_shape_key_add"; + ot->description = "Add shape key to the object"; /* api callbacks */ - ot->poll= shape_key_mode_poll; - ot->exec= shape_key_add_exec; + ot->poll = shape_key_mode_poll; + ot->exec = shape_key_add_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ RNA_def_boolean(ot->srna, "from_mix", 1, "From Mix", "Create the new shape key from the existing mix of keys"); @@ -324,16 +324,16 @@ static int shape_key_remove_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_shape_key_remove(wmOperatorType *ot) { /* identifiers */ - ot->name= "Remove Shape Key"; - ot->idname= "OBJECT_OT_shape_key_remove"; - ot->description= "Remove shape key from the object"; + ot->name = "Remove Shape Key"; + ot->idname = "OBJECT_OT_shape_key_remove"; + ot->description = "Remove shape key from the object"; /* api callbacks */ - ot->poll= shape_key_mode_poll; - ot->exec= shape_key_remove_exec; + ot->poll = shape_key_mode_poll; + ot->exec = shape_key_remove_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int shape_key_clear_exec(bContext *C, wmOperator *UNUSED(op)) @@ -357,16 +357,16 @@ static int shape_key_clear_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_shape_key_clear(wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear Shape Keys"; - ot->description= "Clear weights for all shape keys"; - ot->idname= "OBJECT_OT_shape_key_clear"; + ot->name = "Clear Shape Keys"; + ot->description = "Clear weights for all shape keys"; + ot->idname = "OBJECT_OT_shape_key_clear"; /* api callbacks */ - ot->poll= shape_key_poll; - ot->exec= shape_key_clear_exec; + ot->poll = shape_key_poll; + ot->exec = shape_key_clear_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int shape_key_mirror_exec(bContext *C, wmOperator *UNUSED(op)) @@ -382,15 +382,15 @@ static int shape_key_mirror_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_shape_key_mirror(wmOperatorType *ot) { /* identifiers */ - ot->name= "Mirror Shape Key"; - ot->idname= "OBJECT_OT_shape_key_mirror"; + ot->name = "Mirror Shape Key"; + ot->idname = "OBJECT_OT_shape_key_mirror"; /* api callbacks */ - ot->poll= shape_key_mode_poll; - ot->exec= shape_key_mirror_exec; + ot->poll = shape_key_mode_poll; + ot->exec = shape_key_mirror_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } @@ -451,15 +451,15 @@ void OBJECT_OT_shape_key_move(wmOperatorType *ot) }; /* identifiers */ - ot->name= "Move Shape Key"; - ot->idname= "OBJECT_OT_shape_key_move"; + ot->name = "Move Shape Key"; + ot->idname = "OBJECT_OT_shape_key_move"; /* api callbacks */ - ot->poll= shape_key_mode_poll; - ot->exec= shape_key_move_exec; + ot->poll = shape_key_mode_poll; + ot->exec = shape_key_move_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_enum(ot->srna, "type", slot_move, 0, "Type", ""); } diff --git a/source/blender/editors/object/object_transform.c b/source/blender/editors/object/object_transform.c index 0f64e69d9f8..93b1724308e 100644 --- a/source/blender/editors/object/object_transform.c +++ b/source/blender/editors/object/object_transform.c @@ -260,16 +260,16 @@ static int object_location_clear_exec(bContext *C, wmOperator *op) void OBJECT_OT_location_clear(wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear Location"; + ot->name = "Clear Location"; ot->description = "Clear the object's location"; - ot->idname= "OBJECT_OT_location_clear"; + ot->idname = "OBJECT_OT_location_clear"; /* api callbacks */ - ot->exec= object_location_clear_exec; - ot->poll= ED_operator_scene_editable; + ot->exec = object_location_clear_exec; + ot->poll = ED_operator_scene_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int object_rotation_clear_exec(bContext *C, wmOperator *op) @@ -280,16 +280,16 @@ static int object_rotation_clear_exec(bContext *C, wmOperator *op) void OBJECT_OT_rotation_clear(wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear Rotation"; + ot->name = "Clear Rotation"; ot->description = "Clear the object's rotation"; - ot->idname= "OBJECT_OT_rotation_clear"; + ot->idname = "OBJECT_OT_rotation_clear"; /* api callbacks */ - ot->exec= object_rotation_clear_exec; - ot->poll= ED_operator_scene_editable; + ot->exec = object_rotation_clear_exec; + ot->poll = ED_operator_scene_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int object_scale_clear_exec(bContext *C, wmOperator *op) @@ -300,16 +300,16 @@ static int object_scale_clear_exec(bContext *C, wmOperator *op) void OBJECT_OT_scale_clear(wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear Scale"; + ot->name = "Clear Scale"; ot->description = "Clear the object's scale"; - ot->idname= "OBJECT_OT_scale_clear"; + ot->idname = "OBJECT_OT_scale_clear"; /* api callbacks */ - ot->exec= object_scale_clear_exec; - ot->poll= ED_operator_scene_editable; + ot->exec = object_scale_clear_exec; + ot->poll = ED_operator_scene_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /* --------------- */ @@ -346,16 +346,16 @@ static int object_origin_clear_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_origin_clear(wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear Origin"; + ot->name = "Clear Origin"; ot->description = "Clear the object's origin"; - ot->idname= "OBJECT_OT_origin_clear"; + ot->idname = "OBJECT_OT_origin_clear"; /* api callbacks */ - ot->exec= object_origin_clear_exec; - ot->poll= ED_operator_scene_editable; + ot->exec = object_origin_clear_exec; + ot->poll = ED_operator_scene_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } /*************************** Apply Transformation ****************************/ @@ -591,16 +591,16 @@ static int visual_transform_apply_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_visual_transform_apply(wmOperatorType *ot) { /* identifiers */ - ot->name= "Apply Visual Transform"; + ot->name = "Apply Visual Transform"; ot->description = "Apply the object's visual transformation to its data"; - ot->idname= "OBJECT_OT_visual_transform_apply"; + ot->idname = "OBJECT_OT_visual_transform_apply"; /* api callbacks */ - ot->exec= visual_transform_apply_exec; - ot->poll= ED_operator_scene_editable; + ot->exec = visual_transform_apply_exec; + ot->poll = ED_operator_scene_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int object_transform_apply_exec(bContext *C, wmOperator *op) @@ -620,16 +620,16 @@ static int object_transform_apply_exec(bContext *C, wmOperator *op) void OBJECT_OT_transform_apply(wmOperatorType *ot) { /* identifiers */ - ot->name= "Apply Object Transform"; + ot->name = "Apply Object Transform"; ot->description = "Apply the object's transformation to its data"; - ot->idname= "OBJECT_OT_transform_apply"; + ot->idname = "OBJECT_OT_transform_apply"; /* api callbacks */ - ot->exec= object_transform_apply_exec; - ot->poll= ED_operator_objectmode; + ot->exec = object_transform_apply_exec; + ot->poll = ED_operator_objectmode; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_boolean(ot->srna, "location", 0, "Location", ""); RNA_def_boolean(ot->srna, "rotation", 0, "Rotation", ""); @@ -957,20 +957,20 @@ void OBJECT_OT_origin_set(wmOperatorType *ot) }; /* identifiers */ - ot->name= "Set Origin"; + ot->name = "Set Origin"; ot->description = "Set the object's origin, by either moving the data, or set to center of data, or use 3d cursor"; - ot->idname= "OBJECT_OT_origin_set"; + ot->idname = "OBJECT_OT_origin_set"; /* api callbacks */ - ot->invoke= WM_menu_invoke; - ot->exec= object_origin_set_exec; + ot->invoke = WM_menu_invoke; + ot->exec = object_origin_set_exec; - ot->poll= ED_operator_scene_editable; + ot->poll = ED_operator_scene_editable; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; - ot->prop= RNA_def_enum(ot->srna, "type", prop_set_center_types, 0, "Type", ""); + ot->prop = RNA_def_enum(ot->srna, "type", prop_set_center_types, 0, "Type", ""); RNA_def_enum(ot->srna, "center", prop_set_bounds_types, V3D_CENTROID, "Center", ""); } diff --git a/source/blender/editors/object/object_vgroup.c b/source/blender/editors/object/object_vgroup.c index 1e4d32de003..0555ddc69a8 100644 --- a/source/blender/editors/object/object_vgroup.c +++ b/source/blender/editors/object/object_vgroup.c @@ -2073,15 +2073,15 @@ static int vertex_group_add_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_vertex_group_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Vertex Group"; - ot->idname= "OBJECT_OT_vertex_group_add"; + ot->name = "Add Vertex Group"; + ot->idname = "OBJECT_OT_vertex_group_add"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vertex_group_add_exec; + ot->poll = vertex_group_poll; + ot->exec = vertex_group_add_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int vertex_group_remove_exec(bContext *C, wmOperator *op) @@ -2103,18 +2103,18 @@ static int vertex_group_remove_exec(bContext *C, wmOperator *op) void OBJECT_OT_vertex_group_remove(wmOperatorType *ot) { /* identifiers */ - ot->name= "Remove Vertex Group"; - ot->idname= "OBJECT_OT_vertex_group_remove"; + ot->name = "Remove Vertex Group"; + ot->idname = "OBJECT_OT_vertex_group_remove"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vertex_group_remove_exec; + ot->poll = vertex_group_poll; + ot->exec = vertex_group_remove_exec; /* flags */ /* redo operator will fail in this case because vertex groups aren't stored * in local edit mode stack and toggling "all" property will lead to * all groups deleted without way to restore them (see [#29527], sergey) */ - ot->flag= /*OPTYPE_REGISTER|*/OPTYPE_UNDO; + ot->flag = /*OPTYPE_REGISTER|*/OPTYPE_UNDO; /* properties */ RNA_def_boolean(ot->srna, "all", 0, "All", "Remove from all vertex groups"); @@ -2138,18 +2138,18 @@ static int vertex_group_assign_exec(bContext *C, wmOperator *op) void OBJECT_OT_vertex_group_assign(wmOperatorType *ot) { /* identifiers */ - ot->name= "Assign Vertex Group"; - ot->idname= "OBJECT_OT_vertex_group_assign"; + ot->name = "Assign Vertex Group"; + ot->idname = "OBJECT_OT_vertex_group_assign"; /* api callbacks */ - ot->poll= vertex_group_poll_edit_or_wpaint_vert_select; - ot->exec= vertex_group_assign_exec; + ot->poll = vertex_group_poll_edit_or_wpaint_vert_select; + ot->exec = vertex_group_assign_exec; /* flags */ /* redo operator will fail in this case because vertex group assignment * isn't stored in local edit mode stack and toggling "new" property will * lead to creating plenty of new vertex groups (see [#29527], sergey) */ - ot->flag= /*OPTYPE_REGISTER|*/OPTYPE_UNDO; + ot->flag = /*OPTYPE_REGISTER|*/OPTYPE_UNDO; /* properties */ RNA_def_boolean(ot->srna, "new", 0, "New", "Assign vertex to new vertex group"); @@ -2180,18 +2180,18 @@ static int vertex_group_remove_from_exec(bContext *C, wmOperator *op) void OBJECT_OT_vertex_group_remove_from(wmOperatorType *ot) { /* identifiers */ - ot->name= "Remove from Vertex Group"; - ot->idname= "OBJECT_OT_vertex_group_remove_from"; + ot->name = "Remove from Vertex Group"; + ot->idname = "OBJECT_OT_vertex_group_remove_from"; /* api callbacks */ - ot->poll= vertex_group_poll_edit_or_wpaint_vert_select; - ot->exec= vertex_group_remove_from_exec; + ot->poll = vertex_group_poll_edit_or_wpaint_vert_select; + ot->exec = vertex_group_remove_from_exec; /* flags */ /* redo operator will fail in this case because vertex groups assignment * isn't stored in local edit mode stack and toggling "all" property will lead to * removing vertices from all groups (see [#29527], sergey) */ - ot->flag= /*OPTYPE_REGISTER|*/OPTYPE_UNDO; + ot->flag = /*OPTYPE_REGISTER|*/OPTYPE_UNDO; /* properties */ RNA_def_boolean(ot->srna, "all", 0, "All", "Remove from all vertex groups"); @@ -2213,15 +2213,15 @@ static int vertex_group_select_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_vertex_group_select(wmOperatorType *ot) { /* identifiers */ - ot->name= "Select Vertex Group"; - ot->idname= "OBJECT_OT_vertex_group_select"; + ot->name = "Select Vertex Group"; + ot->idname = "OBJECT_OT_vertex_group_select"; /* api callbacks */ - ot->poll= vertex_group_poll_edit_or_wpaint_vert_select; - ot->exec= vertex_group_select_exec; + ot->poll = vertex_group_poll_edit_or_wpaint_vert_select; + ot->exec = vertex_group_select_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int vertex_group_deselect_exec(bContext *C, wmOperator *UNUSED(op)) @@ -2237,15 +2237,15 @@ static int vertex_group_deselect_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_vertex_group_deselect(wmOperatorType *ot) { /* identifiers */ - ot->name= "Deselect Vertex Group"; - ot->idname= "OBJECT_OT_vertex_group_deselect"; + ot->name = "Deselect Vertex Group"; + ot->idname = "OBJECT_OT_vertex_group_deselect"; /* api callbacks */ - ot->poll= vertex_group_poll_edit_or_wpaint_vert_select; - ot->exec= vertex_group_deselect_exec; + ot->poll = vertex_group_poll_edit_or_wpaint_vert_select; + ot->exec = vertex_group_deselect_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int vertex_group_copy_exec(bContext *C, wmOperator *UNUSED(op)) @@ -2263,15 +2263,15 @@ static int vertex_group_copy_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_vertex_group_copy(wmOperatorType *ot) { /* identifiers */ - ot->name= "Copy Vertex Group"; - ot->idname= "OBJECT_OT_vertex_group_copy"; + ot->name = "Copy Vertex Group"; + ot->idname = "OBJECT_OT_vertex_group_copy"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vertex_group_copy_exec; + ot->poll = vertex_group_poll; + ot->exec = vertex_group_copy_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int vertex_group_levels_exec(bContext *C, wmOperator *op) @@ -2293,15 +2293,15 @@ static int vertex_group_levels_exec(bContext *C, wmOperator *op) void OBJECT_OT_vertex_group_levels(wmOperatorType *ot) { /* identifiers */ - ot->name= "Vertex Group Levels"; - ot->idname= "OBJECT_OT_vertex_group_levels"; + ot->name = "Vertex Group Levels"; + ot->idname = "OBJECT_OT_vertex_group_levels"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vertex_group_levels_exec; + ot->poll = vertex_group_poll; + ot->exec = vertex_group_levels_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_float(ot->srna, "offset", 0.f, -1.0, 1.0, "Offset", "Value to add to weights", -1.0f, 1.f); RNA_def_float(ot->srna, "gain", 1.f, 0.f, FLT_MAX, "Gain", "Value to multiply weights by", 0.0f, 10.f); @@ -2323,15 +2323,15 @@ static int vertex_group_normalize_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_vertex_group_normalize(wmOperatorType *ot) { /* identifiers */ - ot->name= "Normalize Vertex Group"; - ot->idname= "OBJECT_OT_vertex_group_normalize"; + ot->name = "Normalize Vertex Group"; + ot->idname = "OBJECT_OT_vertex_group_normalize"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vertex_group_normalize_exec; + ot->poll = vertex_group_poll; + ot->exec = vertex_group_normalize_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int vertex_group_normalize_all_exec(bContext *C, wmOperator *op) @@ -2351,15 +2351,15 @@ static int vertex_group_normalize_all_exec(bContext *C, wmOperator *op) void OBJECT_OT_vertex_group_normalize_all(wmOperatorType *ot) { /* identifiers */ - ot->name= "Normalize All Vertex Groups"; - ot->idname= "OBJECT_OT_vertex_group_normalize_all"; + ot->name = "Normalize All Vertex Groups"; + ot->idname = "OBJECT_OT_vertex_group_normalize_all"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vertex_group_normalize_all_exec; + ot->poll = vertex_group_poll; + ot->exec = vertex_group_normalize_all_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_boolean(ot->srna, "lock_active", TRUE, "Lock Active", "Keep the values of the active group while normalizing others"); @@ -2398,17 +2398,17 @@ static int vertex_group_fix_exec(bContext *C, wmOperator *op) void OBJECT_OT_vertex_group_fix(wmOperatorType *ot) { /* identifiers */ - ot->name= "Fix Vertex Group Deform"; - ot->idname= "OBJECT_OT_vertex_group_fix"; - ot->description= "Modify the position of selected vertices by changing only their respective " + ot->name = "Fix Vertex Group Deform"; + ot->idname = "OBJECT_OT_vertex_group_fix"; + ot->description = "Modify the position of selected vertices by changing only their respective " "groups' weights (this tool may be slow for many vertices)"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vertex_group_fix_exec; + ot->poll = vertex_group_poll; + ot->exec = vertex_group_fix_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_float(ot->srna, "dist", 0.0f, -FLT_MAX, FLT_MAX, "Distance", "The distance to move to", -10.0f, 10.0f); RNA_def_float(ot->srna, "strength", 1.f, -2.0f, FLT_MAX, "Strength", "The distance moved can be changed by this multiplier", -2.0f, 2.0f); @@ -2431,15 +2431,15 @@ static int vertex_group_lock_exec(bContext *C, wmOperator *op) void OBJECT_OT_vertex_group_lock(wmOperatorType *ot) { /* identifiers */ - ot->name= "Change the Lock On Vertex Groups"; - ot->idname= "OBJECT_OT_vertex_group_lock"; + ot->name = "Change the Lock On Vertex Groups"; + ot->idname = "OBJECT_OT_vertex_group_lock"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vertex_group_lock_exec; + ot->poll = vertex_group_poll; + ot->exec = vertex_group_lock_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; WM_operator_properties_select_all(ot); } @@ -2461,15 +2461,15 @@ static int vertex_group_invert_exec(bContext *C, wmOperator *op) void OBJECT_OT_vertex_group_invert(wmOperatorType *ot) { /* identifiers */ - ot->name= "Invert Vertex Group"; - ot->idname= "OBJECT_OT_vertex_group_invert"; + ot->name = "Invert Vertex Group"; + ot->idname = "OBJECT_OT_vertex_group_invert"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vertex_group_invert_exec; + ot->poll = vertex_group_poll; + ot->exec = vertex_group_invert_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_boolean(ot->srna, "auto_assign", TRUE, "Add Weights", "Add verts from groups that have zero weight before inverting"); @@ -2494,16 +2494,16 @@ static int vertex_group_blend_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_vertex_group_blend(wmOperatorType *ot) { /* identifiers */ - ot->name= "Blend Vertex Group"; - ot->idname= "OBJECT_OT_vertex_group_blend"; - ot->description= ""; + ot->name = "Blend Vertex Group"; + ot->idname = "OBJECT_OT_vertex_group_blend"; + ot->description = ""; /* api callbacks */ - ot->poll= vertex_group_poll_edit; /* TODO - add object mode support */ - ot->exec= vertex_group_blend_exec; + ot->poll = vertex_group_poll_edit; /* TODO - add object mode support */ + ot->exec = vertex_group_blend_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } @@ -2528,16 +2528,16 @@ static int vertex_group_clean_exec(bContext *C, wmOperator *op) void OBJECT_OT_vertex_group_clean(wmOperatorType *ot) { /* identifiers */ - ot->name= "Clean Vertex Group"; - ot->idname= "OBJECT_OT_vertex_group_clean"; - ot->description= "Remove Vertex Group assignments which aren't required"; + ot->name = "Clean Vertex Group"; + ot->idname = "OBJECT_OT_vertex_group_clean"; + ot->description = "Remove Vertex Group assignments which aren't required"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vertex_group_clean_exec; + ot->poll = vertex_group_poll; + ot->exec = vertex_group_clean_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_float(ot->srna, "limit", 0.01f, 0.0f, 1.0, "Limit", "Remove weights under this limit", 0.001f, 0.99f); RNA_def_boolean(ot->srna, "all_groups", FALSE, "All Groups", "Clean all vertex groups"); @@ -2565,17 +2565,17 @@ static int vertex_group_mirror_exec(bContext *C, wmOperator *op) void OBJECT_OT_vertex_group_mirror(wmOperatorType *ot) { /* identifiers */ - ot->name= "Mirror Vertex Group"; - ot->idname= "OBJECT_OT_vertex_group_mirror"; - ot->description= "Mirror all vertex groups, flip weights and/or names, editing only selected vertices, " + ot->name = "Mirror Vertex Group"; + ot->idname = "OBJECT_OT_vertex_group_mirror"; + ot->description = "Mirror all vertex groups, flip weights and/or names, editing only selected vertices, " "flipping when both sides are selected otherwise copy from unselected"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vertex_group_mirror_exec; + ot->poll = vertex_group_poll; + ot->exec = vertex_group_mirror_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ RNA_def_boolean(ot->srna, "mirror_weights", TRUE, "Mirror Weights", "Mirror weights"); @@ -2613,16 +2613,16 @@ static int vertex_group_copy_to_linked_exec(bContext *C, wmOperator *UNUSED(op)) void OBJECT_OT_vertex_group_copy_to_linked(wmOperatorType *ot) { /* identifiers */ - ot->name= "Copy Vertex Groups to Linked"; - ot->idname= "OBJECT_OT_vertex_group_copy_to_linked"; - ot->description= "Copy Vertex Groups to all users of the same Geometry data"; + ot->name = "Copy Vertex Groups to Linked"; + ot->idname = "OBJECT_OT_vertex_group_copy_to_linked"; + ot->description = "Copy Vertex Groups to all users of the same Geometry data"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vertex_group_copy_to_linked_exec; + ot->poll = vertex_group_poll; + ot->exec = vertex_group_copy_to_linked_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int vertex_group_copy_to_selected_exec(bContext *C, wmOperator *op) @@ -2653,16 +2653,16 @@ static int vertex_group_copy_to_selected_exec(bContext *C, wmOperator *op) void OBJECT_OT_vertex_group_copy_to_selected(wmOperatorType *ot) { /* identifiers */ - ot->name= "Copy Vertex Group to Selected"; - ot->idname= "OBJECT_OT_vertex_group_copy_to_selected"; - ot->description= "Copy Vertex Groups to other selected objects with matching indices"; + ot->name = "Copy Vertex Group to Selected"; + ot->idname = "OBJECT_OT_vertex_group_copy_to_selected"; + ot->description = "Copy Vertex Groups to other selected objects with matching indices"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vertex_group_copy_to_selected_exec; + ot->poll = vertex_group_poll; + ot->exec = vertex_group_copy_to_selected_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static EnumPropertyItem vgroup_items[]= { @@ -2712,22 +2712,22 @@ void OBJECT_OT_vertex_group_set_active(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name= "Set Active Vertex Group"; - ot->idname= "OBJECT_OT_vertex_group_set_active"; - ot->description= "Set the active vertex group"; + ot->name = "Set Active Vertex Group"; + ot->idname = "OBJECT_OT_vertex_group_set_active"; + ot->description = "Set the active vertex group"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= set_active_group_exec; - ot->invoke= WM_menu_invoke; + ot->poll = vertex_group_poll; + ot->exec = set_active_group_exec; + ot->invoke = WM_menu_invoke; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ prop= RNA_def_enum(ot->srna, "group", vgroup_items, 0, "Group", "Vertex group to set as active"); RNA_def_enum_funcs(prop, vgroup_itemf); - ot->prop= prop; + ot->prop = prop; } /* creates the name_array parameter for vgroup_do_remap, call this before fiddling @@ -2851,16 +2851,16 @@ static int vertex_group_sort_exec(bContext *C, wmOperator *op) void OBJECT_OT_vertex_group_sort(wmOperatorType *ot) { - ot->name= "Sort Vertex Groups"; - ot->idname= "OBJECT_OT_vertex_group_sort"; - ot->description= "Sorts vertex groups alphabetically"; + ot->name = "Sort Vertex Groups"; + ot->idname = "OBJECT_OT_vertex_group_sort"; + ot->description = "Sorts vertex groups alphabetically"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vertex_group_sort_exec; + ot->poll = vertex_group_poll; + ot->exec = vertex_group_sort_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } static int vgroup_move_exec(bContext *C, wmOperator *op) @@ -2910,15 +2910,15 @@ void OBJECT_OT_vertex_group_move(wmOperatorType *ot) }; /* identifiers */ - ot->name= "Move Vertex Group"; - ot->idname= "OBJECT_OT_vertex_group_move"; + ot->name = "Move Vertex Group"; + ot->idname = "OBJECT_OT_vertex_group_move"; /* api callbacks */ - ot->poll= vertex_group_poll; - ot->exec= vgroup_move_exec; + ot->poll = vertex_group_poll; + ot->exec = vgroup_move_exec; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_enum(ot->srna, "direction", vgroup_slot_move, 0, "Direction", "Direction to move, UP or DOWN"); } -- cgit v1.2.3