MainAndSecondaryCamerasWnd.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #ifndef MAINANDSECONDARYCAMERASWND_H
  2. #define MAINANDSECONDARYCAMERASWND_H
  3. #include <QMainWindow>
  4. #include <QSlider>
  5. #include <QLineEdit>
  6. namespace Ui {
  7. class Demo001_2;
  8. }
  9. class Demo001_2 : public QMainWindow
  10. {
  11. Q_OBJECT
  12. public:
  13. explicit Demo001_2(QWidget *parent = nullptr);
  14. ~Demo001_2();
  15. void initFrom();
  16. void connectSliderAndLineEdit(QSlider* slider, QLineEdit* lineEdit);
  17. void initLineEdits();
  18. void initSliders();
  19. protected:
  20. void wheelEvent(QWheelEvent *event);
  21. void loadSettings();
  22. void checkSettings();
  23. void loadGroupSettings(int Id, int Index);
  24. void showEvent(QShowEvent *event) override;
  25. void hideEvent(QHideEvent *event) override;
  26. private slots:
  27. void on_LeftZoomUpButton_clicked();
  28. void on_RightZoomUpButton_clicked();
  29. void on_LeftZoomOutButton_clicked();
  30. void on_RightZoomOutButton_clicked();
  31. QPixmap getCurrentPixmap() const {
  32. return Right_currentPixmap;
  33. }
  34. private:
  35. Ui::Demo001_2 *ui;
  36. QPixmap Left_currentPixmap;
  37. qreal Left_scaleFactor;
  38. QPixmap Right_currentPixmap;
  39. qreal Right_scaleFactor;
  40. int lastGroupId = -1;
  41. int lastIndex = -1;
  42. };
  43. #endif // MAINANDSECONDARYCAMERASWND_H