当前位置: 首页>>代码示例>>Python>>正文


Python QTest.mouseRelease方法代码示例

本文整理汇总了Python中qgis.PyQt.QtTest.QTest.mouseRelease方法的典型用法代码示例。如果您正苦于以下问题:Python QTest.mouseRelease方法的具体用法?Python QTest.mouseRelease怎么用?Python QTest.mouseRelease使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在qgis.PyQt.QtTest.QTest的用法示例。


在下文中一共展示了QTest.mouseRelease方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_mouse_drag

# 需要导入模块: from qgis.PyQt.QtTest import QTest [as 别名]
# 或者: from qgis.PyQt.QtTest.QTest import mouseRelease [as 别名]
    def test_mouse_drag(self):
        """Test setting extents by dragging works.

        This currently fails as QTest does not properly do the mouse
        interactions with the canvas.

        """
        # Imported here because it is not available in OSX QGIS bundle
        # pylint: disable=redefined-outer-name
        from qgis.PyQt.QtTest import QTest

        # Click the capture button
        QTest.mouseClick(self.dialog.capture_button, Qt.LeftButton)

        # drag a rect on the canvas
        QTest.mousePress(CANVAS, Qt.LeftButton, pos=QPoint(0, 0), delay=500)
        QTest.mouseRelease(
            CANVAS, Qt.LeftButton,
            pos=QPoint(300, 300),
            delay=-1)

        # on drag the extents selector windows should appear again
        QTest.qWaitForWindowExposed(self.dialog)
        # Click ok to dispose of the window again
        ok = self.dialog.button_box.button(QtWidgets.QDialogButtonBox.Ok)
        QTest.mouseClick(ok, Qt.LeftButton)

        # Check the extent emitted on closing teh dialog is correct
        expected_extent = QgsRectangle(10.0, 10.0, 30.0, 20.0)
        self.assertEqual(self.extent.toString(), expected_extent.toString())
开发者ID:inasafe,项目名称:inasafe,代码行数:32,代码来源:test_extent_selector.py


注:本文中的qgis.PyQt.QtTest.QTest.mouseRelease方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。