ChartsAndCamerasWnd.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. #ifndef CHARTSANDCAMERASWND_H
  2. #define CHARTSANDCAMERASWND_H
  3. #include <QMainWindow>
  4. #include <QSlider>
  5. #include <QLineEdit>
  6. #include <QSettings>
  7. #include "chartline.h"
  8. #include "CameraMaterialGroupWnd/MaterialWindow/Wafer.h"
  9. #include "CameraMaterialGroupWnd/MaterialWindow/Waffle.h"
  10. #include "CameraMaterialGroupWnd/MaterialWindow/MaterialBox.h"
  11. // enum OperateMode {
  12. // ModeImage, // 显示图片
  13. // ModeView // 显示 view
  14. // };
  15. namespace Ui {
  16. class ChartsAndCamerasWnd;
  17. }
  18. class ChartsAndCamerasWnd : public QMainWindow
  19. {
  20. Q_OBJECT
  21. public:
  22. explicit ChartsAndCamerasWnd(QWidget *parent = nullptr);
  23. ~ChartsAndCamerasWnd();
  24. void initFrom();
  25. void connectSliderAndLineEdit(QSlider* slider, QLineEdit* lineEdit);
  26. void initLineEdits();
  27. void initSliders();
  28. void initProgressBar();
  29. void showAndHide();
  30. protected:
  31. void wheelEvent(QWheelEvent *event) override;
  32. void loadSettings();
  33. void checkSettings();
  34. void loadGroupSettings(int Id, int Index);
  35. void showEvent(QShowEvent *event) override;
  36. void hideEvent(QHideEvent *event) override;
  37. void clearLayout(); // 清除大窗口上当前的布局
  38. void WaferWidget(int Id); // 圆晶
  39. void WaffleWidget(); // 华夫盒
  40. void MaterialBoxWidget(); // 料盒
  41. public slots: // 确保这里声明了槽函数
  42. void handleDoubleClick();
  43. private slots:
  44. void on_ZoomUpButton_clicked();
  45. QPixmap getCurrentPixmap() const {
  46. return currentPixmap;
  47. }
  48. // 通用槽函数
  49. void on_CheckBox_clicked();
  50. void on_ZoomOutButton_clicked();
  51. // void on_GreenDiamondcheckBox_clicked();
  52. // void on_YellowDiamondcheckBox_clicked();
  53. // void on_BlackDiamondcheckBox_clicked();
  54. // void on_BlueDiamondcheckBox_clicked();
  55. // void on_BlueHorizontalLinecheckBox_clicked();
  56. // void on_BlueVerticalBarcheckBox_clicked();
  57. // void on_GreenVerticalBarcheckBox_clicked();
  58. // void on_PurpleVerticalBarcheckBox_clicked();
  59. // void on_RedDiamondcheckBox_clicked();
  60. // void on_RedHorizontalLinecheckBox_clicked();
  61. // void on_WhiteVerticalBarcheckBox_clicked();
  62. private:
  63. Ui::ChartsAndCamerasWnd *ui;
  64. // // 三个 ChartLine 实例
  65. // ChartLine *chartLine;
  66. // ChartLine *chartLine1;
  67. // ChartLine *chartLine2;
  68. // ChartLine 实例
  69. ChartLine *chartLine;
  70. ChartLine *chartLine1;
  71. ChartLine *chartLine2;
  72. // 存储所有系列信息
  73. QMap<QString, DataSeries> m_seriesMap;
  74. // 初始化系列信息
  75. void initializeSeriesInfo();
  76. QPixmap currentPixmap;
  77. qreal scaleFactor;
  78. double previousScaleFactor;
  79. int lastGroupId = -1;
  80. int lastIndex = -1;
  81. Wafer *wafer; // 声明Wafer指针
  82. Waffle *waffle; // 声明Waffle指针
  83. MaterialBox *materialbox; // 声明materialbox指针
  84. bool isShow;
  85. QMap<int, Wafer*> waferMap;
  86. QMap<int, Waffle*> waffleMap;
  87. QMap<int, MaterialBox*> materialBoxMap;
  88. OperateMode currentMode = ModeImage;
  89. QGraphicsView *currentView = nullptr;
  90. QPoint mousePos;
  91. void updateScale(double newScaleFactor); // 更新缩放比例
  92. void applyScale(); // 应用缩放
  93. };
  94. #endif // CHARTSANDCAMERASWND_H