I used that function 8 years ago from Ruby, and regarded it as very useful. Google can for find some sort of replacement.
Maybe ebassi will know
Hint: https://developer.gnome.org/gtk3/stable/GtkEntry.html#gtk-entry-set-width-chars
Changes the size request of the entry to be about the right size for
n_chars
characters.
I intended to explain a few GtkEntry functions in
No I perfectly understand " Gtk_entry_set_width_chars() missing for GTK4 […] regarded it as very useful." not sure why you needed width-chars though, ideally your layout already gives the entry enough space
However
Doesn’t make much sense to me
A lot of GtkEntry
API was moved to GtkEditable
, as we moved from widgets inheriting from GtkEntry
to widgets implementing GtkEditable
.
In the case of set_width_chars()
, there’s now GtkEditable.set_width_chars()
.
Sorry was a typo, should be “Google can’t for it find some sort of replacement.” but it is still bad English.
Ah the GtkEditable interface – totally forgot about it, thanks!
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.