summaryrefslogtreecommitdiffstats
path: root/src/messaging/modestengine_maemo_p.h
diff options
context:
space:
mode:
authorMarko Minkkinen <marko.minkkinen@digia.com>2010-01-18 18:08:28 +0200
committerMarko Minkkinen <marko.minkkinen@digia.com>2010-01-18 18:08:28 +0200
commitcf1c7888e999b050f052ae2cb085c98036018b6d (patch)
treeaa2acd496d3087440286fd735416a205e097f553 /src/messaging/modestengine_maemo_p.h
parenteb8b12f0e385f2691377b412b05999f647b24274 (diff)
Initial version for Maemo messaging development
Diffstat (limited to 'src/messaging/modestengine_maemo_p.h')
-rw-r--r--src/messaging/modestengine_maemo_p.h87
1 files changed, 87 insertions, 0 deletions
diff --git a/src/messaging/modestengine_maemo_p.h b/src/messaging/modestengine_maemo_p.h
new file mode 100644
index 0000000000..c91a8290bc
--- /dev/null
+++ b/src/messaging/modestengine_maemo_p.h
@@ -0,0 +1,87 @@
+/****************************************************************************
+**
+** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the Qt Mobility Components.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**file:///home/maminkki/sbox/qtm-messaging/src/messaging/qmtmengine_symbian_p.h
+** 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, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef MODESTENGINE_MAEMO_H
+#define MODESTENGINE_MAEMO_H
+
+#include "qmessagemanager.h"
+#include "gconf/gconf-client.h"
+#include "libosso.h"
+
+QTM_BEGIN_NAMESPACE
+
+class QMessageService;
+
+class ModestEngine
+{
+public:
+ static ModestEngine* instance();
+
+ ModestEngine();
+ ~ModestEngine();
+
+ QMessageAccountIdList queryAccounts(const QMessageAccountFilter &filter, const QMessageAccountSortOrder &sortOrder,
+ uint limit, uint offset, bool &isFiltered, bool &isSorted) const;
+ int countAccounts(const QMessageAccountFilter &filter) const;
+ QMessageAccount account(const QMessageAccountId &id) const;
+ QMessageAccountId defaultAccount(QMessage::Type type) const;
+
+ bool queryMessages(QMessageService& messageService, const QMessageFilter &filter, const QMessageSortOrder &sortOrder, uint limit, uint offset) const;
+ bool queryMessages(QMessageService& messageService, const QMessageFilter &filter, const QString &body, QMessageDataComparator::MatchFlags matchFlags, const QMessageSortOrder &sortOrder, uint limit, uint offset) const;
+ bool countMessages(QMessageService& messageService, const QMessageFilter &filter);
+
+ bool sendEmail(QMessage &message);
+ bool composeEmail(const QMessage &message);
+
+private:
+ void updateEmailAccounts() const;
+
+private: //Data
+ GConfClient* m_gconfclient;
+
+ mutable QHash<QString, QMessageAccount> iAccounts;
+ mutable QMessageAccountId iDefaultEmailAccountId;
+};
+
+QTM_END_NAMESPACE
+
+#endif // MODESTENGINE_MAEMO_H
+