Coverage for qutebrowser/mainwindow/statusbar/textbase.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
# Copyright 2014-2018 Florian Bruhin (The Compiler) <mail@qutebrowser.org> # # This file is part of qutebrowser. # # qutebrowser is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # qutebrowser is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
"""A text in the statusbar.
Unlike QLabel, the text will get elided.
Eliding is loosely based on http://gedgedev.blogspot.ch/2010/12/elided-labels-in-qt.html
Attributes: _elidemode: Where to elide the text. _elided_text: The current elided text. """
def __repr__(self): return utils.get_repr(self, text=self.text())
"""Update the elided text when necessary.
Args: width: The maximal width the text should take. """ self.text(), self._elidemode, width, Qt.TextShowMnemonic) else:
"""Extend QLabel::setText.
This update the elided text after setting the text, and also works around a weird QLabel redrawing bug where it doesn't redraw correctly when the text is empty -- we explicitly need to call repaint() to resolve this.
More info:
http://stackoverflow.com/q/21890462/2085149 https://bugreports.qt.io/browse/QTBUG-36945 https://codereview.qt-project.org/#/c/79181/
Args: txt: The text to set (string). """ # WORKAROUND
"""Extend QLabel::resizeEvent to update the elided text afterwards."""
"""Override QLabel::paintEvent to draw elided text.""" else: self.alignment(), self._elided_text) |