| 524 | } |
| 525 | |
| 526 | void ChessBoard::winMessageBox(QString title, QString msg) |
| 527 | { |
| 528 | QMessageBox message(QMessageBox::Information, title, msg); |
| 529 | message.setIconPixmap(QPixmap(":/images/win.jpg")); |
| 530 | message.setFont(QFont("FangSong", 16, QFont::Bold)); |
| 531 | message.exec(); |
| 532 | } |
| 533 | |
| 534 | QPointF ChessBoard::getRealPoint(QPointF pt) |
| 535 | { |
nothing calls this directly
no outgoing calls
no test coverage detected