On 6/10/19 10:25 AM, Daniel Boles via gtkmm-list wrote:
It's probably possible, but I don't know how difficult it will be. I don't volunteer, at least not for the foreseeable future.Do you think it would be possible, or worth thinking about, to add ways to do this
_WRAP_PROPERTY("visible", bool) in Gtk::Widget generates the codeIf such properties can be added, could they still be used with Glib::PropertyProxy, or does it require its target property to have been fully created by Glib::Property?
Glib::PropertyProxy<bool> Widget::property_visible()
Glib::PropertyProxy_ReadOnly< bool > Widget::property_visible() const
{ return Glib::PropertyProxy<bool>(this, "visible"); }
{ return Glib::PropertyProxy_ReadOnly<bool>(this, "visible"); }
If custom properties are registered like glib/gtk+ register properties, I see no reason why similar code should not work for the custom properties.