Demo001_1.h 938 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #ifndef DEMO001_1_H
  2. #define DEMO001_1_H
  3. #include <QMainWindow>
  4. #include <QSlider>
  5. #include <QLineEdit>
  6. namespace Ui {
  7. class Demo001_1;
  8. }
  9. class Demo001_1 : public QMainWindow
  10. {
  11. Q_OBJECT
  12. public:
  13. explicit Demo001_1(QWidget *parent = nullptr);
  14. ~Demo001_1();
  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_ZoomUpButton_clicked();
  28. QPixmap getCurrentPixmap() const {
  29. return currentPixmap;
  30. }
  31. void on_ZoomOutButton_clicked();
  32. private:
  33. Ui::Demo001_1 *ui;
  34. QPixmap currentPixmap;
  35. qreal scaleFactor;
  36. };
  37. #endif // DEMO001_1_H