Demo001_3.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #ifndef DEMO001_3_H
  2. #define DEMO001_3_H
  3. #include <QMainWindow>
  4. #include <QSlider>
  5. #include <QLineEdit>
  6. namespace Ui {
  7. class Demo001_3;
  8. }
  9. class Demo001_3 : public QMainWindow
  10. {
  11. Q_OBJECT
  12. public:
  13. explicit Demo001_3(QWidget *parent = nullptr);
  14. ~Demo001_3();
  15. void initFrom();
  16. void connectSliderAndLineEdit(QSlider* slider, QLineEdit* lineEdit);
  17. void initSliders();
  18. void initLineEdits();
  19. void saveSliderStates();
  20. void loadSliderStates();
  21. void closeEvent(QCloseEvent *event);
  22. void loadGroupSettings(int Id, int Index);
  23. public slots: // 确保这里声明了槽函数
  24. void onComboBoxIndexChanged(int index); // 确保签名匹配
  25. QString getImagePathFromIndex(int index);
  26. protected:
  27. void wheelEvent(QWheelEvent *event);
  28. void loadSettings();
  29. void checkSettings();
  30. void showEvent(QShowEvent *event) override;
  31. void hideEvent(QHideEvent *event) override;
  32. private slots:
  33. void on_ZoomUpButton_clicked();
  34. QPixmap getCurrentPixmap() const {
  35. return currentPixmap;
  36. }
  37. void on_ZoomOutButton_clicked();
  38. private:
  39. Ui::Demo001_3 *ui;
  40. QPixmap currentPixmap;
  41. qreal scaleFactor;
  42. };
  43. #endif // DEMO001_3_H