[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [24072] trunk/blender/source/blender/ editors: description patch from Ron Walker

Campbell Barton ideasman42 at gmail.com
Sun Oct 25 01:26:30 CEST 2009


Revision: 24072
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=24072
Author:   campbellbarton
Date:     2009-10-25 01:26:28 +0200 (Sun, 25 Oct 2009)

Log Message:
-----------
description patch from Ron Walker

Modified Paths:
--------------
    trunk/blender/source/blender/editors/animation/anim_markers.c
    trunk/blender/source/blender/editors/physics/physics_fluid.c
    trunk/blender/source/blender/editors/sound/sound_ops.c
    trunk/blender/source/blender/editors/space_logic/logic_buttons.c
    trunk/blender/source/blender/editors/space_script/script_edit.c
    trunk/blender/source/blender/editors/uvedit/uvedit_ops.c

Modified: trunk/blender/source/blender/editors/animation/anim_markers.c
===================================================================
--- trunk/blender/source/blender/editors/animation/anim_markers.c	2009-10-24 22:41:40 UTC (rev 24071)
+++ trunk/blender/source/blender/editors/animation/anim_markers.c	2009-10-24 23:26:28 UTC (rev 24072)
@@ -359,6 +359,7 @@
 {
 	/* identifiers */
 	ot->name= "Add Time Marker";
+	ot->description= "Add a new time marker.";
 	ot->idname= "MARKER_OT_add";
 	
 	/* api callbacks */
@@ -612,6 +613,7 @@
 {
 	/* identifiers */
 	ot->name= "Move Time Marker";
+	ot->description= "Move selected time marker(s).";
 	ot->idname= "MARKER_OT_move";
 	
 	/* api callbacks */
@@ -695,6 +697,7 @@
 {
 	/* identifiers */
 	ot->name= "Duplicate Time Marker";
+	ot->description= "Duplicate selected time marker(s).";
 	ot->idname= "MARKER_OT_duplicate";
 	
 	/* api callbacks */
@@ -771,6 +774,7 @@
 {
 	/* identifiers */
 	ot->name= "Select Time Marker";
+	ot->description= "Select time marker(s).";
 	ot->idname= "MARKER_OT_select";
 	
 	/* api callbacks */
@@ -852,6 +856,7 @@
 {
 	/* identifiers */
 	ot->name= "Marker Border select";
+	ot->description= "Select all time markers using border selection.";
 	ot->idname= "MARKER_OT_select_border";
 	
 	/* api callbacks */
@@ -917,6 +922,7 @@
 {
 	/* identifiers */
 	ot->name= "(De)select all markers";
+	ot->description= "(de)select all time markers.";
 	ot->idname= "MARKER_OT_select_all_toggle";
 	
 	/* api callbacks */
@@ -963,6 +969,7 @@
 {
 	/* identifiers */
 	ot->name= "Delete Markers";
+	ot->description= "Delete selected time marker(s).";
 	ot->idname= "MARKER_OT_delete";
 	
 	/* api callbacks */

Modified: trunk/blender/source/blender/editors/physics/physics_fluid.c
===================================================================
--- trunk/blender/source/blender/editors/physics/physics_fluid.c	2009-10-24 22:41:40 UTC (rev 24071)
+++ trunk/blender/source/blender/editors/physics/physics_fluid.c	2009-10-24 23:26:28 UTC (rev 24072)
@@ -1195,6 +1195,7 @@
 {
 	/* identifiers */
 	ot->name= "Fluid Simulation Bake";
+	ot->description= "Bake fluid simulation.";
 	ot->idname= "FLUID_OT_bake";
 	
 	/* api callbacks */

Modified: trunk/blender/source/blender/editors/sound/sound_ops.c
===================================================================
--- trunk/blender/source/blender/editors/sound/sound_ops.c	2009-10-24 22:41:40 UTC (rev 24071)
+++ trunk/blender/source/blender/editors/sound/sound_ops.c	2009-10-24 23:26:28 UTC (rev 24072)
@@ -103,8 +103,8 @@
 {
 	/* identifiers */
 	ot->name= "Open Sound";
+	ot->description= "Load a sound file.";
 	ot->idname= "SOUND_OT_open";
-	ot->description= "Load a sound file into blender";
 
 	/* api callbacks */
 	ot->exec= open_exec;
@@ -154,6 +154,7 @@
 {
 	/* identifiers */
 	ot->name= "Pack Sound";
+	ot->description= "Pack the sound into the current blend file.";
 	ot->idname= "SOUND_OT_pack";
 
 	/* api callbacks */
@@ -269,6 +270,7 @@
 {
 	/* identifiers */
 	ot->name= "Unpack Sound";
+	ot->description= "Unpack the sound to the samples filename.";
 	ot->idname= "SOUND_OT_unpack";
 
 	/* api callbacks */

Modified: trunk/blender/source/blender/editors/space_logic/logic_buttons.c
===================================================================
--- trunk/blender/source/blender/editors/space_logic/logic_buttons.c	2009-10-24 22:41:40 UTC (rev 24071)
+++ trunk/blender/source/blender/editors/space_logic/logic_buttons.c	2009-10-24 23:26:28 UTC (rev 24072)
@@ -133,6 +133,7 @@
 void LOGIC_OT_properties(wmOperatorType *ot)
 {
 	ot->name= "Properties";
+	ot->description= "Toggle display properties panel.";
 	ot->idname= "LOGIC_OT_properties";
 	
 	ot->exec= logic_properties;

Modified: trunk/blender/source/blender/editors/space_script/script_edit.c
===================================================================
--- trunk/blender/source/blender/editors/space_script/script_edit.c	2009-10-24 22:41:40 UTC (rev 24071)
+++ trunk/blender/source/blender/editors/space_script/script_edit.c	2009-10-24 23:26:28 UTC (rev 24072)
@@ -79,6 +79,7 @@
 {
 	/* identifiers */
 	ot->name= "Run python file";
+	ot->description= "Run Python file.";
 	ot->idname= "SCRIPT_OT_python_file_run";
 
 	/* api callbacks */
@@ -111,6 +112,7 @@
 {
 	/* identifiers */
 	ot->name= "Reload Python Interface";
+	ot->description= "Reload Python interface.";
 	ot->idname= "SCRIPT_OT_python_run_ui_scripts";
 
 	/* api callbacks */

Modified: trunk/blender/source/blender/editors/uvedit/uvedit_ops.c
===================================================================
--- trunk/blender/source/blender/editors/uvedit/uvedit_ops.c	2009-10-24 22:41:40 UTC (rev 24071)
+++ trunk/blender/source/blender/editors/uvedit/uvedit_ops.c	2009-10-24 23:26:28 UTC (rev 24072)
@@ -1044,6 +1044,7 @@
 
 	/* identifiers */
 	ot->name= "Align";
+	ot->description= "Align selected UV vertices to an axis.";
 	ot->idname= "UV_OT_align";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -1068,6 +1069,7 @@
 {
 	/* identifiers */
 	ot->name= "Weld";
+	ot->description= "Weld selected UV vertices together.";
 	ot->idname= "UV_OT_weld";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -1253,6 +1255,7 @@
 {
 	/* identifiers */
 	ot->name= "Stitch";
+	ot->description= "Stitch selected UV vertices by proximity.";
 	ot->idname= "UV_OT_stitch";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -1309,6 +1312,7 @@
 {
 	/* identifiers */
 	ot->name= "Select Inverse";
+	ot->description= "Select inverse of (un)selected UV vertices.";
 	ot->idname= "UV_OT_select_inverse";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -1379,6 +1383,7 @@
 {
 	/* identifiers */
 	ot->name= "Select or Deselect All";
+	ot->description= "(de)select all UV vertices.";
 	ot->idname= "UV_OT_select_all_toggle";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -1711,6 +1716,7 @@
 {
 	/* identifiers */
 	ot->name= "Select";
+	ot->description= "Select UV vertice.";
 	ot->idname= "UV_OT_select";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -1759,6 +1765,7 @@
 {
 	/* identifiers */
 	ot->name= "Loop Select";
+	ot->description= "Select a loop of connected UV vertices.";
 	ot->idname= "UV_OT_select_loop";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -1808,6 +1815,7 @@
 {
 	/* identifiers */
 	ot->name= "Select Linked";
+	ot->description= "Select all UV vertices linked to the active UV map.";
 	ot->idname= "UV_OT_select_linked";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -1864,6 +1872,7 @@
 {
 	/* identifiers */
 	ot->name= "Unlink Selection";
+	ot->description= "Unlink selected UV vertices from active UV map.";
 	ot->idname= "UV_OT_unlink_selection";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -2144,6 +2153,7 @@
 {
 	/* identifiers */
 	ot->name= "Border Select";
+	ot->description= "Select UV vertices using border selection.";
 	ot->idname= "UV_OT_select_border";
 	
 	/* api callbacks */
@@ -2235,6 +2245,7 @@
 {
 	/* identifiers */
 	ot->name= "Circle Select";
+	ot->description= "Select UV vertices using circle selection.";
 	ot->idname= "UV_OT_circle_select";
 	
 	/* api callbacks */
@@ -2310,6 +2321,7 @@
 
 	/* identifiers */
 	ot->name= "Snap Cursor";
+	ot->description= "Snap cursor to target type.";
 	ot->idname= "UV_OT_snap_cursor";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -2551,6 +2563,7 @@
 
 	/* identifiers */
 	ot->name= "Snap Selection";
+	ot->description= "Snap selected UV vertices to target type.";
 	ot->idname= "UV_OT_snap_selection";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -2605,6 +2618,7 @@
 {
 	/* identifiers */
 	ot->name= "Pin";
+	ot->description= "Set/clear selected UV vertices as anchored between multiple unwrap operations.";
 	ot->idname= "UV_OT_pin";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -2650,6 +2664,7 @@
 {
 	/* identifiers */
 	ot->name= "Selected Pinned";
+	ot->description= "Select all pinned UV vertices.";
 	ot->idname= "UV_OT_select_pinned";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -2791,6 +2806,7 @@
 {
 	/* identifiers */
 	ot->name= "Hide Selected";
+	ot->description= "Hide (un)selected UV vertices.";
 	ot->idname= "UV_OT_hide";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -2924,6 +2940,7 @@
 {
 	/* identifiers */
 	ot->name= "Reveal Hidden";
+	ot->description= "Reveal all hidden UV vertices.";
 	ot->idname= "UV_OT_reveal";
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
@@ -2965,7 +2982,8 @@
 void UV_OT_cursor_set(wmOperatorType *ot)
 {
 	/* identifiers */
-	ot->name= "Set 3D Cursor";
+	ot->name= "Set 3D Cursor";//Should this be 2d?
+	ot->description= "Set 2D cursor location.";
 	ot->idname= "UV_OT_cursor_set";
 	
 	/* api callbacks */
@@ -3031,6 +3049,7 @@
 {
 	/* identifiers */
 	ot->name= "Set Tile";
+	ot->description= "Set UV image tile coordinates.";
 	ot->idname= "UV_OT_tile_set";
 	
 	/* api callbacks */





More information about the Bf-blender-cvs mailing list