Group.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  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. #include <QTimer>
  9. // #include "MainWnd.h"
  10. // 静态变量初始化
  11. Group* Group::currentlySelectedGroup = nullptr;
  12. Group* Group::previouslySelectedBlueGroup = nullptr;
  13. Group* Group::lastClickedGroup = nullptr;
  14. int Group::lastClickedIndex = 0;
  15. int Group::lastSavedIndex = 1;
  16. Group::Group(int Id, const QString& imagePath1, int MaterialWindowType, const QStringList& textList, QWidget* parent)
  17. : QWidget(parent), ui(new Ui::Group), groupId(Id)
  18. {
  19. ui->setupUi(this);
  20. QPixmap pixmap1(imagePath1);
  21. ui->Imagewidget_left->setPixmap(pixmap1);
  22. ui->DatacomboBox->addItems(textList);
  23. ui->GroupButton->setStyleSheet(
  24. "QPushButton:hover {"
  25. " background-color: #45a049;"
  26. "}"
  27. "QPushButton:pressed {"
  28. " background-color: #3e8e41;"
  29. "}"
  30. );
  31. ui->Imagewidget_left->setProperty("groupId", Id);
  32. ui->Imagewidget_right->setProperty("groupId", Id);
  33. if (MaterialWindowType == 1) {
  34. wafer = new Wafer(0, ui->Imagewidget_right);
  35. WaferWidget();
  36. } else if (MaterialWindowType == 2) {
  37. waffle = new Waffle(0, ui->Imagewidget_right);
  38. WaffleWidget();
  39. } else if (MaterialWindowType == 3) {
  40. materialbox = new MaterialBox(0,ui->Imagewidget_right);
  41. MaterialBoxWidget();
  42. }
  43. saveGroupSettings(Id, imagePath1, MaterialWindowType, textList);
  44. connect(ui->GroupButton, &QPushButton::clicked, this, &Group::onclickbutton);
  45. initForm();
  46. connect(this, &Group::groupSelected, this, &Group::onGroupSelected);
  47. }
  48. Group::~Group()
  49. {
  50. delete ui;
  51. }
  52. void Group::initForm()
  53. {
  54. ui->Imagewidget_left->installEventFilter(this);
  55. ui->Imagewidget_right->installEventFilter(this);
  56. // MainWnd *mainWindow = new MainWnd();
  57. // connect(mainWindow,&MainWnd::styleChanged,this,&Group::Changedstyle);
  58. QTimer *timer = new QTimer(this);
  59. connect(timer, &QTimer::timeout, this, &Group::Changedstyle);
  60. timer->start(100);
  61. }
  62. void Group::Changedstyle()
  63. {
  64. QSettings settings("YourCompany", "YourApplication_style");
  65. int flag = settings.value("Flag_Style", 0).toInt();
  66. if (flag == 0) {
  67. ui->DatacomboBox->setStyleSheet("background-color: #FFFFFF;");
  68. } else {
  69. ui->DatacomboBox->setStyleSheet("background-color: #4C4FA6;");
  70. }
  71. }
  72. bool Group::eventFilter(QObject *obj, QEvent *event)
  73. {
  74. if (event->type() == QEvent::MouseButtonDblClick) {
  75. QMouseEvent* mouseEvent = static_cast<QMouseEvent*>(event);
  76. if (mouseEvent->button() == Qt::LeftButton) {
  77. int groupId = obj->property("groupId").toInt();
  78. QSettings settings("YourCompany", "YourApplication_");
  79. settings.setValue("GroupId", groupId);
  80. int index = 0;
  81. if (obj == this->ui->Imagewidget_left) {
  82. index = 1;
  83. settings.setValue("Index", 1);
  84. check_selected(1);
  85. } else if (obj == this->ui->Imagewidget_right) {
  86. index = 2;
  87. settings.setValue("Index", 2);
  88. check_selected(2);
  89. }
  90. emit groupSelected(this, index);
  91. return true;
  92. }
  93. }
  94. return QWidget::eventFilter(obj, event);
  95. }
  96. void Group::check_selected(int index)
  97. {
  98. if (index == 1) {
  99. ui->leftBackground->setStyleSheet("border: 2px solid red;");
  100. } else if (index == 2) {
  101. ui->rightBackground->setStyleSheet("border: 2px solid red;");
  102. }
  103. }
  104. void Group::saveGroupSettings(int Id, const QString& imagePath1, int materialWndType, const QStringList& textList)
  105. {
  106. QSettings settings("YourOrganization", "YourApplication");
  107. settings.beginGroup(QString::number(Id));
  108. settings.setValue("ImagePath1", imagePath1);
  109. settings.setValue("MaterialWndType", materialWndType);
  110. settings.setValue("TextList", textList);
  111. settings.endGroup();
  112. }
  113. void Group::WaferWidget()
  114. {
  115. QVBoxLayout *layout2 = new QVBoxLayout(ui->Imagewidget_right);
  116. wafer->paintInitFrom(ui->Imagewidget_right);
  117. QLabel* pixmapLabel = new QLabel();
  118. pixmapLabel->setPixmap(wafer->getGlobalPixmap());
  119. ui->Imagewidget_right->setLayout(layout2);
  120. ui->Imagewidget_right->setFixedSize(110, 110);
  121. layout2->setContentsMargins(0, 0, 0, 0);
  122. layout2->addWidget(pixmapLabel);
  123. }
  124. void Group::WaffleWidget()
  125. {
  126. QVBoxLayout *layout2 = new QVBoxLayout(ui->Imagewidget_right);
  127. waffle->paintInitFrom(ui->Imagewidget_right);
  128. QLabel* pixmapLabel = new QLabel();
  129. pixmapLabel->setPixmap(waffle->getGlobalPixmap());
  130. ui->Imagewidget_right->setLayout(layout2);
  131. ui->Imagewidget_right->setFixedSize(110, 110);
  132. layout2->setContentsMargins(0, 0, 0, 0);
  133. layout2->addWidget(pixmapLabel);
  134. }
  135. void Group::MaterialBoxWidget()
  136. {
  137. QVBoxLayout *layout2 = new QVBoxLayout(ui->Imagewidget_right);
  138. materialbox->paintInitFrom(ui->Imagewidget_right);
  139. QLabel* pixmapLabel = new QLabel();
  140. pixmapLabel->setPixmap(materialbox->getGlobalPixmap());
  141. ui->Imagewidget_right->setLayout(layout2);
  142. ui->Imagewidget_right->setFixedSize(110, 110);
  143. layout2->setContentsMargins(0, 0, 0, 0);
  144. layout2->addWidget(pixmapLabel);
  145. }
  146. void Group::onclickbutton(){
  147. QSettings settings("YourCompany", "YourApplication_Button");
  148. settings.setValue("GroupId_button", groupId);
  149. emit send_button_Signal();
  150. }
  151. void Group::setDatacomboBox(int index){
  152. ui->DatacomboBox->setCurrentIndex(index);
  153. }
  154. void Group::on_DatacomboBox_currentIndexChanged(int index){
  155. send_ComboBox_singal(currentGroupId,index);
  156. }
  157. void Group::onGroupSelected(Group* group, int index)
  158. {
  159. QSettings settings("OrganizationName__", "ApplicationName__");
  160. int currentLastSavedIndex = settings.value("lastIndex", 1).toInt();
  161. // 清除当前红色边框
  162. if (currentlySelectedGroup != nullptr) {
  163. currentlySelectedGroup->ui->leftBackground->setStyleSheet("");
  164. currentlySelectedGroup->ui->rightBackground->setStyleSheet("");
  165. }
  166. // 清除当前蓝色边框
  167. if (previouslySelectedBlueGroup != nullptr) {
  168. previouslySelectedBlueGroup->ui->leftBackground->setStyleSheet("");
  169. previouslySelectedBlueGroup->ui->rightBackground->setStyleSheet("");
  170. }
  171. if (currentLastSavedIndex == 1 || currentLastSavedIndex == 3) {
  172. // 仅当前选中设为红色,蓝色边框清空
  173. previouslySelectedBlueGroup = nullptr;
  174. } else if (currentLastSavedIndex == 2) {
  175. // 当前选中设为红色,上一个选中设为蓝色
  176. if (lastClickedGroup != nullptr) {
  177. QString blueBorderStyle = "border: 2px solid blue;";
  178. // 即使是同一个实例,只要索引不同就设置蓝色边框
  179. if (lastClickedGroup == group && lastClickedIndex != index) {
  180. if (lastClickedIndex == 1) {
  181. lastClickedGroup->ui->leftBackground->setStyleSheet(blueBorderStyle);
  182. } else if (lastClickedIndex == 2) {
  183. lastClickedGroup->ui->rightBackground->setStyleSheet(blueBorderStyle);
  184. }
  185. previouslySelectedBlueGroup = lastClickedGroup;
  186. } else if (lastClickedGroup != group) {
  187. if (lastClickedIndex == 1) {
  188. lastClickedGroup->ui->leftBackground->setStyleSheet(blueBorderStyle);
  189. } else if (lastClickedIndex == 2) {
  190. lastClickedGroup->ui->rightBackground->setStyleSheet(blueBorderStyle);
  191. }
  192. previouslySelectedBlueGroup = lastClickedGroup;
  193. }
  194. }
  195. }
  196. // 更新当前选中的 Group 实例
  197. currentlySelectedGroup = group;
  198. // 将当前选中的边框设为红色
  199. group->check_selected(index);
  200. // 更新上一次点击的记录
  201. lastClickedGroup = group;
  202. lastClickedIndex = index;
  203. }
  204. void Group::showEvent(QShowEvent *event) {
  205. QWidget::showEvent(event);
  206. loadBorderSettings();
  207. }
  208. void Group::hideEvent(QHideEvent *event) {
  209. QWidget::hideEvent(event);
  210. saveBorderSettings(); // 保存边框颜色信息
  211. }
  212. void Group::saveBorderSettings()
  213. {
  214. QSettings settings("YourOrganization", "YourApplication");
  215. settings.beginGroup(QString::number(groupId));
  216. QString leftStyle = ui->leftBackground->styleSheet();
  217. if (leftStyle.contains("blue", Qt::CaseInsensitive)) {
  218. leftStyle = ""; // 清除样式
  219. // 记录该边框信息
  220. recordBorderInfo(groupId, "Left");
  221. }
  222. settings.setValue("LeftBorderStyle", leftStyle);
  223. QString rightStyle = ui->rightBackground->styleSheet();
  224. if (rightStyle.contains("blue", Qt::CaseInsensitive)) {
  225. rightStyle = ""; // 清除样式
  226. // 记录该边框信息
  227. recordBorderInfo(groupId, "Right");
  228. }
  229. settings.setValue("RightBorderStyle", rightStyle);
  230. settings.setValue("LastClickedIndex", lastClickedIndex);
  231. settings.setValue("LastSavedIndex", lastSavedIndex);
  232. if (currentlySelectedGroup == this) {
  233. settings.setValue("IsCurrentlySelected", true);
  234. } else {
  235. settings.setValue("IsCurrentlySelected", false);
  236. }
  237. settings.endGroup();
  238. }
  239. void Group::recordBorderInfo(int groupId, const QString& side)
  240. {
  241. QSettings settings("YourOrganization", "YourApplication");
  242. settings.beginGroup("ModifiedBorders");
  243. QString key = QString("%1_%2").arg(groupId).arg(side);
  244. settings.setValue(key, true);
  245. settings.endGroup();
  246. }
  247. void Group::loadBorderSettings()
  248. {
  249. QSettings settings("YourOrganization", "YourApplication");
  250. settings.beginGroup(QString::number(groupId));
  251. QString leftStyle = settings.value("LeftBorderStyle", "").toString();
  252. QString rightStyle = settings.value("RightBorderStyle", "").toString();
  253. lastClickedIndex = settings.value("LastClickedIndex", 0).toInt();
  254. lastSavedIndex = settings.value("LastSavedIndex", 1).toInt();
  255. bool isCurrentlySelected = settings.value("IsCurrentlySelected", false).toBool();
  256. QSettings settings2("OrganizationName__", "ApplicationName__");
  257. int Index = settings2.value("lastIndex", 1).toInt();
  258. if (Index == 2) {
  259. QSettings borderInfoSettings("YourOrganization", "YourApplication");
  260. borderInfoSettings.beginGroup("ModifiedBorders");
  261. QString leftKey = QString("%1_Left").arg(groupId);
  262. QString rightKey = QString("%1_Right").arg(groupId);
  263. // 检查左边框是否需要还原
  264. if (borderInfoSettings.contains(leftKey)) {
  265. leftStyle = getBlueBorderStyle();
  266. borderInfoSettings.remove(leftKey); // 移除记录,避免下次重复处理
  267. }
  268. // 检查右边框是否需要还原
  269. if (borderInfoSettings.contains(rightKey)) {
  270. rightStyle = getBlueBorderStyle();
  271. borderInfoSettings.remove(rightKey);
  272. }
  273. borderInfoSettings.endGroup();
  274. }
  275. ui->leftBackground->setStyleSheet(leftStyle);
  276. ui->rightBackground->setStyleSheet(rightStyle);
  277. if (isCurrentlySelected) {
  278. currentlySelectedGroup = this;
  279. if (leftStyle.contains("red")) {
  280. lastClickedIndex = 1;
  281. } else if (rightStyle.contains("red")) {
  282. lastClickedIndex = 2;
  283. }
  284. }
  285. settings.endGroup();
  286. }
  287. QString Group::getBlueBorderStyle()
  288. {
  289. static const QString blueBorderStyle = "border: 2px solid blue;";
  290. return blueBorderStyle;
  291. }