Group.cpp 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. #include "Group.h"
  2. #include "ui_Group.h"
  3. #include <QDebug>
  4. #include <QMouseEvent>
  5. #include <QSettings>
  6. #include <QVBoxLayout>
  7. #include <QLabel>
  8. // 静态变量初始化
  9. Group* Group::currentlySelectedGroup = nullptr;
  10. Group* Group::previouslySelectedBlueGroup = nullptr;
  11. Group* Group::lastClickedGroup = nullptr;
  12. int Group::lastClickedIndex = 0;
  13. Group::Group(int Id, const QString& imagePath1, int MaterialWindowType, const QStringList& textList, QWidget* parent)
  14. : QWidget(parent), ui(new Ui::Group),currentGroupId(Id) {
  15. ui->setupUi(this);
  16. QPixmap pixmap1(imagePath1);
  17. ui->Imagewidget_left->setPixmap(pixmap1);
  18. ui->DatacomboBox->addItems(textList);
  19. ui->GroupButton->setStyleSheet( // 设置样式表
  20. "QPushButton:hover {"
  21. " background-color: #45a049;" // 悬停时的背景颜色
  22. "}"
  23. "QPushButton:pressed {"
  24. " background-color: #3e8e41;" // 点击时的背景颜色
  25. "}"
  26. );
  27. ui->Imagewidget_left->setProperty("groupId", Id);
  28. ui->Imagewidget_right->setProperty("groupId", Id);
  29. if (MaterialWindowType == 1) { // 判断物料窗口类型,转到处理函数
  30. wafer = new Wafer(0, ui->Imagewidget_right);
  31. WaferWidget();
  32. } else if (MaterialWindowType == 2) {
  33. waffle = new Waffle(0, ui->Imagewidget_right);
  34. WaffleWidget();
  35. } else if (MaterialWindowType == 3) {
  36. materialbox = new MaterialBox(0, ui->Imagewidget_right);
  37. MaterialBoxWidget();
  38. }
  39. // 存储参数到 QSettings
  40. saveGroupSettings(Id, imagePath1, MaterialWindowType, textList);
  41. connect(ui->GroupButton,&QPushButton::clicked,this,&Group::onclickbutton);
  42. connect(ui->DatacomboBox, QOverload<int>::of(&QComboBox::currentIndexChanged),
  43. this, &Group::on_DatacomboBox_currentIndexChanged);
  44. initForm();
  45. connect(this, &Group::groupSelected, this, &Group::onGroupSelected);
  46. }
  47. Group::~Group() {
  48. delete ui;
  49. }
  50. void Group::initForm() {
  51. ui->Imagewidget_left->installEventFilter(this);
  52. ui->Imagewidget_right->installEventFilter(this);
  53. }
  54. bool Group::eventFilter(QObject *obj, QEvent *event) {
  55. if (event->type() == QEvent::MouseButtonDblClick) {
  56. QMouseEvent* mouseEvent = static_cast<QMouseEvent*>(event);
  57. if (mouseEvent->button() == Qt::LeftButton) {
  58. int groupId = obj->property("groupId").toInt();
  59. QSettings settings("YourCompany", "YourApplication_");
  60. settings.setValue("GroupId", groupId);
  61. int index = 0;
  62. if (obj == this->ui->Imagewidget_left) {
  63. index = 1;
  64. settings.setValue("Index", 1);
  65. check_selected(1);
  66. } else if (obj == this->ui->Imagewidget_right) {
  67. index = 2;
  68. settings.setValue("Index", 2);
  69. check_selected(2);
  70. }
  71. emit groupSelected(this, index);
  72. return true;
  73. }
  74. }
  75. return QWidget::eventFilter(obj, event);
  76. }
  77. void Group::check_selected(int index)
  78. {
  79. if (index == 1) {
  80. ui->leftBackground->setStyleSheet("border: 2px solid red;");
  81. } else if (index == 2) {
  82. ui->rightBackground->setStyleSheet("border: 2px solid red;");
  83. }
  84. }
  85. void Group::saveGroupSettings(int Id, const QString& imagePath1, int materialWndType, const QStringList& textList) {
  86. QSettings settings("YourOrganization", "YourApplication");
  87. settings.beginGroup(QString::number(Id));
  88. settings.setValue("ImagePath1", imagePath1);
  89. settings.setValue("MaterialWndType", materialWndType);
  90. settings.setValue("TextList", textList);
  91. settings.endGroup();
  92. }
  93. // 圆晶
  94. void Group::WaferWidget() {
  95. QVBoxLayout *layout2 = new QVBoxLayout(ui->Imagewidget_right);
  96. wafer->paintInitFrom(ui->Imagewidget_right);
  97. QLabel* pixmapLabel = new QLabel();
  98. pixmapLabel->setPixmap(wafer->getGlobalPixmap());
  99. ui->Imagewidget_right->setLayout(layout2);
  100. ui->Imagewidget_right->setFixedSize(110, 110);
  101. layout2->setContentsMargins(0, 0, 0, 0);
  102. layout2->addWidget(pixmapLabel);
  103. }
  104. // 华夫盒
  105. void Group::WaffleWidget() {
  106. QVBoxLayout *layout2 = new QVBoxLayout(ui->Imagewidget_right);
  107. waffle = new Waffle(0, ui->Imagewidget_right);
  108. ui->Imagewidget_right->setLayout(layout2);
  109. ui->Imagewidget_right->setFixedSize(110, 110);
  110. layout2->setContentsMargins(0, 0, 0, 0);
  111. layout2->addWidget(waffle);
  112. }
  113. // 料盒
  114. void Group::MaterialBoxWidget() {
  115. QVBoxLayout *layout2 = new QVBoxLayout(ui->Imagewidget_right);
  116. materialbox = new MaterialBox(0, ui->Imagewidget_right);
  117. ui->Imagewidget_right->setLayout(layout2);
  118. ui->Imagewidget_right->setFixedSize(110, 110);
  119. layout2->setContentsMargins(0, 0, 0, 0);
  120. layout2->addWidget(materialbox);
  121. }
  122. void Group::onclickbutton(){
  123. emit send_button_Signal();
  124. }
  125. void Group::setDatacomboBox(int index){
  126. ui->DatacomboBox->setCurrentIndex(index);
  127. }
  128. void Group::on_DatacomboBox_currentIndexChanged(int index){
  129. send_ComboBox_singal(currentGroupId,index);
  130. }
  131. void Group::onGroupSelected(Group* group, int index)
  132. {
  133. QSettings settings("OrganizationName__", "ApplicationName__");
  134. int lastSavedIndex = settings.value("lastIndex", 1).toInt();
  135. // 清除当前红色边框
  136. if (currentlySelectedGroup != nullptr) {
  137. currentlySelectedGroup->ui->leftBackground->setStyleSheet("");
  138. currentlySelectedGroup->ui->rightBackground->setStyleSheet("");
  139. }
  140. // 清除当前蓝色边框
  141. if (previouslySelectedBlueGroup != nullptr) {
  142. previouslySelectedBlueGroup->ui->leftBackground->setStyleSheet("");
  143. previouslySelectedBlueGroup->ui->rightBackground->setStyleSheet("");
  144. }
  145. if (lastSavedIndex == 1 || lastSavedIndex == 3) {
  146. // 仅当前选中设为红色,蓝色边框清空
  147. previouslySelectedBlueGroup = nullptr;
  148. } else if (lastSavedIndex == 2) {
  149. // 当前选中设为红色,上一个选中设为蓝色
  150. if (lastClickedGroup != nullptr) {
  151. QString blueBorderStyle = "border: 2px solid blue;";
  152. // 即使是同一个实例,只要索引不同就设置蓝色边框
  153. if (lastClickedGroup == group && lastClickedIndex != index) {
  154. if (lastClickedIndex == 1) {
  155. lastClickedGroup->ui->leftBackground->setStyleSheet(blueBorderStyle);
  156. } else if (lastClickedIndex == 2) {
  157. lastClickedGroup->ui->rightBackground->setStyleSheet(blueBorderStyle);
  158. }
  159. previouslySelectedBlueGroup = lastClickedGroup;
  160. } else if (lastClickedGroup != group) {
  161. if (lastClickedIndex == 1) {
  162. lastClickedGroup->ui->leftBackground->setStyleSheet(blueBorderStyle);
  163. } else if (lastClickedIndex == 2) {
  164. lastClickedGroup->ui->rightBackground->setStyleSheet(blueBorderStyle);
  165. }
  166. previouslySelectedBlueGroup = lastClickedGroup;
  167. }
  168. }
  169. }
  170. // 更新当前选中的 Group 实例
  171. currentlySelectedGroup = group;
  172. // 将当前选中的边框设为红色
  173. group->check_selected(index);
  174. // 更新上一次点击的记录
  175. lastClickedGroup = group;
  176. lastClickedIndex = index;
  177. }