Continuous tracking of 'LocationChanged' event of figure

12 次查看(过去 30 天)
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?

采纳的回答

Sean de Wolski
Sean de Wolski 2018-3-28
It seems to be firing and responding correctly for me (18a, Windows) as I drag fig1 around.
posOffset = [500 0]; % positional offset
fig1 = figure('Units','pixels','Position',[140 140 400 400]);
fig2 = figure('Units','pixels','Position',[fig1.Position(1:2)+posOffset 400 400]);
listener1 = event.listener(fig1, 'LocationChanged', @(~,~)set(fig2, 'Position', fig1.Position+[posOffset 0 0]));
  4 个评论
Sean de Wolski
Sean de Wolski 2018-3-29
@Kai, et al. you can look at the meta class for any class to see all of the attributes of all events/methods/properties for any class.
I just did:
mc = metaclass(figure)
Matt J
Matt J 2021-5-18
Strange, though, that the events() command lists such a small subset of the events:
>> events(gcf)
Events for class matlab.ui.Figure:
ObjectBeingDestroyed
PropertyAdded
PropertyRemoved
That would seem to mean that 'LocationChanged' and others are undocumented and aren't to be relied upon for backward compatibility.

请先登录,再进行评论。

更多回答(1 个)

Kai Domhardt
Kai Domhardt 2018-3-27
编辑:Kai Domhardt 2018-3-28
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 个评论
Arabarra
Arabarra 2018-3-28
Oh, interesting... I'm using R2017a on a Mac. I'll try to get a 17b version and try...
Arabarra
Arabarra 2018-3-28
well, I just did. It definitively doesn't work in my laptop with any matlab version (2017b,2018a), so maybe it is something system dependent (I'm using OS X Yosemite)... I'll try on windows or linux machines when I have the occasion...

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by