File indexing completed on 2024-12-22 04:45:35
0001 /* 0002 SPDX-FileCopyrightText: 2020-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include "administratorcustomsoundscreatewidget.h" 0010 #include "libruqolawidgets_private_export.h" 0011 #include <QDialog> 0012 class AdministratorCustomSoundsCreateWidget; 0013 class LIBRUQOLAWIDGETS_TESTS_EXPORT AdministratorCustomSoundsCreateDialog : public QDialog 0014 { 0015 Q_OBJECT 0016 public: 0017 explicit AdministratorCustomSoundsCreateDialog(QWidget *parent = nullptr); 0018 ~AdministratorCustomSoundsCreateDialog() override; 0019 0020 void setCustomSoundInfo(const AdministratorCustomSoundsCreateWidget::CustomSoundInfo &info); 0021 0022 [[nodiscard]] AdministratorCustomSoundsCreateWidget::CustomSoundInfo customSoundInfo() const; 0023 0024 private: 0025 LIBRUQOLAWIDGETS_NO_EXPORT void readConfig(); 0026 LIBRUQOLAWIDGETS_NO_EXPORT void writeConfig(); 0027 AdministratorCustomSoundsCreateWidget *const mCreateWidget; 0028 };