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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
/*
Copyright (c) 2009 Michael Leupold <lemma@confuego.org>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef MAILCOMMON_MDNADVICEDIALOG_H
#define MAILCOMMON_MDNADVICEDIALOG_H
#include "mailcommon_export.h"
#include <MessageComposer/MessageFactoryNG>
#include "mailcommon/mdnstateattribute.h"
#include <KMime/KMimeMessage>
#include <QDialog>
namespace MailCommon {
class MDNAdviceHelper : public QObject
{
Q_OBJECT
public:
static MDNAdviceHelper *instance()
{
if (!s_instance) {
s_instance = new MDNAdviceHelper;
}
return s_instance;
}
/**
* Checks the MDN headers to see if the user needs to be asked for any
* confirmations. Will ask the user if action is required.
*
* Returns whether to send an MDN or not, and the sending mode for the MDN
* to be created.
*
* Will also set the MailCommon::MDNStateAttribute on the given item
* to what the user has selected.
*/
Q_REQUIRED_RESULT QPair<bool, KMime::MDN::SendingMode> checkAndSetMDNInfo(
const Akonadi::Item &item, KMime::MDN::DispositionType d, bool forceSend = false);
Q_REQUIRED_RESULT MailCommon::MDNStateAttribute::MDNSentState dispositionToSentState(
KMime::MDN::DispositionType d);
private:
explicit MDNAdviceHelper(QObject *parent = nullptr)
: QObject(parent)
{
}
virtual ~MDNAdviceHelper()
{
}
int requestAdviceOnMDN(const char *what);
MessageComposer::MDNAdvice questionIgnoreSend(const QString &text, bool canDeny);
static MDNAdviceHelper *s_instance;
};
class MAILCOMMON_EXPORT MDNAdviceDialog : public QDialog
{
Q_OBJECT
public:
MDNAdviceDialog(const QString &text, bool canDeny, QWidget *parent = nullptr);
~MDNAdviceDialog();
MessageComposer::MDNAdvice result() const;
private:
void slotUser1Clicked();
void slotUser2Clicked();
void slotYesClicked();
MessageComposer::MDNAdvice m_result;
protected:
// Reimplemented
void slotButtonClicked(int button);
};
}
#endif
|