1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
/*
SPDX-FileCopyrightText: 2007 Till Adam <adam@kde.org>
SPDX-FileCopyrightText: 2008 Omat Holding B.V. <info@omat.nl>
SPDX-FileCopyrightText: 2009 Kevin Ottens <ervin@kde.org>
SPDX-FileCopyrightText: 2010 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
SPDX-FileContributor: Kevin Ottens <kevin@kdab.com>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#pragma once
#include "imapresourcebase.h"
class ImapResource : public ImapResourceBase
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.Akonadi.Imap.Resource")
public:
explicit ImapResource(const QString &id);
~ImapResource() override;
QDialog *createConfigureDialog(WId windowId) override;
protected:
QString defaultName() const override;
QByteArray clientId() const override;
private:
void onConfigurationDone(int result);
};
|