DieItem.cpp 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. #include "DieItem.h"
  2. DieItem::DieItem(int row, int col, PICK_DIE_STATUS status, qreal size, QGraphicsItem* parent)
  3. : QGraphicsRectItem(parent), row(row), col(col), status(status) {
  4. setRect(0, 0, size, size); // 设置单元格大小
  5. setBrush(getColorByStatus(status));
  6. // 设置边框(Pen)
  7. setPen(QPen(QColor(0, 0, 0), 0.5)); // 黑色边框,宽度为0.5
  8. }
  9. void DieItem::setSelected(bool selected) {
  10. if (selected) {
  11. setPen(QPen(Qt::green, 0.5)); // 选中时边框变为绿色
  12. setZValue(1);
  13. } else {
  14. setPen(QPen(Qt::black, 0.5)); // 未选中时恢复为黑色边框
  15. setZValue(0);
  16. }
  17. qDebug() << "DieItem clicked: Row:" << row << "Col:" << col;
  18. }
  19. // void DieItem::mousePressEvent(QGraphicsSceneMouseEvent *event) {
  20. // if (event->button() == Qt::LeftButton) {
  21. // // isSelected = !isSelected; // 切换选中状态
  22. // // setSelected(isSelected); // 更新边框颜色
  23. // // 获取当前图形项的包围矩形
  24. // QRectF itemRect = boundingRect();
  25. // QPointF center = itemRect.center(); // 矩形的中心点
  26. // // 计算新的矩形尺寸(长宽的 95%)
  27. // qreal newWidth = itemRect.width() * 0.95;
  28. // qreal newHeight = itemRect.height() * 0.95;
  29. // // 计算新的矩形的左上角位置,使其保持原中心位置
  30. // qreal newX = center.x() - newWidth / 2;
  31. // qreal newY = center.y() - newHeight / 2;
  32. // // 创建新的矩形,作为响应区域
  33. // QRectF validArea(newX, newY, newWidth, newHeight);
  34. // // 获取鼠标点击位置
  35. // QPointF clickPos = event->pos();
  36. // // 判断点击位置是否在新的矩形区域内
  37. // if (validArea.contains(clickPos)) {
  38. // // 如果点击在有效区域内,则切换选中状态
  39. // isSelected = !isSelected; // 切换选中状态
  40. // setSelected(isSelected); // 更新边框颜色
  41. // }
  42. // }
  43. // QGraphicsRectItem::mousePressEvent(event); // 调用基类的事件处理
  44. // }
  45. QColor DieItem::getColorByStatus(PICK_DIE_STATUS status) {
  46. switch (status) {
  47. case DIE_EXIST: return QColor(0, 102, 255); // 蓝色
  48. case NO_EXIST: return QColor(200, 200, 200); // 浅灰
  49. case PICK_ING: return QColor(255, 255, 0); // 黄色
  50. case SKIP_DIE: return QColor(128, 128, 128); // 深灰
  51. case EDGE_DIE: return QColor(255, 165, 0); // 橙色
  52. default: return QColor(0, 0, 0);
  53. }
  54. }
  55. int DieItem::getRow() const {
  56. return row;
  57. }
  58. int DieItem::getCol() const {
  59. return col;
  60. }
  61. // void DieItem::contextMenuEvent(QGraphicsSceneContextMenuEvent *event) {
  62. // // 创建右键菜单
  63. // QMenu menu;
  64. // QAction *action1 = menu.addAction("菜单项 1");
  65. // QAction *action2 = menu.addAction("菜单项 2");
  66. // // 连接菜单项的信号和槽
  67. // connect(action1, &QAction::triggered, this, &DieItem::handleAction1);
  68. // connect(action2, &QAction::triggered, this, &DieItem::handleAction2);
  69. // // 显示菜单
  70. // menu.exec(event->screenPos());
  71. // }
  72. // void DieItem::handleAction1() {
  73. // // 处理菜单项 1 的逻辑
  74. // qDebug() << "菜单项 1 被点击";
  75. // }
  76. // void DieItem::handleAction2() {
  77. // // 处理菜单项 2 的逻辑
  78. // qDebug() << "菜单项 2 被点击";
  79. // }