As a followup to #3, I now have a GObject property that is a GStrv (aka gchar **) for which I'd like to pass values in a Swift-like manner. I believe the closest to this would be a [String]. It appears that the GValue converter does not handle any cases of GStrv, either going out from Swift or back to Swift.
For some reason the docs don't show up online, but do appear in devhelp. The docs in the source are here. An example of this in use is the authors property of GtkAboutDialog.
As a followup to #3, I now have a GObject property that is a
GStrv(akagchar **) for which I'd like to pass values in a Swift-like manner. I believe the closest to this would be a[String]. It appears that theGValueconverter does not handle any cases ofGStrv, either going out from Swift or back to Swift.For some reason the docs don't show up online, but do appear in devhelp. The docs in the source are here. An example of this in use is the
authorsproperty ofGtkAboutDialog.