I\'ve set up a basic Qt-Widgets-Application (Qt 5.5 community) with a simple QWidget \"MainWindow\" and an additinal QWidget \"SettingsScreen\".
Within the \"MainWin
Actually the thing is QMainwindow or any base Widget of your application is able to properly synthesize the Unhandled touch screen events to Mouse events. So whenever you are creating a dialog/widget, make sure to set Mainwindow as there parent and in the constructor of the child widget use setParent(parent). Even I was facing this kind of Issue and this worked for me.