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


Python TextBase.show方法代码示例

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


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

示例1: test_resize

# 需要导入模块: from qutebrowser.mainwindow.statusbar.textbase import TextBase [as 别名]
# 或者: from qutebrowser.mainwindow.statusbar.textbase.TextBase import show [as 别名]
def test_resize(qtbot):
    """Make sure the elided text is updated when resizing."""
    label = TextBase()
    qtbot.add_widget(label)
    long_string = 'Hello world! ' * 20
    label.setText(long_string)

    with qtbot.waitExposed(label):
        label.show()

    text_1 = label._elided_text
    label.resize(20, 50)
    text_2 = label._elided_text

    assert text_1 != text_2
开发者ID:mehak,项目名称:qutebrowser,代码行数:17,代码来源:test_textbase.py

示例2: test_elided_text

# 需要导入模块: from qutebrowser.mainwindow.statusbar.textbase import TextBase [as 别名]
# 或者: from qutebrowser.mainwindow.statusbar.textbase.TextBase import show [as 别名]
def test_elided_text(qtbot, elidemode, check):
    """Ensure that a widget too small to hold the entire label text will elide.

    It is difficult to check what is actually being drawn in a portable way, so
    at least we ensure our customized methods are being called and the elided
    string contains the horizontal ellipsis character.

    Args:
        qtbot: pytestqt.plugin.QtBot fixture
        elidemode: parametrized elide mode
        check: function that receives the elided text and must return True
        if the elipsis is placed correctly according to elidemode.
    """
    label = TextBase(elidemode=elidemode)
    qtbot.add_widget(label)
    long_string = "Hello world! " * 20
    label.setText(long_string)
    label.resize(100, 50)
    label.show()
    assert check(label._elided_text)  # pylint: disable=protected-access
开发者ID:B0073D,项目名称:qutebrowser,代码行数:22,代码来源:test_textbase.py

示例3: test_elided_text

# 需要导入模块: from qutebrowser.mainwindow.statusbar.textbase import TextBase [as 别名]
# 或者: from qutebrowser.mainwindow.statusbar.textbase.TextBase import show [as 别名]
def test_elided_text(fake_statusbar, qtbot, elidemode, check):
    """Ensure that a widget too small to hold the entire label text will elide.

    It is difficult to check what is actually being drawn in a portable way, so
    at least we ensure our customized methods are being called and the elided
    string contains the horizontal ellipsis character.

    Args:
        qtbot: pytestqt.plugin.QtBot fixture
        elidemode: parametrized elide mode
        check: function that receives the elided text and must return True
        if the ellipsis is placed correctly according to elidemode.
    """
    label = TextBase(elidemode=elidemode)
    qtbot.add_widget(label)
    fake_statusbar.hbox.addWidget(label)

    long_string = 'Hello world! ' * 100
    label.setText(long_string)
    label.show()
    qtbot.waitForWindowShown(label)

    assert check(label._elided_text)
开发者ID:AdaJass,项目名称:qutebrowser,代码行数:25,代码来源:test_textbase.py


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