Gtk.CellRendererProgress¶
- Subclasses:
None
Methods¶
- Inherited:
Gtk.CellRenderer (25), GObject.Object (37), Gtk.Orientable (2)
- Structs:
class |
|
Virtual Methods¶
- Inherited:
Properties¶
- Inherited:
Name |
Type |
Flags |
Short Description |
---|---|---|---|
r/w/en |
Invert the direction in which the progress bar grows |
||
r/w/en |
Set this to positive values to indicate that some progress is made, but you don’t know how much. |
||
r/w |
Text on the progress bar |
||
r/w |
The horizontal text alignment, from 0 (left) to 1 (right). Reversed for RTL layouts. |
||
r/w |
The vertical text alignment, from 0 (top) to 1 (bottom). |
||
r/w/en |
Value of the progress bar |
Signals¶
- Inherited:
Fields¶
- Inherited:
Name |
Type |
Access |
Description |
---|---|---|---|
parent_instance |
r |
Class Details¶
- class Gtk.CellRendererProgress(**kwargs)¶
- Bases:
- Abstract:
No
- Structure:
Gtk.CellRendererProgress
renders a numeric value as a progress par in a cell. Additionally, it can display a text on top of the progress bar.The
Gtk.CellRendererProgress
cell renderer was added in GTK+ 2.6.- classmethod new()[source]¶
- Returns:
the new cell renderer
- Return type:
Creates a new
Gtk.CellRendererProgress
.New in version 2.6.
Property Details¶
- Gtk.CellRendererProgress.props.inverted¶
- Name:
inverted
- Type:
- Default Value:
- Flags:
Invert the direction in which the progress bar grows
- Gtk.CellRendererProgress.props.pulse¶
- Name:
pulse
- Type:
- Default Value:
-1
- Flags:
Setting this to a non-negative value causes the cell renderer to enter “activity mode”, where a block bounces back and forth to indicate that some progress is made, without specifying exactly how much.
Each increment of the property causes the block to move by a little bit.
To indicate that the activity has not started yet, set the property to zero. To indicate completion, set the property to
GObject.G_MAXINT
.New in version 2.12.
- Gtk.CellRendererProgress.props.text¶
-
The “text” property determines the label which will be drawn over the progress bar. Setting this property to
None
causes the default label to be displayed. Setting this property to an empty string causes no label to be displayed.New in version 2.6.
- Gtk.CellRendererProgress.props.text_xalign¶
-
The “text-xalign” property controls the horizontal alignment of the text in the progress bar. Valid values range from 0 (left) to 1 (right). Reserved for RTL layouts.
New in version 2.12.
- Gtk.CellRendererProgress.props.text_yalign¶
-
The “text-yalign” property controls the vertical alignment of the text in the progress bar. Valid values range from 0 (top) to 1 (bottom).
New in version 2.12.
- Gtk.CellRendererProgress.props.value¶
- Name:
value
- Type:
- Default Value:
0
- Flags:
The “value” property determines the percentage to which the progress bar will be “filled in”.
New in version 2.6.