blurFigure - blurs and prevents interaction on figure window

버전 1.2.0.1 (5.2 KB) 작성자: Yair Altman
blurs a specified figure window and prevents interaction with it until the figure is un-blurred
다운로드 수: 1.4K
업데이트 날짜: 2019/5/3

라이선스 보기

Syntax:
hFigBlur = blurFigure(hFig, state)

Description:
blurFigure(hFig) blurs figure hFig and prevents interaction with it. The only interaction possible is with user-created controls on the blurring panel (see below).

hFigBlur = blurFigure(hFig) returns the overlaid blurred figure pane. This is useful to present a progress bar or other GUI controls, for user interaction during the blur phase.

blurFigure(hFig,STATE) sets the blur status of figure hFig to STATE, where state is 'on','off',true or false (default='on'/true).

blurFigure(hFig,'on') or blurFigure(hFig,true) is the same as: blurFigure(hFig).

blurFigure(hFig,'off') or blurFigure(hFig,false) is the same as: close(hFigBlur).

blurFigure('demo') displays a simple demo of the blurring (see attached screenshot).

Input parameters: (all parameters are optional)

hFig - (default=gcf) Handle(s) of the modified figure(s). If component handle(s) is/are specified, then the containing figure(s) will be inferred and used.

state - (default='on'/true) blurring flag: 'on','off',true or false

Examples:
hFigBlur = blurFigure(hFig); % blur hFig (alternative #1)
hFigBlur = blurFigure(hFig,true); % blur hFig (alternative #2)

hFigBlur = blurFigure(hFig,false); % un-blur hFig (alternative #1)
hFigBlur = blurFigure(hFig,'off'); % un-blur hFig (alternative #2)
close(hFigBlur); % un-blur hFig (alternative #3)
delete(hFigBlur); % un-blur hFig (alternative #4)

blurFigure('demo'); % blur demo with progress bar etc.

Technical Description:
http://UndocumentedMatlab.com/blog/blurred-matlab-figure-window

Bugs and suggestions:
Please send to Yair Altman (altmany at gmail dot com)

Warning:
This code heavily relies on undocumented and unsupported Matlab functionality. It works on Matlab 7.9 (R2009b) and higher (up to R2013a), but use at your own risk!

인용 양식

Yair Altman (2024). blurFigure - blurs and prevents interaction on figure window (https://www.mathworks.com/matlabcentral/fileexchange/30666-blurfigure-blurs-and-prevents-interaction-on-figure-window), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2010b
R2009b에서 R2013a까지의 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.2.0.1

Updated the release compatibility limitations (no code changes)

1.2.0.0

Fix for R2011a; fixed description;

1.1.0.0

Fixed the demo code

1.0.0.0