1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
|
r"""
qtawesome
=========
Font-Awesome and other iconic fonts for PyQt / PySide applications.
.. currentmodule:: qtawesome
.. autosummary::
:toctree: _generate
icon
load_font
charmap
font
set_defaults
"""
import hashlib
import os
# Third party imports
from qtpy import QtCore, QtWidgets, QtGui
# Local imports
from ._version import __version__, version_info
from .animation import Pulse, Spin
from .iconic_font import IconicFont, set_global_defaults, FontError
from .iconic_font import SYSTEM_FONTS as _SYSTEM_FONTS
from .styles import dark, light
# Constants
_resource = { 'iconic': None }
_BUNDLED_FONTS = (
('fa',
'fontawesome4.7-webfont.ttf',
'fontawesome4.7-webfont-charmap.json'),
('fa5',
'fontawesome5-regular-webfont.ttf',
'fontawesome5-regular-webfont-charmap.json'),
('fa5s',
'fontawesome5-solid-webfont.ttf',
'fontawesome5-solid-webfont-charmap.json'),
('fa5b',
'fontawesome5-brands-webfont.ttf',
'fontawesome5-brands-webfont-charmap.json'),
('ei',
'elusiveicons-webfont.ttf',
'elusiveicons-webfont-charmap.json'),
('mdi',
'materialdesignicons5-webfont.ttf',
'materialdesignicons5-webfont-charmap.json'),
('mdi6',
'materialdesignicons6-webfont.ttf',
'materialdesignicons6-webfont-charmap.json'),
('ph',
'phosphor.ttf',
'phosphor-charmap.json'),
('ri',
'remixicon.ttf',
'remixicon-charmap.json'),
('msc',
'codicon.ttf',
'codicon-charmap.json'),
)
# MD5 Hashes for font files bundled with qtawesome:
_MD5_HASHES = {
'fontawesome4.7-webfont.ttf': 'b06871f281fee6b241d60582ae9369b9',
'fontawesome5-regular-webfont.ttf': 'dc47e4089f5bcb25f241bdeb2de0fb58',
'fontawesome5-solid-webfont.ttf': '5de19800fc9ae73438c2e5c61d041b48',
'fontawesome5-brands-webfont.ttf': '513aa607d398efaccc559916c3431403',
'elusiveicons-webfont.ttf': '207966b04c032d5b873fd595a211582e',
'materialdesignicons5-webfont.ttf': 'b7d40e7ef80c1d4af6d94902af66e524',
'materialdesignicons6-webfont.ttf': '9a2f455e7cbce011368aee95d292613b',
'phosphor.ttf': '5b8dc57388b2d86243566b996cc3a789',
'remixicon.ttf': '888e61f04316f10bddfff7bee10c6dd0',
'codicon.ttf': 'd8565ee605ac4d2fa71fe018863337ca',
}
def has_valid_font_ids(inst):
"""Validate instance's font ids are loaded to QFontDatabase.
It is possible that QFontDatabase was reset or QApplication was recreated
in both cases it is possible that font is not available.
"""
# Check stored font ids are still available
for font_id in inst.fontids.values():
font_families = QtGui.QFontDatabase.applicationFontFamilies(
font_id
)
if not font_families:
return False
return True
def _instance():
"""
Return the singleton instance of IconicFont.
Functions ``icon``, ``load_font``, ``charmap``, ``font`` and
``set_defaults`` all rebind to methods of the singleton instance of IconicFont.
"""
if (
_resource['iconic'] is not None
and not has_valid_font_ids(_resource['iconic'])
):
# Reset cached instance
_resource['iconic'] = None
if _resource['iconic'] is None:
# Verify that vendorized fonts are not corrupt
if not _SYSTEM_FONTS:
for fargs in _BUNDLED_FONTS:
ttf_filename = fargs[1]
ttf_hash = _MD5_HASHES.get(ttf_filename, None)
if ttf_hash is None:
continue
ttf_filepath = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
"fonts", ttf_filename)
with open(ttf_filepath, "rb") as f:
ttf_calculated_hash_code = hashlib.md5(f.read()).hexdigest()
if ttf_calculated_hash_code != ttf_hash:
raise FontError(f"Font is corrupt at: '{ttf_filepath}'")
_resource['iconic'] = IconicFont(*_BUNDLED_FONTS)
return _resource['iconic']
def reset_cache():
if _resource['iconic'] is not None:
_resource['iconic'].icon_cache = {}
def icon(*names, **kwargs):
"""
Return a QIcon object corresponding to the provided icon name(s).
This function is the main interface of qtawesome.
It can be used to create a QIcon instance from a single glyph
or from a list of glyphs that are displayed on the top of each other.
Such icon stacks are generally used to combine multiple glyphs to make
more complex icons.
Glyph names are specified by strings, of the form ``prefix.name``.
The ``prefix`` corresponds to the font to be used and ``name`` is the
name of the icon.
- The prefix corresponding to Font-Awesome 4.x is 'fa'
- The prefix corresponding to Font-Awesome 5.x (regular) is 'fa5'
- The prefix corresponding to Font-Awesome 5.x (solid) is 'fa5s'
- The prefix corresponding to Font-Awesome 5.x (brands) is 'fa5b'
- The prefix corresponding to Elusive-Icons is 'ei'
- The prefix corresponding to Material-Design-Icons 5.x is 'mdi'
- The prefix corresponding to Material-Design-Icons 6.x is 'mdi6'
- The prefix corresponding to Phosphor is 'ph'
- The prefix corresponding to Remix-Icon is 'ri'
- The prefix corresponding to Microsoft's Codicons is 'msc'
When requesting a single glyph, options (such as color or positional offsets)
can be passed as keyword arguments::
import qtawesome as qta
music_icon = qta.icon(
'fa5s.music',
color='blue',
color_active='orange')
When requesting multiple glyphs, the `options` keyword argument contains
the list of option dictionaries to be used for each glyph::
camera_ban = qta.icon('fa5s.camera', 'fa5s.ban', options=[{
'scale_factor': 0.5,
'active': 'fa5s.balance-scale'
}, {
'color': 'red',
'opacity': 0.7
}])
Qt's ``QIcon`` object has four modes
- ``Normal``: The user is not interacting with the icon, but the
functionality represented by the icon is available.
- ``Disabled``: The functionality corresponding to the icon is not
available.
- ``Active``: The functionality corresponding to the icon is available.
The user is interacting with the icon, for example, moving the mouse
over it or clicking it.
- ``Selected``: The item represented by the icon is selected.
The glyph for the Normal mode is the one specified with the main positional
argument.
- ``color``: icon color in the ``Normal`` mode.
The following four options will apply to the icon regardless of the mode.
- ``offset``: tuple (x, y) corresponding to the horizontal and vertical
offsets for the glyph, specified as a proportion of the icon size.
- ``animation``: animation object for the icon.
- ``scale_factor``: multiplicative scale factor to be used for the glyph.
The following options apply to the different modes of the icon
- ``active``: name of the glyph to be used when the icon is ``Active``.
- ``color_active``: the corresponding icon color.
- ``disabled``: name of the glyph to be used when the icon is ``Disabled``.
- ``color_disabled``: the corresponding icon color.
- ``selected``: name of the glyph to be used when the icon is ``Selected``.
- ``color_selected``: the corresponding icon color.
Default values for these options can be specified via the function
``set_defaults``. If unspecified, the default defaults are::
{
'opacity': 1.0,
'scale_factor': 1.0
'color': QColor(50, 50, 50),
'color_disabled': QColor(150, 150, 150),
}
If no default value is provided for ``active``, ``disabled`` or ``selected``
the glyph specified for the ``Normal`` mode will be used.
"""
return _instance().icon(*names, **kwargs)
def load_font(prefix, ttf_filename, charmap_filename, directory=None):
"""
Loads a font file and the associated charmap.
If ``directory`` is passed, the files will be looked for in the qtawesome
``fonts`` directory.
Parameters
----------
prefix: str
Prefix string to be used when accessing a given font set
ttf_filename: str
Ttf font filename
charmap_filename: str
Character map filename
directory: str or None, optional
Directory path for font and charmap files
Example
-------
If you want to load a font ``myicon.tff`` with a ``myicon-charmap.json``
charmap added to the qtawesome ``fonts`` directory (usually located at
``</path/to/lib/python>/site-packages/qtawesome/fonts/``) you can use::
qta.load_font(
'myicon',
'myicon.ttf',
'myicon-charmap.json'
)
However, if you want to load a font ``myicon.tff`` with a
``myicon-charmap.json`` charmap located in a specific path outside the
qtawesome ``font`` directory like for example ``/path/to/myproject/fonts``
you can use::
qta.load_font(
'myicon',
'myicon.ttf',
'myicon-charmap.json',
directory='/path/to/myproject/fonts'
)
"""
return _instance().load_font(prefix, ttf_filename, charmap_filename, directory)
def charmap(prefixed_name):
"""
Return the character map used for a given font.
Returns
-------
return_value: dict
The dictionary mapping the icon names to the corresponding unicode character.
"""
prefix, name = prefixed_name.split('.')
return _instance().charmap[prefix][name]
def font(prefix, size):
"""
Return the font corresponding to the specified prefix.
This can be used to render text using the iconic font directly::
import qtawesome as qta
from qtpy import QtWidgets
label = QtWidgets.QLabel(unichr(0xf19c) + ' ' + 'Label')
label.setFont(qta.font('fa', 16))
Parameters
----------
prefix: str
prefix string of the loaded font
size: int
size for the font
"""
return _instance().font(prefix, size)
def set_defaults(**kwargs):
"""
Set default options for icons.
The valid keyword arguments are:
'active', 'animation', 'color', 'color_active', 'color_disabled',
'color_selected', 'disabled', 'offset', 'scale_factor', 'selected'.
"""
return set_global_defaults(**kwargs)
class IconWidget(QtWidgets.QLabel):
"""
IconWidget gives the ability to display an icon as a widget
if supports the same arguments as icon()
for example
music_icon = qta.IconWidget('fa5s.music',
color='blue',
color_active='orange')
it also have setIcon() and setIconSize() functions
"""
def __init__(self, *names, **kwargs):
super().__init__(parent=kwargs.get('parent'))
self._icon = None
self._size = QtCore.QSize(16, 16)
self.setIcon(icon(*names, **kwargs))
def setIcon(self, _icon):
"""
set a new icon()
Parameters
----------
_icon: qtawesome.icon
icon to set
"""
self._icon = _icon
self.setPixmap(_icon.pixmap(self._size))
def setIconSize(self, size):
"""
set icon size
Parameters
----------
size: QtCore.QSize
size of the icon
"""
self._size = size
def update(self, *args, **kwargs):
if self._icon:
self.setPixmap(self._icon.pixmap(self._size))
return super().update(*args, **kwargs)
|