Environment Python 3, Gtk3: I want to have an entry in a Gtk3 form that displays a date in DD/MM form. I intend to use a popup window that will display a calendar and return the day and month selected. I assume that a click on the (blank) entry will create a signal to start that process, but can someone tell me what GtkEntry signal I should be? Thanks Graeme
Asked
Active
Viewed 236 times
1
-
Take a look at the `focus in` signal. The docs are [here](https://developer.gnome.org/gtk3/stable/GtkWidget.html#GtkWidget-focus-in-event). – theGtknerd May 13 '17 at 02:49
-
Thanks. I realised shortly after posting that it would have something to do with "focus". I'll count to 100 before pressing "submit" next time ! – ggemmill May 13 '17 at 16:43