MainAndSecondaryCamerasWnd.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. public slots: // 确保这里声明了槽函数
  24. void handleDoubleClick();
  25. void showAndHide();
  26. protected:
  27. void wheelEvent(QWheelEvent *event)override;
  28. void loadSettings();
  29. void checkSettings();
  30. void loadGroupSettings(int Id, int Index);
  31. void showEvent(QShowEvent *event) override;
  32. void hideEvent(QHideEvent *event) override;
  33. void clearLayout(int flag); // 清除大窗口上当前的布局
  34. void WaferWidget(int flag); // 圆晶
  35. void WaffleWidget(int flag); // 华夫盒
  36. void MaterialBoxWidget(int flag); // 料盒
  37. private slots:
  38. void on_LeftZoomUpButton_clicked();
  39. void on_RightZoomUpButton_clicked();
  40. void on_LeftZoomOutButton_clicked();
  41. void on_RightZoomOutButton_clicked();
  42. QPixmap getCurrentPixmap() const {
  43. return Right_currentPixmap;
  44. }
  45. private:
  46. Ui::MainAndSecondaryCamerasWnd *ui;
  47. QPixmap Left_currentPixmap;
  48. qreal Left_scaleFactor;
  49. QPixmap Right_currentPixmap;
  50. qreal Right_scaleFactor;
  51. int lastGroupId = -1;
  52. int lastIndex = -1;
  53. QPixmap lastRightPixmap;
  54. QStringList lasttextList;
  55. QPixmap lastLastRightPixmap; // 用于存储上一次的 lastRightPixmap
  56. QStringList lastLasttextList;
  57. bool isUpdatingSettings;
  58. Wafer *wafer; // 声明Wafer指针
  59. Waffle *waffle; // 声明Waffle指针
  60. MaterialBox *materialbox; // 声明materialbox指针
  61. bool isShow;
  62. };
  63. #endif // MAINANDSECONDARYCAMERASWND_H