本文整理汇总了Python中qutebrowser.mainwindow.statusbar.textbase.TextBase.resize方法的典型用法代码示例。如果您正苦于以下问题:Python TextBase.resize方法的具体用法?Python TextBase.resize怎么用?Python TextBase.resize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类qutebrowser.mainwindow.statusbar.textbase.TextBase
的用法示例。
在下文中一共展示了TextBase.resize方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_resize
# 需要导入模块: from qutebrowser.mainwindow.statusbar.textbase import TextBase [as 别名]
# 或者: from qutebrowser.mainwindow.statusbar.textbase.TextBase import resize [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
示例2: test_elided_text
# 需要导入模块: from qutebrowser.mainwindow.statusbar.textbase import TextBase [as 别名]
# 或者: from qutebrowser.mainwindow.statusbar.textbase.TextBase import resize [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