Pause until a figure close OR a button is pressed

160 ビュー (過去 30 日間)
Luca Amerio
Luca Amerio 2016 年 11 月 15 日
コメント済み: Mathias Bannwart 2018 年 1 月 18 日
Hi.
In the middle of my script I ask the user to zoom a figure and call ginput afterwards. I would like to interrupt (return) the script if the user closes the figure. Right now I did
h=figure;
plot(1:1000,randn(1000,1))
zoom on
pause
if ~isvalid(h),return,end
try
[x,y]=ginput(1)
end
However this waits for the user to click a button even if the figure is closed. That is, the user closes the figure, but the script does not notice it until it ALSO press a button. The uiwait or waitfor command could understand if the figure is closed, but then I have to close the figure in order to make the script continue.
Is it possible to obtain a result similar to
figure
zoom on
event=pauseOrWaitfor
if event=='figureClosed'
return
elseif event=='userClickedAButton'
%Do other things here
end
thank you

回答 (1 件)

Jan
Jan 2016 年 11 月 15 日
編集済み: Jan 2016 年 11 月 15 日
h = figure;
drawnow;
disp(clock)
waitfor(h)
disp(clock)
  2 件のコメント
Luca Amerio
Luca Amerio 2016 年 11 月 15 日
編集済み: Luca Amerio 2016 年 11 月 15 日
Sorry Jan, but doesn't this require h to be closed to continue?
As I said in the question: "The uiwait or waitfor command could understand if the figure is closed, but then I have to close the figure in order to make the script continue"
Am I wrong?
I'm looking for a solution that continue either if the figure is close or if the user push a button, and maybe recognize which of the two happened.
Mathias Bannwart
Mathias Bannwart 2018 年 1 月 18 日
If both options are needed you could use waitforbuttonpress to detect if the user presses a key or clicks a mouse button and catch closing of the figure in a try/catch statement:
h = figure;
drawnow;
disp(clock)
try
waitforbuttonpress
% Close figure or leave it open
close(h)
disp('mouse or key pressed')
catch
disp('figure closed')
end
disp(clock)
Note that focus on the current figure is required (from R2014 on) to resume program execution after mouse or button presses.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by