block navigation and selection (bound to Ctrl+[]{}

This commit is contained in:
mae
2008-12-04 18:37:02 +01:00
parent 9e51c7250a
commit e9ad023def
6 changed files with 187 additions and 50 deletions

View File

@@ -109,6 +109,10 @@ private slots:
void selectEncoding();
void increaseFontSize();
void decreaseFontSize();
void gotoBlockStart();
void gotoBlockEnd();
void gotoBlockStartWithSelection();
void gotoBlockEndWithSelection();
void updateCurrentEditor(Core::IContext *object);
private:
@@ -131,6 +135,10 @@ private:
QAction *m_selectEncodingAction;
QAction *m_increaseFontSizeAction;
QAction *m_decreaseFontSizeAction;
QAction *m_gotoBlockStartAction;
QAction *m_gotoBlockEndAction;
QAction *m_gotoBlockStartWithSelectionAction;
QAction *m_gotoBlockEndWithSelectionAction;
uint m_optionalActions;
QPointer<BaseTextEditor> m_currentEditor;