Implement go to previous split feature

These changes allows users to move between splits
using the hotkeys not only clockwise, but counterclockwise too

Change-Id: I2a30bc0cd869881c525674d7e40e622b4b3dc7f6
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
Artem Chystikov
2015-12-20 15:31:23 +02:00
parent 049ffa2c10
commit 98cb40903b
5 changed files with 72 additions and 1 deletions

View File

@@ -112,7 +112,8 @@ const char SPLIT_SIDE_BY_SIDE[] = "QtCreator.SplitSideBySide";
const char SPLIT_NEW_WINDOW[] = "QtCreator.SplitNewWindow";
const char REMOVE_CURRENT_SPLIT[] = "QtCreator.RemoveCurrentSplit";
const char REMOVE_ALL_SPLITS[] = "QtCreator.RemoveAllSplits";
const char GOTO_NEXT_SPLIT[] = "QtCreator.GotoOtherSplit";
const char GOTO_PREV_SPLIT[] = "QtCreator.GoToPreviousSplit";
const char GOTO_NEXT_SPLIT[] = "QtCreator.GoToNextSplit";
const char CLOSE[] = "QtCreator.Close";
const char CLOSE_ALTERNATIVE[] = "QtCreator.Close_Alternative"; // temporary, see QTCREATORBUG-72
const char CLOSEALL[] = "QtCreator.CloseAll";