Home > freetb4matlab > tk_octave > tk_busy_cancel.m

tk_busy_cancel

PURPOSE ^

% st = tk_busy_cancel (text)

SYNOPSIS ^

function st = tk_busy_cancel (text)

DESCRIPTION ^

% st = tk_busy_cancel (text)
%
% tk_busy_cancel(text) sets up an hourglass box with the text message
% inside and a cancel button. While in your processing loop you should 
% periodically test whether the cancel button has been pressed by calling
% without arguments.  After your loop, you should call tk_busy_cancel
% without arguments and without a return value.  You may update the
% message within the loop by calling tk_busy_cancel with a new text
% string.
%
% Example
%    tk_busy_cancel('Counting...');
%    for i=1:100000
%       if (tk_busy_cancel) break; end
%       if (mod(i,100)==0)
%          tk_busy_cancel(sprintf('Counting... %d',i));
%       end
%    end
%    tk_busy_cancel;
%    printf('Counted to %d\n', i);

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Fri 22-May-2009 15:13:00 by m2html © 2003