Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-10-25 02:26:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-10-25 02:26:28 +0300
commit4aa7ddfe33716b16d8c0646d0049c38a13835df3 (patch)
tree31b19159093fa2c55c407086d1e466dc1d310986
parentbf5f63f09be085ebaec7ded41ff1991e4406f5c5 (diff)
description patch from Ron Walker
-rw-r--r--source/blender/editors/animation/anim_markers.c7
-rw-r--r--source/blender/editors/physics/physics_fluid.c1
-rw-r--r--source/blender/editors/sound/sound_ops.c4
-rw-r--r--source/blender/editors/space_logic/logic_buttons.c1
-rw-r--r--source/blender/editors/space_script/script_edit.c2
-rw-r--r--source/blender/editors/uvedit/uvedit_ops.c21
6 files changed, 34 insertions, 2 deletions
diff --git a/source/blender/editors/animation/anim_markers.c b/source/blender/editors/animation/anim_markers.c
index f4ecb9d5def..54d569c10dd 100644
--- a/source/blender/editors/animation/anim_markers.c
+++ b/source/blender/editors/animation/anim_markers.c
@@ -359,6 +359,7 @@ static void MARKER_OT_add(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Add Time Marker";
+ ot->description= "Add a new time marker.";
ot->idname= "MARKER_OT_add";
/* api callbacks */
@@ -612,6 +613,7 @@ static void MARKER_OT_move(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Move Time Marker";
+ ot->description= "Move selected time marker(s).";
ot->idname= "MARKER_OT_move";
/* api callbacks */
@@ -695,6 +697,7 @@ static void MARKER_OT_duplicate(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Duplicate Time Marker";
+ ot->description= "Duplicate selected time marker(s).";
ot->idname= "MARKER_OT_duplicate";
/* api callbacks */
@@ -771,6 +774,7 @@ static void MARKER_OT_select(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Select Time Marker";
+ ot->description= "Select time marker(s).";
ot->idname= "MARKER_OT_select";
/* api callbacks */
@@ -852,6 +856,7 @@ static void MARKER_OT_select_border(wmOperatorType *ot)
{
/* 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 @@ static void MARKER_OT_select_all_toggle(wmOperatorType *ot)
{
/* 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 @@ static void MARKER_OT_delete(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Delete Markers";
+ ot->description= "Delete selected time marker(s).";
ot->idname= "MARKER_OT_delete";
/* api callbacks */
diff --git a/source/blender/editors/physics/physics_fluid.c b/source/blender/editors/physics/physics_fluid.c
index 126c21a554b..b72c4991094 100644
--- a/source/blender/editors/physics/physics_fluid.c
+++ b/source/blender/editors/physics/physics_fluid.c
@@ -1195,6 +1195,7 @@ void FLUID_OT_bake(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Fluid Simulation Bake";
+ ot->description= "Bake fluid simulation.";
ot->idname= "FLUID_OT_bake";
/* api callbacks */
diff --git a/source/blender/editors/sound/sound_ops.c b/source/blender/editors/sound/sound_ops.c
index 1121a3bcbcd..3b42fc7b382 100644
--- a/source/blender/editors/sound/sound_ops.c
+++ b/source/blender/editors/sound/sound_ops.c
@@ -103,8 +103,8 @@ void SOUND_OT_open(wmOperatorType *ot)
{
/* 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 @@ void SOUND_OT_pack(wmOperatorType *ot)
{
/* 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 @@ void SOUND_OT_unpack(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Unpack Sound";
+ ot->description= "Unpack the sound to the samples filename.";
ot->idname= "SOUND_OT_unpack";
/* api callbacks */
diff --git a/source/blender/editors/space_logic/logic_buttons.c b/source/blender/editors/space_logic/logic_buttons.c
index 5761432ee29..c8f96fe3373 100644
--- a/source/blender/editors/space_logic/logic_buttons.c
+++ b/source/blender/editors/space_logic/logic_buttons.c
@@ -133,6 +133,7 @@ static int logic_properties(bContext *C, wmOperator *op)
void LOGIC_OT_properties(wmOperatorType *ot)
{
ot->name= "Properties";
+ ot->description= "Toggle display properties panel.";
ot->idname= "LOGIC_OT_properties";
ot->exec= logic_properties;
diff --git a/source/blender/editors/space_script/script_edit.c b/source/blender/editors/space_script/script_edit.c
index c17793b28f8..df6f932acdf 100644
--- a/source/blender/editors/space_script/script_edit.c
+++ b/source/blender/editors/space_script/script_edit.c
@@ -79,6 +79,7 @@ void SCRIPT_OT_python_file_run(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Run python file";
+ ot->description= "Run Python file.";
ot->idname= "SCRIPT_OT_python_file_run";
/* api callbacks */
@@ -111,6 +112,7 @@ void SCRIPT_OT_python_run_ui_scripts(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Reload Python Interface";
+ ot->description= "Reload Python interface.";
ot->idname= "SCRIPT_OT_python_run_ui_scripts";
/* api callbacks */
diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c
index 1641d1c8fac..66f67030d7f 100644
--- a/source/blender/editors/uvedit/uvedit_ops.c
+++ b/source/blender/editors/uvedit/uvedit_ops.c
@@ -1044,6 +1044,7 @@ void UV_OT_align(wmOperatorType *ot)
/* 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 @@ void UV_OT_weld(wmOperatorType *ot)
{
/* 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 @@ void UV_OT_stitch(wmOperatorType *ot)
{
/* 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 @@ void UV_OT_select_inverse(wmOperatorType *ot)
{
/* 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 @@ void UV_OT_select_all_toggle(wmOperatorType *ot)
{
/* 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 @@ void UV_OT_select(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Select";
+ ot->description= "Select UV vertice.";
ot->idname= "UV_OT_select";
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
@@ -1759,6 +1765,7 @@ void UV_OT_select_loop(wmOperatorType *ot)
{
/* 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 @@ void UV_OT_select_linked(wmOperatorType *ot)
{
/* 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 @@ void UV_OT_unlink_selection(wmOperatorType *ot)
{
/* 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 @@ void UV_OT_select_border(wmOperatorType *ot)
{
/* 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 @@ void UV_OT_circle_select(wmOperatorType *ot)
{
/* 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 @@ void UV_OT_snap_cursor(wmOperatorType *ot)
/* 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 @@ void UV_OT_snap_selection(wmOperatorType *ot)
/* 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 @@ void UV_OT_pin(wmOperatorType *ot)
{
/* 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 @@ void UV_OT_select_pinned(wmOperatorType *ot)
{
/* 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 @@ void UV_OT_hide(wmOperatorType *ot)
{
/* 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 @@ void UV_OT_reveal(wmOperatorType *ot)
{
/* 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 @@ static int set_2d_cursor_invoke(bContext *C, wmOperator *op, wmEvent *event)
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 @@ void UV_OT_tile_set(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Set Tile";
+ ot->description= "Set UV image tile coordinates.";
ot->idname= "UV_OT_tile_set";
/* api callbacks */