Group.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #ifndef GROUP_H
  2. #define GROUP_H
  3. #include <QWidget>
  4. #include <QtWidgets/QComboBox>
  5. #include "CameraMaterialGroupWnd/MaterialWindow/Wafer.h"
  6. #include "CameraMaterialGroupWnd/MaterialWindow/Waffle.h"
  7. #include "CameraMaterialGroupWnd/MaterialWindow/MaterialBox.h"
  8. namespace Ui {
  9. class Group;
  10. }
  11. class Group : public QWidget
  12. {
  13. Q_OBJECT
  14. public:
  15. // 相机ID 实时图片 物料窗口类型 下拉框文本
  16. explicit Group(int Id, const QString& imagePath1, int MaterialWindowType, const QStringList& textList, QWidget* parent);
  17. ~Group();
  18. void initForm();
  19. bool eventFilter(QObject *obj, QEvent *event);
  20. void saveGroupSettings(int Id, const QString& imagePath1, int materialWndType, const QStringList& textList);
  21. void saveBorderSettings(); // 新增:保存边框颜色信息
  22. void loadBorderSettings(); // 新增:加载边框颜色信息
  23. void recordBorderInfo(int groupId, const QString& side);
  24. QString getBlueBorderStyle();
  25. QString getRedBorderStyle();
  26. void setDatacomboBox(int index);
  27. void setEnableControls(bool enable);
  28. signals:
  29. void send_button_Signal();
  30. void send_ComboBox_singal(int groupId,int index);
  31. void SendGroupSelectedSignals(Group* group, int index);
  32. void sendUpdateGroupState();
  33. /**当前选中了哪一个
  34. */
  35. void SetCurrentSelectSig(int groupId,int nIndex);
  36. /**相机图像转发
  37. */
  38. void SetUpDataImageShowSig(const QPixmap& imageData);
  39. public slots:
  40. void Changedstyle();
  41. void onclickbutton();
  42. void on_DatacomboBox_currentIndexChanged(int index);
  43. void GetGroupSelectedSlots(Group* group, int index);
  44. void UpDataImageShowSlots(const QPixmap& imageData);
  45. protected:
  46. void showEvent(QShowEvent *event) override;
  47. void hideEvent(QHideEvent *event) override;
  48. void check_selected(int index);
  49. void WaferWidget(); // 圆晶
  50. void WaffleWidget(); // 华夫盒
  51. void MaterialBoxWidget(); // 料盒
  52. private:
  53. Ui::Group *ui;
  54. int m_nCurrentGroupId;
  55. Wafer * m_pWafer =nullptr; // 声明Wafer指针
  56. Waffle * m_pWaffle = nullptr; // 声明Waffle指针
  57. MaterialBox * m_pMaterialbox = nullptr; // 声明materialbox指针
  58. static Group* m_pCurrentlySelectedGroup; // 当前选中(红色边框)的实例
  59. static Group* m_pPreviouslySelectedBlueGroup; // 上一次选中且边框为蓝色的实例
  60. static Group* m_pLastClickedGroup; // 上一次点击的实例
  61. static int m_stnLastClickedIndex; // 上一次点击的索引
  62. static int m_stnLastSavedIndex; // 上次保存的索引
  63. public:
  64. int m_nGroupId; // 新增:记录当前 Group 的 ID
  65. };
  66. #endif // GROUP_H