in file Progress.php, method HTML_Progress::addListener() Adds a HTML_Progress_Observer instance to the list of observers that are listening for messages emitted by this HTML_Progress instance.
in file Progress.php, method HTML_Progress::getIncrement() Returns the progress bar's increment value stored in the progress bar's data model.
getListeners
in file Progress.php, method HTML_Progress::getListeners() Returns an array of all the listeners added to this progress bar.
getMaximum
in file Progress.php, method HTML_Progress::getMaximum() Returns the progress bar's maximum value stored in the progress bar's data model.
getMinimum
in file Progress.php, method HTML_Progress::getMinimum() Returns the progress bar's minimum value stored in the progress bar's data model.
getPercentComplete
in file Progress.php, method HTML_Progress::getPercentComplete() Returns the percent complete for the progress bar. Note that this number is between 0.00 and 1.00.
in file Progress.php, method HTML_Progress::getString() Returns the current value of the progress string.
getStyle
in file Progress.php, method HTML_Progress::getStyle() Get the cascading style sheet to put inline on HTML document
getUI
in file Progress.php, method HTML_Progress::getUI() Returns the look-and-feel object that renders the progress bar.
getValue
in file Progress.php, method HTML_Progress::getValue() Returns the progress bar's current value, which is stored in the progress bar's data model. The value is always between the minimum and maximum values, inclusive.
in file DM.php, method HTML_Progress_DM::getPercentComplete() Returns the percent complete for the progress bar. Note that this number is between 0.00 and 1.00.
getValue
in file DM.php, method HTML_Progress_DM::getValue() Returns the progress bar's current value. The value is always between the minimum and maximum values, inclusive.
in file UI.php, method HTML_Progress_UI::getCellCount() Returns the number of cell in the progress bar. The default value is 10.
getFillWay
in file UI.php, method HTML_Progress_UI::getFillWay() Returns 'natural' or 'reverse', depending of the fill way of progress bar.
getOrientation
in file UI.php, method HTML_Progress_UI::getOrientation() Returns HTML_PROGRESS_BAR_HORIZONTAL or HTML_PROGRESS_BAR_VERTICAL, depending on the orientation of the progress bar.
in file Progress.php, constant HTML_PROGRESS_DEPRECATED Basic error code that indicate a deprecated method that may be removed at any time from a future version
in file Progress.php, constant HTML_PROGRESS_ERRORSTACK_LOG If this is returned, then the error will only be logged, but not pushed onto the error stack.
HTML_PROGRESS_ERRORSTACK_LOGANDDIE
in file Progress.php, constant HTML_PROGRESS_ERRORSTACK_LOGANDDIE If this is returned, then the error will only be logged, but not pushed onto the error stack because will halt script execution.
HTML_PROGRESS_ERRORSTACK_PUSH
in file Progress.php, constant HTML_PROGRESS_ERRORSTACK_PUSH If this is returned, then the error will only be pushed onto the stack, and not logged.
HTML_PROGRESS_ERRORSTACK_PUSHANDLOG
in file Progress.php, constant HTML_PROGRESS_ERRORSTACK_PUSHANDLOG If this is returned, then the error will be both pushed onto the stack and logged.
in file observer.php, class HTML_Progress_Observer The HTML_Progress_Observer implements the observer pattern for watching progress bar activity and taking actions on exceptional events.
in file observer.php, method HTML_Progress_Observer::notify() This is a stub method to make sure that HTML_Progress_Observer classes do something when they are notified of a message. The default behavior is to just write into a file 'progress_observer.log' in current directory.
in file Progress.php, method HTML_Progress::removeListener() Removes a HTML_Progress_Observer instance from the list of observers.
run
in file Progress.php, method HTML_Progress::run() Runs the progress bar (both modes: indeterminate and determinate), and execute all actions defined in user callback identified by method setProgressHandler.
in file Progress.php, method HTML_Progress::setAnimSpeed() Set the delays progress bar execution for the given number of miliseconds.
setBorderPainted
in file Progress.php, method HTML_Progress::setBorderPainted() Sets the value of $_paintBorder property, which determines whether the progress bar should paint its border. The default is false.
setDM
in file Progress.php, method HTML_Progress::setDM() Sets the data model used by this progress bar.
setIdent
in file Progress.php, method HTML_Progress::setIdent() Sets this Progress instance's identification string.
setIncrement
in file Progress.php, method HTML_Progress::setIncrement() Sets the progress bar's increment value stored in the progress bar's data model.
setIndeterminate
in file Progress.php, method HTML_Progress::setIndeterminate() Sets the $_indeterminate property of the progress bar, which determines whether the progress bar is in determinate or indeterminate mode.
setMaximum
in file Progress.php, method HTML_Progress::setMaximum() Sets the progress bar's maximum value stored in the progress bar's data model.
setMinimum
in file Progress.php, method HTML_Progress::setMinimum() Sets the progress bar's minimum value stored in the progress bar's data model.
setModel
in file Progress.php, method HTML_Progress::setModel() Sets the look-and-feel model that renders the progress bar.
in file Progress.php, method HTML_Progress::setString() Sets the current value of the progress string. By default, this string is null. If you have provided a custom progress string and want to revert to the built-in-behavior, set the string back to null.
setStringPainted
in file Progress.php, method HTML_Progress::setStringPainted() Sets the value of $_paintString property, which determines whether the progress bar should render a progress string. The default is false.
setUI
in file Progress.php, method HTML_Progress::setUI() Sets the look-and-feel object that renders the progress bar.
setValue
in file Progress.php, method HTML_Progress::setValue() Sets the progress bar's current value stored in the progress bar's data model.
sleep
in file Progress.php, method HTML_Progress::sleep() Default user callback when none are defined.
in file UI.php, method HTML_Progress_UI::setFillWay() Sets the progress bar's fill way, which must be 'natural' or 'reverse'.
setOrientation
in file UI.php, method HTML_Progress_UI::setOrientation() Sets the progress bar's orientation, which must be HTML_PROGRESS_BAR_HORIZONTAL or HTML_PROGRESS_BAR_VERTICAL.