Fan

 

class

fwt::ProgressBar

sys::Obj
  fwt::Widget
    fwt::ProgressBar
//
// Copyright (c) 2008, Brian Frank and Andy Frank
// Licensed under the Academic Free License version 3.0
//
// History:
//   30 Sep 08  Andy Frank  Creation
//

**
** ProgressBar displays a progess bar.
**
class ProgressBar : Widget
{

  **
  ** The current value of the progess. Must be >= 0.
  ** Defaults to 0.
  **
  native Int value

  **
  ** The minimum value of the progess. Must be >= 0.
  ** Defaults to 0.
  **
  native Int min

  **
  ** The maximum value of the progress. Defaults to 100.
  **
  native Int max

  **
  ** Configure this progess bar to be indeterminate.
  **
  const Bool indeterminate := false

}