1
0
Fork 0
mirror of synced 2024-06-30 20:20:53 +12:00
Rare/rare/widgets/elide_label.py

44 lines
1.5 KiB
Python

from typing import Union
from PyQt5.QtCore import Qt
from PyQt5.QtGui import QFontMetrics, QResizeEvent
from PyQt5.QtWidgets import QLabel, QWIDGETSIZE_MAX
class ElideLabel(QLabel):
def __init__(self, text="", parent=None):
super(ElideLabel, self).__init__(parent=parent)
self.__text = text
self.__fm = QFontMetrics(self.font())
self.__tooltip = ""
self.setFixedHeight(True)
self.setWordWrap(True)
self.setText(text)
def setText(self, a0: str) -> None:
self.__text = a0
self.__setElideText(a0)
def __setElideText(self, a0: str):
elided_text = self.__fm.elidedText(
a0, Qt.ElideRight,
self.width() - (self.contentsMargins().left() + self.contentsMargins().right())
)
self.setToolTip(self.__text if elided_text != self.__text and not self.__tooltip else self.__tooltip)
super(ElideLabel, self).setText(elided_text)
def setToolTip(self, a0: str) -> None:
self.__tooltip = a0
super(ElideLabel, self).setToolTip(a0)
def resizeEvent(self, a0: QResizeEvent) -> None:
self.__setElideText(self.__text)
super(ElideLabel, self).resizeEvent(a0)
def setFixedHeight(self, h: Union[int, bool]) -> None:
if isinstance(h, bool):
super(ElideLabel, self).setFixedHeight(self.__fm.height() if h else QWIDGETSIZE_MAX)
elif isinstance(h, int):
super(ElideLabel, self).setFixedHeight(h)