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


Python PlotWindow.height方法代码示例

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


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

示例1: TestPositionInfo

# 需要导入模块: from silx.gui.plot import PlotWindow [as 别名]
# 或者: from silx.gui.plot.PlotWindow import height [as 别名]
class TestPositionInfo(TestCaseQt):
    """Tests for PositionInfo widget."""

    def setUp(self):
        super(TestPositionInfo, self).setUp()
        self.plot = PlotWindow()
        self.plot.show()
        self.qWaitForWindowExposed(self.plot)
        self.mouseMove(self.plot)  # Move to center
        self.qapp.processEvents()

    def tearDown(self):
        self.plot.setAttribute(qt.Qt.WA_DeleteOnClose)
        self.plot.close()
        del self.plot

        super(TestPositionInfo, self).tearDown()

    def _test(self, positionWidget, converterNames):
        """General test of PositionInfo.

        - Add it to a toolbar and
        - Move mouse around the center of the PlotWindow.
        """
        toolBar = qt.QToolBar()
        self.plot.addToolBar(qt.Qt.BottomToolBarArea, toolBar)

        toolBar.addWidget(positionWidget)

        converters = positionWidget.getConverters()
        self.assertEqual(len(converters), len(converterNames))
        for index, name in enumerate(converterNames):
            self.assertEqual(converters[index][0], name)

        # Move mouse away from center
        xCenter, yCenter = self.plot.width() // 2, self.plot.height() // 2
        self.mouseMove(self.plot, pos=(xCenter + 1, yCenter + 1))
        self.qapp.processEvents()

    def testDefaultConverters(self):
        """Test PositionInfo with default converters"""
        positionWidget = PlotTools.PositionInfo(self.plot)
        self._test(positionWidget, ('X', 'Y'))

    def testCustomConverters(self):
        """Test PositionInfo with custom converters"""
        positionWidget = PlotTools.PositionInfo(self.plot, converters=[
            ('Coords', lambda x, y: (int(x), int(y))),
            ('Radius', lambda x, y: numpy.sqrt(x*x + y*y)),
            ('Angle', lambda x, y: numpy.degrees(numpy.arctan2(y, x)))])
        self._test(positionWidget, ('Coords', 'Radius', 'Angle'))

    @test_logging(PlotTools.__name__, error=2)
    def testFailingConverters(self):
        """Test PositionInfo with failing custom converters"""
        def raiseException(x, y):
            raise RuntimeError()

        positionWidget = PlotTools.PositionInfo(
            self.plot, converters=[('Exception', raiseException)])
        self._test(positionWidget, ['Exception'])
开发者ID:FeodorFitsner,项目名称:silx,代码行数:63,代码来源:testPlotTools.py


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