summaryrefslogtreecommitdiffstats
path: root/examples/qtmail/emailcomposer.h
diff options
context:
space:
mode:
authorRobin Burchell <robin+git@viroteck.net>2014-02-03 16:55:05 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-03 16:58:57 +0100
commitcc24f4f33e6342b3d95a8988f904073e2f6f3b32 (patch)
tree0a21f172723a375f3df38db694c015ab3265fba3 /examples/qtmail/emailcomposer.h
parenteef36ce2e30e6e1c60f527eed54f3abae21ecfb9 (diff)
Restore compilation of qtmail example.
Change-Id: Id59253e1d121ab0dfcdb59f7018b897f6c1df086 Reviewed-by: Robin Burchell <robin+qt@viroteck.net>
Diffstat (limited to 'examples/qtmail/emailcomposer.h')
-rw-r--r--examples/qtmail/emailcomposer.h131
1 files changed, 131 insertions, 0 deletions
diff --git a/examples/qtmail/emailcomposer.h b/examples/qtmail/emailcomposer.h
new file mode 100644
index 00000000..ffb4d529
--- /dev/null
+++ b/examples/qtmail/emailcomposer.h
@@ -0,0 +1,131 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt Messaging Framework.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3.0 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 3.0 requirements will be
+** met: http://www.gnu.org/copyleft/gpl.html.
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef EMAILCOMPOSER_H
+#define EMAILCOMPOSER_H
+
+#include <QList>
+#include <qmailcomposer.h>
+
+class AddAttDialog;
+class BodyTextEdit;
+class RecipientListWidget;
+class AttachmentListWidget;
+class DetailsPage;
+
+QT_BEGIN_NAMESPACE
+
+class QLabel;
+class QLineEdit;
+class QStackedWidget;
+class QTextEdit;
+
+QT_END_NAMESPACE
+
+class EmailComposerInterface : public QMailComposerInterface
+{
+ Q_OBJECT
+
+public:
+ EmailComposerInterface( QWidget *parent = 0 );
+ virtual ~EmailComposerInterface();
+
+ bool isEmpty() const;
+ QMailMessage message() const;
+
+ bool isReadyToSend() const;
+ QString title() const;
+
+ virtual QString key() const;
+ virtual QList<QMailMessage::MessageType> messageTypes() const;
+ virtual QList<QMailMessage::ContentType> contentTypes() const;
+ virtual QString name(QMailMessage::MessageType type) const;
+ virtual QString displayName(QMailMessage::MessageType type) const;
+ virtual QIcon displayIcon(QMailMessage::MessageType type) const;
+
+ void compose(QMailMessage::ResponseType type, const QMailMessage& source, const QMailMessagePart::Location& sourceLocation, QMailMessage::MessageType messageType);
+
+ QList<QAction*> actions() const;
+ QString status() const;
+ static QString quotePrefix();
+
+public slots:
+ void clear();
+ void setSignature(const QString &sig);
+ void setSendingAccountId(const QMailAccountId &accountId);
+
+protected slots:
+ void selectAttachment();
+ void updateLabel();
+ void setCursorPosition();
+
+private:
+ void init();
+ void create(const QMailMessage& source);
+ void respond(QMailMessage::ResponseType type, const QMailMessage& source, const QMailMessagePart::Location& partLocation);
+ void setPlainText( const QString& text, const QString& signature );
+ void getDetails(QMailMessage& message) const;
+ void setDetails(const QMailMessage& message);
+
+private:
+ AddAttDialog *m_addAttDialog;
+ int m_cursorIndex;
+ QWidget* m_composerWidget;
+ BodyTextEdit* m_bodyEdit;
+ QLabel* m_forwardLabel;
+ QTextEdit* m_forwardEdit;
+ QLabel* m_attachmentsLabel;
+ QStackedWidget* m_widgetStack;
+ QAction* m_attachmentAction;
+ RecipientListWidget* m_recipientListWidget;
+ AttachmentListWidget* m_attachmentListWidget;
+ QLineEdit* m_subjectEdit;
+ QString m_signature;
+ QString m_title;
+ QLabel* m_columnLabel;
+ QLabel* m_rowLabel;
+ QStringList m_temporaries;
+ QMailAccountId m_accountId;
+ quint64 m_sourceStatus;
+};
+
+#endif
+