File indexing completed on 2024-05-12 16:27:16

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 #include "libruqolawidgets_private_export.h"
0009 #include "showimagewidget.h"
0010 #include <QDialog>
0011 class RocketChatAccount;
0012 class QMenu;
0013 class LIBRUQOLAWIDGETS_TESTS_EXPORT ShowImageDialog : public QDialog
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit ShowImageDialog(RocketChatAccount *account, QWidget *parent = nullptr);
0018     ~ShowImageDialog() override;
0019 
0020     void setImageInfo(const ShowImageWidget::ImageInfo &info);
0021 
0022 private:
0023     LIBRUQOLAWIDGETS_NO_EXPORT void readConfig();
0024     LIBRUQOLAWIDGETS_NO_EXPORT void writeConfig();
0025     ShowImageWidget *const mShowImageWidget;
0026     QMenu *const mClipboardMenu;
0027     QAction *mClipboardImageAction = nullptr;
0028 };