Gtkmm set_property()

I hope to disable the cursor’s blinking of Gtk::Entry.

But the revelant methods are

  1. set_cursor()
  2. set_property()
  3. set_property_value.

It seems that I should use set_property(), right ?
So how can I know the property name supported? I can’t find any document about it.

I have tried blink and blinking. It throw error:

g_object_set_is_valid_property: object class 'gtkmm__GtkEntry' has no property named 'blink'

Try setting Gtk::Settings::property_gtk_cursor_blink to false, although it will affect all cursors in the program.

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