aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/texteditoractionhandler.h
diff options
context:
space:
mode:
authorSteffen Imhof <steffen.imhof@basyskom.de>2011-02-25 11:10:42 +0100
committerThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2011-02-25 16:11:20 +0100
commitb3169701013a01729cead5e0a4a9defd9246f423 (patch)
treef8d13a0c41d88328b3f7c8b533f43fc584a3f0e1 /src/plugins/texteditor/texteditoractionhandler.h
parented8dd0b0313ed5467bb876276423e0b0a4f21c95 (diff)
Add uppercase and lowercase selection actions to the text editor.
Merge-request: 256 Reviewed-by: Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
Diffstat (limited to 'src/plugins/texteditor/texteditoractionhandler.h')
-rw-r--r--src/plugins/texteditor/texteditoractionhandler.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/texteditor/texteditoractionhandler.h b/src/plugins/texteditor/texteditoractionhandler.h
index d4fec4f846..fb7789a17f 100644
--- a/src/plugins/texteditor/texteditoractionhandler.h
+++ b/src/plugins/texteditor/texteditoractionhandler.h
@@ -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;