c++ - Multi Pointer X (MPX) support -
i'm wondering how multiple pointers should/could handled high level application.
i'm interested how mpx (multi pointer x - xorg) works. gui libraries support it?
it seems latest versions of qt , gtk should support it, cannot find demo, tutorial or documentation.
experimental support mpx in gtk+ can found here. since that's work in progress, documentation scarce still might started.
there's documentation mpx here.
note existing applications using 1 pointer able run unchanged on mpx-aware server. if want app take advantage of multiple pointers, you'll need call gdk_enable_multidevice() before gtk_init() , handle per-device enter/leave events , grabs.
Comments
Post a Comment