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

@@ -120,6 +120,8 @@ private slots:
void joinLines();
void insertLineAbove();
void insertLineBelow();
void uppercaseSelection();
void lowercaseSelection();
void updateCurrentEditor(Core::IEditor *editor);
void gotoLineStart();
@@ -181,6 +183,8 @@ private:
QAction *m_joinLinesAction;
QAction *m_insertLineAboveAction;
QAction *m_insertLineBelowAction;
QAction *m_upperCaseSelectionAction;
QAction *m_lowerCaseSelectionAction;
uint m_optionalActions;
QPointer<BaseTextEditorWidget> m_currentEditor;