How would I go about installing a handler of touchscreen gestures in Tkinter?
I need to something particularly simple: to increase the font size whenever an 'expand' gesture is detected.
Is this even possible to do in Tkinter if Tcl/Tk doesn't specifically implement it? I suppose that either the window manager sends the client window some event that I could listen for and handle, or the client must register to the window manager a handler for a specific kind of event, but if it isn't possible to register these handlers from Tkinter and if Tcl doesn't provide an interface to them, I'm don't see a way I could do this.