File indexing completed on 2024-05-19 05:04:04

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 "libruqolawidgets_private_export.h"
0010 #include <QDialog>
0011 class RocketChatAccount;
0012 class PlaySoundWidget;
0013 class LIBRUQOLAWIDGETS_TESTS_EXPORT PlaySoundDialog : public QDialog
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit PlaySoundDialog(RocketChatAccount *account, QWidget *parent = nullptr);
0018     ~PlaySoundDialog() override;
0019     void setAudioPath(const QString &url);
0020 
0021 private:
0022     LIBRUQOLAWIDGETS_NO_EXPORT void slotUpdateTitle(const QUrl &url);
0023     PlaySoundWidget *const mSoundWidget;
0024 };