On 10/18/18 9:37 AM, aedt wrote:

Okay, I have this ListStore called StorageLS that is supposed to have columns for name, capacity, usage and a GtkProgressBar that visualizes the space usage. Now I want to create a ListStore but the gtkc.gobjectypes: GType enum does not seem to have anything for it. I'm stuck.

... Code ...

How should I proceed?

Most classes have a getType function to get their GType, so for the
GType of a gtk.ProgressBar you would use: ProgressBar.getType().

You can also look at gtk.CellRendererProgress if you want to display a
progress bar in a tree or list.