This is in part due to the way I have programmed - which may not be necessary. But xBase GETS have always operated such that if you want the user to be able to enter up to ten characters you had to set the variable associated with the GET to SPACE(10) rather than "".
But I see that GTK+ 2.0 has the following method:
Code: Select all
gtk_entry_set_max_length ()
void gtk_entry_set_max_length (GtkEntry *entry,
gint max);
entry :
a GtkEntry
max :
the maximum length of the entry, or 0 for no maximum. (other than the maximum length of entries.) The value passed in will be clamped to the range 0-65536.
If we can set maximum lengths perhaps we can initialise our variables to "" and the cursor positioning will be better.
But it would be even better if in addition you could expose the got-focus event for us and we also could use:
Code: Select all
gtk_editable_set_position ()
void gtk_editable_set_position (GtkEditable *editable,
gint position);
editable :
a GtkEditable widget.
position :
the position of the cursor. The cursor is displayed before the character with the given (base 0) index in the widget. The value must be less than or equal to the number of characters in the widget. A value of -1 indicates that the position should be set after the last character in the entry. Note that this position is in characters, not in bytes.
On top of that exposing the got-focus method might give us a way of programming around the problem we have with selection going to the top of a browse if we tab into it before mouse clicking on it.
Regards
Doug
(xProgrammer)