Gtk-rs glib::object::Object::new() with string list property

Still pretty much a Rust newb. Trying to convert from C code a call to GTK g_object_new(), for an object type that takes a list of strings as one of its property values, and I can't figure out how to handle that in glib::object::Object::new(). Specifically, one of the object's properties is called "arguments", and takes a *const *cont i8 as its value. Now glib::object::Object::new() requires a list of glib::Value items, which can be made from string or integer values, but not AFAICS from a (null-terminated) list of string pointers. Has anybody coded such an Object, or can point me in the right general direction?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.