1
0

ExportImageMenu.h 509 B

123456789101112131415161718192021222324252627282930
  1. #ifndef EXPORTIMAGEMENU_H
  2. #define EXPORTIMAGEMENU_H
  3. #include <QWidget>
  4. namespace Ui {
  5. class ExportImageMenu;
  6. }
  7. class ExportImageMenu : public QWidget
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit ExportImageMenu(QWidget *parent = nullptr);
  12. ~ExportImageMenu();
  13. int getMaxIterations(void) const;
  14. int getWidth(void) const;
  15. int getHeight(void) const;
  16. QString getPath(void) const;
  17. private slots:
  18. void on_pathBtn_clicked();
  19. private:
  20. Ui::ExportImageMenu *ui;
  21. };
  22. #endif // EXPORTIMAGEMENU_H