ui: focusing multiple tokens at once

This change focuses all token locations underneath the cursor at once by extending the focus handling to use vectors.
This commit is contained in:
Eberhard Graether
2015-11-12 10:14:46 +01:00
parent 28e3880e10
commit 00b74d2f30
18 changed files with 181 additions and 157 deletions
@@ -61,12 +61,12 @@ void GraphController::handleMessage(MessageFlushUpdates* message)
void GraphController::handleMessage(MessageFocusIn* message)
{
getView()->focusToken(message->tokenId);
getView()->focusTokenIds(message->tokenIds);
}
void GraphController::handleMessage(MessageFocusOut *message)
{
getView()->defocusToken(message->tokenId);
getView()->defocusTokenIds(message->tokenIds);
}
void GraphController::handleMessage(MessageGraphNodeBundleSplit* message)