I have a custom widget that I’ve added to a glade catalogues and I’d like to expose its properties within glade.
I have found one example of this on github but it makes use of XML tags that I cannot find any documentation for, as shown in the following excerpt of the linked calogue:
<properties>
<property id="labels" name="Labels">
<parameter-spec>
<type>GParamBoxed</type>
<value-type>GladeStringList</value-type>
</parameter-spec>
</property>
What do GladeStringList
and GParamBoxed
mean? What is the full range of <types>
and <value-type>
s supported by glade?
Some pointers to documentation or reference would be appreciated.