1

私の Qt アプリケーションでは、マウスの動きを追跡する必要があります。そのために、私は を作成し、次のeventfilterように正しくインストールしました。

bool iArmMainWindow::eventFilter(QObject *obj, QEvent *event)
{
    if (event->type() == QEvent::MouseMove)//not working
    {
        iarm->printStatus("hi"); //this is for debugging

    }
    if (event->type() == QEvent::MouseButtonPress){
                //Here some staff working correctly
        }
//other staff
}

問題は、イベント タイプ MouseMove が機能しないことです。

何か案が?

4

1 に答える 1