File indexing completed on 2024-12-22 05:00:50
0001 /* 0002 SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 #include <MailCommon/BackupJob> 0009 0010 #include <QComboBox> 0011 0012 class FormatComboBox : public QComboBox 0013 { 0014 Q_OBJECT 0015 public: 0016 explicit FormatComboBox(QWidget *parent = nullptr); 0017 ~FormatComboBox() override; 0018 0019 [[nodiscard]] MailCommon::BackupJob::ArchiveType format() const; 0020 void setFormat(MailCommon::BackupJob::ArchiveType type); 0021 };