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:
authorBastien Montagne <montagne29@wanadoo.fr>2012-05-04 19:00:36 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-05-04 19:00:36 +0400
commitb178ee5cd0cca580d000475ad95f64148faa7479 (patch)
tree70ed1f74344be734a5012743dab3643ec17d845d /source/blender/editors/space_image
parent133bdac1d0cfe92084361f59bbd44b2ecd8127eb (diff)
First part of fix for [#31157]: Some (actually, 172) operators have no tooltip.
Notes: * This commit adds about a third of missing tips (a few are rather dummy, as name already says everything, but better that than "(undocumented operator)" showing in UI! * There is a problem with macros, their tips are not registered in RNA. Got a patch for this, will submit it to campbo asap.
Diffstat (limited to 'source/blender/editors/space_image')
-rw-r--r--source/blender/editors/space_image/image_ops.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/source/blender/editors/space_image/image_ops.c b/source/blender/editors/space_image/image_ops.c
index d9f3ffafb14..bbc12520978 100644
--- a/source/blender/editors/space_image/image_ops.c
+++ b/source/blender/editors/space_image/image_ops.c
@@ -334,6 +334,7 @@ void IMAGE_OT_view_pan(wmOperatorType *ot)
/* identifiers */
ot->name = "View Pan";
ot->idname = "IMAGE_OT_view_pan";
+ ot->description = "Pan the view";
/* api callbacks */
ot->exec = image_view_pan_exec;
@@ -471,6 +472,7 @@ void IMAGE_OT_view_zoom(wmOperatorType *ot)
/* identifiers */
ot->name = "View Zoom";
ot->idname = "IMAGE_OT_view_zoom";
+ ot->description = "Zoom in/out the image";
/* api callbacks */
ot->exec = image_view_zoom_exec;
@@ -539,6 +541,7 @@ void IMAGE_OT_view_ndof(wmOperatorType *ot)
/* identifiers */
ot->name = "NDOF Pan/Zoom";
ot->idname = "IMAGE_OT_view_ndof";
+ ot->description = "Use a 3D mouse device to pan/zoom the view";
/* api callbacks */
ot->invoke = image_view_ndof_invoke;
@@ -592,6 +595,7 @@ void IMAGE_OT_view_all(wmOperatorType *ot)
/* identifiers */
ot->name = "View All";
ot->idname = "IMAGE_OT_view_all";
+ ot->description = "View the whole picture";
/* api callbacks */
ot->exec = image_view_all_exec;
@@ -653,6 +657,7 @@ void IMAGE_OT_view_selected(wmOperatorType *ot)
/* identifiers */
ot->name = "View Center";
ot->idname = "IMAGE_OT_view_selected";
+ ot->description = "View all selected UVs";
/* api callbacks */
ot->exec = image_view_selected_exec;
@@ -692,6 +697,7 @@ void IMAGE_OT_view_zoom_in(wmOperatorType *ot)
/* identifiers */
ot->name = "View Zoom In";
ot->idname = "IMAGE_OT_view_zoom_in";
+ ot->description = "Zoom in the image (centered around 2D cursor)";
/* api callbacks */
ot->invoke = image_view_zoom_in_invoke;
@@ -733,6 +739,7 @@ void IMAGE_OT_view_zoom_out(wmOperatorType *ot)
/* identifiers */
ot->name = "View Zoom Out";
ot->idname = "IMAGE_OT_view_zoom_out";
+ ot->description = "Zoom out the image (centered around 2D cursor)";
/* api callbacks */
ot->invoke = image_view_zoom_out_invoke;
@@ -775,6 +782,7 @@ void IMAGE_OT_view_zoom_ratio(wmOperatorType *ot)
/* identifiers */
ot->name = "View Zoom Ratio";
ot->idname = "IMAGE_OT_view_zoom_ratio";
+ ot->description = "Set zoom ration of the view";
/* api callbacks */
ot->exec = image_view_zoom_ratio_exec;
@@ -978,6 +986,7 @@ void IMAGE_OT_replace(wmOperatorType *ot)
/* identifiers */
ot->name = "Replace Image";
ot->idname = "IMAGE_OT_replace";
+ ot->description = "Replace current image by another one from disk";
/* api callbacks */
ot->exec = image_replace_exec;
@@ -1316,6 +1325,7 @@ void IMAGE_OT_save_as(wmOperatorType *ot)
/* identifiers */
ot->name = "Save As Image";
ot->idname = "IMAGE_OT_save_as";
+ ot->description = "Save the image with another name and/or settings";
/* api callbacks */
ot->exec = image_save_as_exec;
@@ -1362,6 +1372,7 @@ void IMAGE_OT_save(wmOperatorType *ot)
/* identifiers */
ot->name = "Save Image";
ot->idname = "IMAGE_OT_save";
+ ot->description = "Save the image with current name and settings";
/* api callbacks */
ot->exec = image_save_exec;
@@ -1439,6 +1450,7 @@ void IMAGE_OT_save_sequence(wmOperatorType *ot)
/* identifiers */
ot->name = "Save Sequence";
ot->idname = "IMAGE_OT_save_sequence";
+ ot->description = "Save a sequence of images";
/* api callbacks */
ot->exec = image_save_sequence_exec;
@@ -1474,6 +1486,7 @@ void IMAGE_OT_reload(wmOperatorType *ot)
/* identifiers */
ot->name = "Reload Image";
ot->idname = "IMAGE_OT_reload";
+ ot->description = "Reload current image from disk";
/* api callbacks */
ot->exec = image_reload_exec;
@@ -1646,6 +1659,7 @@ void IMAGE_OT_invert(wmOperatorType *ot)
/* identifiers */
ot->name = "Invert Channels";
ot->idname = "IMAGE_OT_invert";
+ ot->description = "Invert image's channels";
/* api callbacks */
ot->exec = image_invert_exec;
@@ -2021,6 +2035,7 @@ void IMAGE_OT_sample(wmOperatorType *ot)
/* identifiers */
ot->name = "Sample Color";
ot->idname = "IMAGE_OT_sample";
+ ot->description = "Use mouse to sample a color in current image";
/* api callbacks */
ot->invoke = image_sample_invoke;
@@ -2130,6 +2145,7 @@ void IMAGE_OT_sample_line(wmOperatorType *ot)
/* identifiers */
ot->name = "Sample Line";
ot->idname = "IMAGE_OT_sample_line";
+ ot->description = "Sample a line and show it in Scope panels";
/* api callbacks */
ot->invoke = image_sample_line_invoke;
@@ -2157,6 +2173,7 @@ void IMAGE_OT_curves_point_set(wmOperatorType *ot)
/* identifiers */
ot->name = "Set Curves Point";
ot->idname = "IMAGE_OT_curves_point_set";
+ ot->description = "Set black or white point for curves";
/* flags */
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
@@ -2362,6 +2379,7 @@ void IMAGE_OT_cycle_render_slot(wmOperatorType *ot)
/* identifiers */
ot->name = "Cycle Render Slot";
ot->idname = "IMAGE_OT_cycle_render_slot";
+ ot->description = "Cycle through all non-void render slots";
/* api callbacks */
ot->exec = image_cycle_render_slot_exec;