File indexing completed on 2024-12-15 04:47:01
0001 /* 0002 SPDX-FileCopyrightText: 2017-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include <ImportWizard/AbstractSettings> 0010 0011 class QSettings; 0012 0013 class GearySettings : public AbstractSettings 0014 { 0015 public: 0016 explicit GearySettings(const QString &filename); 0017 ~GearySettings() override; 0018 void importSettings(); 0019 0020 private: 0021 void readImapAccount(); 0022 void readIdentity(); 0023 void readGlobalSettings(); 0024 void readTransport(); 0025 QSettings *const settings; 0026 };