Extracted from Pike v7.3 release 53 at 2002-09-10.
pike.ida.liu.se
[Top]
GTK
GTK.ProgressBar

Class GTK.ProgressBar

Inherits
  • GTK.Progress
Description

A simple progress bar. Useful when you are doing things that take a long time. Try to always have an 'abort' button whenever it makes sence.

 GTK.ProgressBar()->update(0.1)

 GTK.ProgressBar()->set_show_text(1)->update(0.3)

 GTK.ProgressBar()->update(0.6)

 GTK.ProgressBar()->update(1.0)