MainAndSecondaryCamerasWnd.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. #ifndef MAINANDSECONDARYCAMERASWND_H
  2. #define MAINANDSECONDARYCAMERASWND_H
  3. #include <QMainWindow>
  4. #include <QSlider>
  5. #include <QLineEdit>
  6. #include "CameraMaterialGroupWnd/MaterialWindow/Wafer.h"
  7. #include "CameraMaterialGroupWnd/MaterialWindow/Waffle.h"
  8. #include "CameraMaterialGroupWnd/MaterialWindow/MaterialBox.h"
  9. namespace Ui {
  10. class MainAndSecondaryCamerasWnd;
  11. }
  12. class MainAndSecondaryCamerasWnd : public QMainWindow
  13. {
  14. Q_OBJECT
  15. public:
  16. explicit MainAndSecondaryCamerasWnd(QWidget *parent = nullptr);
  17. ~MainAndSecondaryCamerasWnd();
  18. void initFrom();
  19. void connectSliderAndLineEdit(QSlider* slider, QLineEdit* lineEdit);
  20. void initLineEdits();
  21. void initSliders();
  22. void initProgressBar();
  23. enum kinds{
  24. wafer_kind,
  25. waffle_kind,
  26. materialbox_kind,
  27. bond_kind
  28. };
  29. public slots: // 确保这里声明了槽函数
  30. void handleDoubleClick();
  31. void showAndHide();
  32. void showAndHide_L();
  33. void CheckIs();
  34. protected:
  35. void wheelEvent(QWheelEvent *event)override;
  36. void loadSettings();
  37. void checkSettings();
  38. void loadGroupSettings(int Id, int Index);
  39. void showEvent(QShowEvent *event) override;
  40. void hideEvent(QHideEvent *event) override;
  41. void clearLayout(int flag); // 清除大窗口上当前的布局
  42. void imageWidget(QString path,int flag,QSize size); //相机图像
  43. void KindsofWidget(int flag,int groupId,kinds kind); // 圆晶
  44. private slots:
  45. void on_LeftZoomUpButton_clicked();
  46. void on_RightZoomUpButton_clicked();
  47. void on_LeftZoomOutButton_clicked();
  48. void on_RightZoomOutButton_clicked();
  49. QPixmap getCurrentPixmap() const {
  50. return Right_currentPixmap;
  51. }
  52. private:
  53. Ui::MainAndSecondaryCamerasWnd *ui;
  54. QPixmap Left_currentPixmap;
  55. qreal Left_scaleFactor;
  56. QPixmap Right_currentPixmap;
  57. qreal Right_scaleFactor;
  58. int lastGroupId = -1;
  59. int lastIndex = -1;
  60. int lastLastGroupId = -1;
  61. int lastLastIndex = -1;
  62. QPixmap lastRightPixmap;
  63. QStringList lasttextList;
  64. QPixmap lastLastRightPixmap; // 用于存储上一次的 lastRightPixmap
  65. QStringList lastLasttextList;
  66. bool isUpdatingSettings;
  67. Wafer *wafer; // 声明Wafer指针
  68. Waffle *waffle; // 声明Waffle指针
  69. MaterialBox *materialbox; // 声明materialbox指针
  70. bool isShow_R;
  71. bool isShow_L;
  72. QMap<int, Wafer*> waferMap;
  73. QMap<int, Waffle*> waffleMap;
  74. QMap<int, MaterialBox*> materialBoxMap;
  75. OperateMode Left_currentMode = ModeImage;
  76. OperateMode Right_currentMode = ModeImage;
  77. QGraphicsView *Left_currentView = nullptr;
  78. QGraphicsView *Right_currentView = nullptr;
  79. QPoint mousePos;
  80. double Left_previousScaleFactor;
  81. double Right_previousScaleFactor;
  82. const int last_left = 0;
  83. const int current_right = 1;
  84. void updateScale(double newScaleFactor, int flag); // 更新缩放比例
  85. void applyScale(int flag); // 应用缩放
  86. };
  87. #endif // MAINANDSECONDARYCAMERASWND_H