diff options
author | dt <qtc-committer@nokia.com> | 2009-04-30 12:50:52 +0200 |
---|---|---|
committer | dt <qtc-committer@nokia.com> | 2009-04-30 12:50:52 +0200 |
commit | 540ddcd562728b2be4bb8cb72c5c999d1341d1f4 (patch) | |
tree | 2d3b247dbab36d9f8279d9e03adaa29f20a3e101 /src/plugins/coreplugin/messageoutputwindow.cpp | |
parent | 4e6e5408939bc33b8ecac67bc4e1dc4ac1f3c64c (diff) | |
download | qt-creator-540ddcd562728b2be4bb8cb72c5c999d1341d1f4.tar.gz |
Add a next/prev shortcut (F6 for now) for outputpanes.
This one has some magic inside to always use the current outputpane.
This solves the issue that I don't want Search and Build Issues list to
have its own set of next/prev shortcuts. todo is a better definition of
next for the build issues and/or a way to restrict it only to errors.
Diffstat (limited to 'src/plugins/coreplugin/messageoutputwindow.cpp')
-rw-r--r-- | src/plugins/coreplugin/messageoutputwindow.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/plugins/coreplugin/messageoutputwindow.cpp b/src/plugins/coreplugin/messageoutputwindow.cpp index 3fb4503445..7fc733744b 100644 --- a/src/plugins/coreplugin/messageoutputwindow.cpp +++ b/src/plugins/coreplugin/messageoutputwindow.cpp @@ -89,3 +89,28 @@ int MessageOutputWindow::priorityInStatusBar() const { return -1; } + +bool MessageOutputWindow::canNext() +{ + return false; +} + +bool MessageOutputWindow::canPrevious() +{ + return false; +} + +void MessageOutputWindow::goToNext() +{ + +} + +void MessageOutputWindow::goToPrev() +{ + +} + +bool MessageOutputWindow::canNavigate() +{ + return false; +} |