8206:adf11836cfce | 8207:d359172d11be |
---|---|
11 | 11 |
12 from PyQt5.QtCore import Qt, QSize | 12 from PyQt5.QtCore import Qt, QSize |
13 from PyQt5.QtGui import QPixmap, QIcon, QPainter | 13 from PyQt5.QtGui import QPixmap, QIcon, QPainter |
14 | 14 |
15 | 15 |
16 class PixmapCache(object): | 16 class PixmapCache: |
17 """ | 17 """ |
18 Class implementing a pixmap cache for icons. | 18 Class implementing a pixmap cache for icons. |
19 """ | 19 """ |
20 SupportedExtensions = [".svgz", ".svg", ".png"] | 20 SupportedExtensions = [".svgz", ".svg", ".png"] |
21 | 21 |