Add uppercase and lowercase selection actions to the text editor.

Merge-request: 256
Reviewed-by: Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
This commit is contained in:
Steffen Imhof
2011-02-25 11:10:42 +01:00
committed by Thorbjørn Lindeijer
parent ed8dd0b031
commit b316970101
5 changed files with 76 additions and 0 deletions

View File

@@ -67,6 +67,8 @@ const char * const COPY_LINE_DOWN = "TextEditor.CopyLineDown";
const char * const JOIN_LINES = "TextEditor.JoinLines";
const char * const INSERT_LINE_ABOVE = "TextEditor.InsertLineAboveCurrentLine";
const char * const INSERT_LINE_BELOW = "TextEditor.InsertLineBelowCurrentLine";
const char * const UPPERCASE_SELECTION = "TextEditor.UppercaseSelection";
const char * const LOWERCASE_SELECTION = "TextEditor.LowercaseSelection";
const char * const CUT_LINE = "TextEditor.CutLine";
const char * const DELETE_LINE = "TextEditor.DeleteLine";
const char * const DELETE_WORD = "TextEditor.DeleteWord";