Package: gtk
Class gtk:progress-bar
Superclassesgtk:widget, gtk:buildable, gtk:orientable, gobject:object, common-lisp:standard-object, common-lisp:t Documented Subclasses
None
Direct SlotsDetails The gtk:progress-bar widget is typically used to display the
progress of a long running operation.
It provides a visual clue that processing is underway. The gtk:progress-bar widget can be used in two different modes: percentage
mode and activity mode. ![]() Figure: GtkProgressBar When an application can determine how much work needs to take place, for example read a fixed number of bytes from a file, and can monitor its progress, it can use the progress bar in percentage mode and the user sees a growing bar indicating the percentage of the work that has been completed. In this mode, the application is required to call the gtk:progress-bar-fraction function periodically to update the progress bar. When an application has no accurate way of knowing the amount of work to do, it can use the progress bar in activity mode, which shows activity by a block moving back and forth within the progress area. In this mode, the application is required to call the gtk:progress-bar-pulse function periodically to update the progress bar. There is quite a bit of flexibility provided to control the appearance of the progress bar. Functions are provided to control the orientation of the bar, optional text can be displayed along with the bar, and the step size used in activity mode can be set. CSS nodesprogressbar[.osd] ├── [text] ╰── trough[.empty][.full] ╰── progress[.pulse]The gtk:progress-bar implementation has a main CSS node with name progressbar and subnodes with names text and trough, of which the latter has a subnode named progress. The text subnode is only present if text is shown. The progress subnode has the .pulse style class when in activity mode. It gets the .left, .right, .top or .bottom style classes added when the progress 'touches' the corresponding end of the progress bar. The .osd style class on the progressbar node is for use in overlays like the one Epiphany has for page loading progress. Style Property Detailsmin-horizontal-bar-height The min-horizontal-bar-height style property of type :int (Read / Write) The minimum horizontal height of the progress bar. Warning: The min-horizontal-bar-height style property has been deprecated since version 3.20 and should not be used in newly written code. Use the standard min-height CSS property. Allowed values: >= 1 Default value: 6 min-horizontal-bar-width The min-horizontal-bar-width style property of type :int (Read / Write) The minimum horizontal width of the progress bar. Warning: The min-horizontal-bar-width style property has been deprecated since version 3.20 and should not be used in newly written code. Use the standard min-width CSS property. Allowed values: >= 1 Default value: 150 min-vertical-bar-height The min-vertical-bar-height style property of type :int (Read / Write) The minimum vertical height of the progress bar. Warning: The min-vertical-bar-height style property has been deprecated since version 3.20 and should not be used in newly written code. Use the standard min-height CSS property. Allowed values: >= 1 Default value: 80 min-vertical-bar-width The min-vertical-bar-width style property of type :int (Read / Write) The minimum vertical width of the progress bar. Warning: The min-vertical-bar-width style property has been deprecated since version 3.20 and should not be used in newly written code. Use the standard min-width CSS property. Allowed values: >= 1 Default value: 7 xspacing The xspacing style property of type :int (Read / Write) The extra spacing applied to the width of a progress bar. Warning: The xspacing style property has been deprecated since version 3.20 and should not be used in newly written code. Use the standard CSS padding and margins. The value of this style property is ignored. Allowed values: >= 0 Default value: 2 yspacing The yspacing style property of type :int (Read / Write) The extra spacing applied to the height of a progress bar. Warning: The yspacing style property has been deprecated since version 3.20 and should not be used in newly written code. Use the standard CSS padding and margins. The value of this style property is ignored. Allowed values: >= 0 Default value: 2 | Returned bySlot Access Functions
Inherited Slot Access Functions |
2025-06-28