MaterialBox.cpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. #include "MaterialBox.h"
  2. // 构造函数
  3. MaterialBox::MaterialBox(int flag, QWidget *parent) : QWidget(parent) {
  4. // 初始化料盒数据
  5. boxes = {
  6. 2, // iCurrLayers
  7. 32, // iLayersTotal
  8. 100, // iTopLev
  9. 50, // iBottomLev
  10. {15.5, 20.3}, // 补全所有子成员
  11. {1,0,1,1,0},
  12. // ...后续成员保持相同
  13. };
  14. }
  15. // 绘制事件
  16. void MaterialBox::paintEvent(QPaintEvent *event) {
  17. QPainter painter(this);
  18. painter.setRenderHint(QPainter::Antialiasing);
  19. // 设置背景颜色
  20. painter.fillRect(this->rect(), Qt::white);
  21. }
  22. void MaterialBox::paintInitFrom(QWidget *parent) {
  23. // 主容器尺寸(占窗口80%)
  24. const int containerWidthdp = parent->width() * 0.25;
  25. const int containerHeightdp = parent->height() * 0.05;
  26. const int containerWidth = parent->width() * 0.5;
  27. const int containerHeight = parent->height() *0.9;
  28. globalPixmap = QPixmap(parent->width(), parent->height());
  29. globalPixmap.fill(Qt::white); // 填充背景色为白色
  30. // 创建 QPainter 以绘制到 QPixmap 上
  31. QPainter painter(&globalPixmap);
  32. painter.setRenderHint(QPainter::Antialiasing); // 启用抗锯齿
  33. // 绘制灰色背景框
  34. painter.setPen(Qt::black);
  35. painter.setBrush(Qt::lightGray);
  36. painter.drawRect(containerWidthdp, containerHeightdp, containerWidth, containerHeight);
  37. // 计算内部可用空间(留5像素边距)
  38. int innerWidth = containerWidth - 10; // 左右各5像素
  39. int innerHeight = containerHeight - 10; // 上下各5像素
  40. int innerX = containerWidthdp + containerWidth*0.1;
  41. int innerY = containerHeightdp + 5;
  42. // 根据层数自动计算间距和矩形高度
  43. const int totalLayers = boxes.iLayersTotal;
  44. const float spacing = static_cast<float>((static_cast<float>(innerHeight -totalLayers)) /static_cast<float>(totalLayers)); // 每个矩形之间的固定间距(像素)
  45. qDebug()<<spacing;
  46. float rectHeight = 2.5;
  47. const float rectWeight = static_cast<float>(innerWidth);
  48. if((0<=totalLayers)&&(totalLayers<=8)){
  49. rectHeight = 2.5;
  50. }else if((9<=totalLayers)&&(totalLayers<=16)){
  51. rectHeight = 1.5;
  52. }else{
  53. rectHeight = 1;
  54. }
  55. // 逐层绘制状态矩形
  56. for(int i = 0; i < totalLayers; ++i) {
  57. const QColor color = boxes.iStatas[i] ? QColor(40, 129, 5) : QColor(255, 0, 0); // 1=绿,0=红
  58. const int yPos = innerY + i * (rectHeight + spacing);
  59. painter.setPen(Qt::NoPen); // 去掉边框
  60. painter.setBrush(color);
  61. painter.drawRect(static_cast<float>(innerX), static_cast<float>(yPos), static_cast<float>(rectWeight), static_cast<float>(rectHeight));
  62. }
  63. }
  64. QPixmap MaterialBox::getGlobalPixmap() const {
  65. return globalPixmap;
  66. }
  67. void MaterialBox::initFrom(QWidget *parent){
  68. int ratio = parent->height()/100;
  69. // 主容器尺寸(占窗口80%)
  70. // qDebug()<<ratio;
  71. // qDebug()<<"1111"<<parent->width()<<parent->height();
  72. const int containerWidthdp = parent->width() * 0.25;
  73. const int containerHeightdp = parent->height() * 0.05;
  74. const int containerWidth = parent->width() * 0.5;
  75. const int containerHeight = parent->height() *0.9;
  76. // 计算内部可用空间(留5像素边距)
  77. int innerWidth = containerWidth - 10*ratio; // 左右各5像素
  78. int innerHeight = containerHeight - 10*ratio; // 上下各5像素
  79. int innerX = containerWidthdp + containerWidth*0.1;
  80. int innerY = containerHeightdp + 5*ratio;
  81. // 根据层数自动计算间距和矩形高度
  82. const int totalLayers = boxes.iLayersTotal;
  83. const float spacing = static_cast<float>((static_cast<float>(innerHeight -totalLayers*ratio)) /static_cast<float>(totalLayers)); // 每个矩形之间的固定间距(像素)
  84. qDebug()<<spacing;
  85. float rectHeight = 2.5*ratio;
  86. const float rectWeight = static_cast<float>(innerWidth);
  87. if((0<=totalLayers)&&(totalLayers<=8)){
  88. rectHeight = 2.5*ratio;
  89. }else if((9<=totalLayers)&&(totalLayers<=16)){
  90. rectHeight = 1.5*ratio;
  91. }else{
  92. rectHeight = 1*ratio;
  93. }
  94. BackgroundRect* backgroundRect = new BackgroundRect(containerWidthdp, containerHeightdp, containerWidth, containerHeight);
  95. scene = new QGraphicsScene(parent);
  96. view = new MaterialBoxGraphicsView(scene);
  97. scene->addItem(backgroundRect);
  98. for (int i = 0; i < totalLayers; ++i) {
  99. MaterialBoxDie* materialBoxDie = new MaterialBoxDie(i, 0, boxes.iStatas[i],rectWeight, rectHeight);
  100. materialBoxDie->setPos(innerX,(innerY+ i * (rectHeight + spacing) ));
  101. scene->addItem(materialBoxDie);
  102. }
  103. connect(view, &MaterialBoxGraphicsView::layerRightClicked, this, &MaterialBox::handleLayerRightClicked);
  104. view->resize(parent->width(), parent->height());
  105. view->resetTransform();
  106. view->setSceneRect(0, 0, parent->width(), parent->height());
  107. }
  108. void MaterialBox::handleLayerRightClicked(int layer) {
  109. qDebug() << "Right-clicked on layer:" << layer;
  110. // 在这里可以添加其他处理逻辑,例如发送信号到其他对象
  111. }