upd. нужно что бы окошко все мышиные события передавало нижележащиму окну, либо рабочему столу.
classMyApp : public QApplication
{
Q_OBJECT
public:
MyApp(int &argc, char **argv, int = QT_VERSION);
~MyApp();
virtual bool notify ( QObject * receiver, QEvent * event );
{
if (event->type() == QEvent::MouseMove)
{
QPoint p = ((QMouseEvent*)event)->globalPos();
QWidget* newReceiver = widgetAt(p);
if (newReceiver) // а таки лежит
{
((QWidget*)receiver)->setCursor(newReceiver->cursor());
receiver = newReceiver;
}
}
return QApplication::notify(receiver,event);
}
};