two new actions: "select block up" and "select block down", current default is Ctrl+U

This commit is contained in:
mae
2008-12-04 19:25:20 +01:00
parent e9ad023def
commit e594815842
6 changed files with 87 additions and 31 deletions

View File

@@ -113,6 +113,8 @@ private slots:
void gotoBlockEnd();
void gotoBlockStartWithSelection();
void gotoBlockEndWithSelection();
void selectBlockUp();
void selectBlockDown();
void updateCurrentEditor(Core::IContext *object);
private:
@@ -139,6 +141,8 @@ private:
QAction *m_gotoBlockEndAction;
QAction *m_gotoBlockStartWithSelectionAction;
QAction *m_gotoBlockEndWithSelectionAction;
QAction *m_selectBlockUpAction;
QAction *m_selectBlockDownAction;
uint m_optionalActions;
QPointer<BaseTextEditor> m_currentEditor;