File indexing completed on 2024-05-12 05:23:47

0001 /*
0002    SPDX-FileCopyrightText: 2013-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QDialog>
0010 
0011 class MBoxImportWidget;
0012 class MBoxMainWindow : public QDialog
0013 {
0014     Q_OBJECT
0015 public:
0016     explicit MBoxMainWindow(const QString &filename, QWidget *parent = nullptr);
0017     ~MBoxMainWindow() override;
0018 
0019 private Q_SLOTS:
0020     void slotImportMBox();
0021 
0022 private:
0023     const QString mFileName;
0024     MBoxImportWidget *mImportWidget = nullptr;
0025 };