soundspane.h 403 B

1234567891011121314151617181920
  1. #ifndef SOUNDSPANE_H
  2. #define SOUNDSPANE_H
  3. #include "../pane.h"
  4. #include <QLabel>
  5. #include <QLineEdit>
  6. #include <QPushButton>
  7. #include <QFileDialog>
  8. class SoundsPane : public Pane {
  9. public:
  10. SoundsPane(QJsonObject* cfgObj);
  11. void setPaneContents() override;
  12. void prepareToSave(QLineEdit* logInSoundLineEdit,
  13. QLineEdit* logOutSoundLineEdit);
  14. };
  15. #endif // SOUNDSPANE_H