Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 C++ Qt5.5 上使用 KDE Marble API。
当我拖动鼠标左键时,释放鼠标后地图继续移动。
如何在 Marble 小部件上禁用此功能?
我试图查看 inputhandler 或 set.. 功能,但看不到任何相关功能来禁用它。
marbleWidget->inputHandler()->setInertialEarthRotationEnabled( false );是解决方案
marbleWidget->inputHandler()->setInertialEarthRotationEnabled( false );
我发现它更简单
this->setInputEnabled(false);
用我自己的按钮控制地图的一切