Group.cpp 13 KB

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