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-09-12 21:16:12 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-09-12 21:16:12 +0400
commitf9eb93bc7bd8351864cc4787953e2faf7d4cfd30 (patch)
tree1e34e042078ab98ee6e07a9db1a8617e38745973 /source/blender/editors/curve/editfont.c
parentf130f16fef38d40ee492ccb4ff1ad0708329ae3c (diff)
many docstrings from Ron Walker and Luca (mindrones on IRC),
only did a spot check on these, may need adjusting later.
Diffstat (limited to 'source/blender/editors/curve/editfont.c')
-rw-r--r--source/blender/editors/curve/editfont.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/source/blender/editors/curve/editfont.c b/source/blender/editors/curve/editfont.c
index ae34f30a4f1..a9736f3f88d 100644
--- a/source/blender/editors/curve/editfont.c
+++ b/source/blender/editors/curve/editfont.c
@@ -317,6 +317,7 @@ void FONT_OT_insert_lorem(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Insert Lorem";
+ ot->description= "Insert placeholder text.";
ot->idname= "FONT_OT_insert_lorem";
/* api callbacks */
@@ -404,6 +405,7 @@ void FONT_OT_file_paste(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Paste File";
+ ot->description= "Paste contents from file.";
ot->idname= "FONT_OT_file_paste";
/* api callbacks */
@@ -452,6 +454,7 @@ void FONT_OT_buffer_paste(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Paste Buffer";
+ ot->description= "Paste text from OS buffer.";
ot->idname= "FONT_OT_buffer_paste";
/* api callbacks */
@@ -648,6 +651,7 @@ void FONT_OT_style_set(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Set Style";
+ ot->description= "Set font style.";
ot->idname= "FONT_OT_style_set";
/* api callbacks */
@@ -685,6 +689,7 @@ void FONT_OT_style_toggle(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Toggle Style";
+ ot->description= "Toggle font style.";
ot->idname= "FONT_OT_style_toggle";
/* api callbacks */
@@ -727,6 +732,7 @@ void FONT_OT_text_copy(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Copy Text";
+ ot->description= "Copy selected text to clipboard.";
ot->idname= "FONT_OT_text_copy";
/* api callbacks */
@@ -757,6 +763,7 @@ void FONT_OT_text_cut(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Cut Text";
+ ot->description= "Cut selected text to clipboard.";
ot->idname= "FONT_OT_text_cut";
/* api callbacks */
@@ -814,6 +821,7 @@ void FONT_OT_text_paste(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Paste Text";
+ ot->description= "Paste text from clipboard.";
ot->idname= "FONT_OT_text_paste";
/* api callbacks */
@@ -949,6 +957,7 @@ void FONT_OT_move(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Move Cursor";
+ ot->description= "Move cursor to position type.";
ot->idname= "FONT_OT_move";
/* api callbacks */
@@ -975,6 +984,7 @@ void FONT_OT_move_select(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Move Select";
+ ot->description= "Make selection from current cursor position to new cursor position type.";
ot->idname= "FONT_OT_move_select";
/* api callbacks */
@@ -1016,6 +1026,7 @@ void FONT_OT_change_spacing(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Change Spacing";
+ ot->description= "Change font spacing.";
ot->idname= "FONT_OT_change_spacing";
/* api callbacks */
@@ -1060,6 +1071,7 @@ void FONT_OT_change_character(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Change Character";
+ ot->description= "Change font character code.";
ot->idname= "FONT_OT_change_character";
/* api callbacks */
@@ -1102,6 +1114,7 @@ void FONT_OT_line_break(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Line Break";
+ ot->description= "Insert line break at cursor position.";
ot->idname= "FONT_OT_line_break";
/* api callbacks */
@@ -1191,6 +1204,7 @@ void FONT_OT_delete(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Delete";
+ ot->description= "Delete text by cursor position.";
ot->idname= "FONT_OT_delete";
/* api callbacks */
@@ -1332,6 +1346,7 @@ void FONT_OT_text_insert(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Insert Text";
+ ot->description= "Insert text at cursor position.";
ot->idname= "FONT_OT_text_insert";
/* api callbacks */
@@ -1467,6 +1482,7 @@ void FONT_OT_case_set(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Set Case";
+ ot->description= "Set font case.";
ot->idname= "FONT_OT_case_set";
/* api callbacks */
@@ -1509,6 +1525,7 @@ void FONT_OT_case_toggle(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Toggle Case";
+ ot->description= "Toggle font case.";
ot->idname= "FONT_OT_case_toggle";
/* api callbacks */