timer causes drawing problem when loading a figure

2 次查看(过去 30 天)
When running a GUI that has a timer callback, I notice that loading other GUI figures often fails (incorrect rendering). Is this known behavior? Are there any workarounds? I assume that the code loading the figures isn't immune to a timer spontaneously injecting code ... (e.g. updating the current figure or axes).
Edit: I'm using Matlab 2016a or newer (need to check specific version) on Windows 7. The code to load the figure is:
fig = openfig(fig_path);
After running this line the figure is rendered incorrectly. The figure is the wrong size and components are not where they are supposed to be.
The loaded figures have been created by GUIDE with no code generation (just figure layout). The remaining code (not shown) only adds callbacks and updates display strings; no components are created or positions/sizes changed.
  3 个评论
Jim Hokanson
Jim Hokanson 2017-9-22
I've updated the question. I don't currently have access to the machines on which I can run this code. When I do I can add the specific versions as well as pictures.
Jan
Jan 2017-9-22
编辑:Jan 2017-9-22
@Jim: Please post a screenshot of the correct and the garbled figure. What is the contents of the timer callback? Does it change the current figure, object or directory?

请先登录,再进行评论。

回答(1 个)

Jan
Jan 2017-9-22
A timer callback can change the current figure and current axes. How do you "load" the figures? Do the conflict appear inside the OpeningFcn? Which objects are concerned? Does any user-defined code run, which assume the current figure and axes to be static? Then a solution would be to define the 'Parent' property in every case:
FigH = figure;
AxesH = axes('Parent', 'FigH);
plot(1:10, rand(1, 10), 'Parent', AxesH);
Then a timer callback cannot disturb the creation.
Another idea would be not to change the current figure and axes inside timer callbacks.
  1 个评论
Jim Hokanson
Jim Hokanson 2017-9-22
Hi Jan,
Thanks for the answer. I've updated the question to clarify the use case. The problem is with the load figure call, not with secondary component creation after the figure has been loaded.

请先登录,再进行评论。

类别

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