Continuous tracking of 'LocationChanged' event of figure
Show older comments
Hi,
I am trying to glue a (main) figure 1 to a (following) figure 2, so that when the user manually moves the main figure, the following figure moves with it. The intended effect is that they are side by side at every moment. By now, my strategy is to use a listener that listens to the 'LocationChanged' event of main figure and replaces figure 2 according to the changes notified by figure 1. The problem is that 'LocationChanged' seems to get notified only after the user has stopped moving the main figure. At this moment, figure 2 just jumps to the side of the main figure.... is there a way to ensure that the event 'LocationChanged' is issued continuously while the figure is being moved?
Accepted Answer
More Answers (1)
Kai Domhardt
on 27 Mar 2018
Edited: Kai Domhardt
on 28 Mar 2018
If you are just trying to display two plot side by side the subplot function is what you are looking for, without having to track figure locations.
If you really want to move the individual figure you can achieve this with:
function window_motion_test
mainFig = figure();
pause(0.2) % Wait for the figure construction complete.
jFig = get(main_fig, 'JavaFrame'); % get JavaFrame. You might see some warnings.
jWindow = jFig.fHG2Client.getWindow; % before 2011a it could be `jFig.fFigureClient.getWindow`. Sorry I cannot test.
jbh = handle(jWindow,'CallbackProperties'); % Prevent memory leak
set(jbh,'ComponentMovedCallback',{@windowMoved});
followFig = figure();
function windowMoved(src,callbackdata)
jComponent = callbackdata.getComponent;
mainFig_pos = jComponent.getLocation;
mainFig_size = jComponent.getSize;
followFig_width = followFig.Position(3);
followFig_height = followFig.Position(4);
followFig.Position = [mainFig_pos.x + mainFig_size.width,...
mainFig_pos.getY,...
followFig_width,...
followFig_height];
%followFig lower left corner is now attached to
%mainFig lower right corner
end
end
The important part comes from this question on stackoverflow, which in turn references this entry on undocumentedmatlab.
4 Comments
Arabarra
on 28 Mar 2018
Kai Domhardt
on 28 Mar 2018
Edited: Kai Domhardt
on 28 Mar 2018
What version of Matlab are you using?
I am using 9.3.0.713579 (R2017b) and it produces the wanted result of a smoothly following figure.
Arabarra
on 28 Mar 2018
Arabarra
on 28 Mar 2018
Categories
Find more on Creating, Deleting, and Querying Graphics Objects in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!