()
| 62 | |
| 63 | |
| 64 | def get_icon(): |
| 65 | # 测试模拟图标 |
| 66 | pixmap = QPixmap(16, 16) |
| 67 | pixmap.fill(Qt.transparent) |
| 68 | painter = QPainter() |
| 69 | painter.begin(pixmap) |
| 70 | painter.setFont(QFont('Webdings', 11)) |
| 71 | painter.setPen(Qt.GlobalColor(randint(4, 18))) |
| 72 | painter.drawText(0, 0, 16, 16, Qt.AlignCenter, |
| 73 | choice(string.ascii_letters)) |
| 74 | painter.end() |
| 75 | return QIcon(pixmap) |
| 76 | |
| 77 | |
| 78 | def about_qt(): |