Files
bearhub/bauh/view/qt/view_utils.py
Vinicius Moreira 7c154c09ef [ui] improving style
2020-04-28 17:51:45 -03:00

13 lines
432 B
Python

from PyQt5.QtCore import Qt
from PyQt5.QtGui import QIcon, QPixmap
from bauh.view.util import resource
def load_icon(path: str, width: int, height: int = None) -> QIcon:
return QIcon(QPixmap(path).scaled(width, height if height else width, Qt.KeepAspectRatio, Qt.SmoothTransformation))
def load_resource_icon(path: str, width: int, height: int = None) -> QIcon:
return load_icon(resource.get_path(path), width, height)