emailuis/nmailui/src/nmviewerserviceinterface.cpp
changeset 18 578830873419
child 20 ecc8def7944a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/emailuis/nmailui/src/nmviewerserviceinterface.cpp	Fri Apr 16 14:51:52 2010 +0300
@@ -0,0 +1,109 @@
+/*
+ * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
+ * All rights reserved.
+ * This component and the accompanying materials are made available
+ * under the terms of "Eclipse Public License v1.0"
+ * which accompanies this distribution, and is available
+ * at the URL "http://www.eclipse.org/legal/epl-v10.html".
+ *
+ * Initial Contributors:
+ * Nokia Corporation - initial contribution.
+ *
+ * Contributors:
+ *
+ * Description: NMail application service interface used for viewing a mail
+ *              according to given id. The service utilizes the Qt highway framework.
+ */
+
+//  INCLUDES
+#include "nmuiheaders.h" // Includes also the class header.
+
+
+/*!
+    \class NmViewerServiceInterface
+    \brief A service interface for displaying the message according to given id.
+*/
+
+
+/*!
+    Class constructor.
+*/
+NmViewerServiceInterface::NmViewerServiceInterface(QObject *parent,
+        NmApplication *application,
+        NmUiEngine &uiEngine)
+#ifndef NM_WINS_ENV
+    : XQServiceProvider(QLatin1String("com.nokia.symbian.IEmailMessageView"), parent),
+#else
+    : QObject(parent),
+#endif
+      mApplication(application),
+      mUiEngine(uiEngine),
+      mAsyncReqId(0)
+{
+#ifndef NM_WINS_ENV
+    publishAll();
+#endif
+}
+
+
+/*!
+    Class desctructor.
+*/
+NmViewerServiceInterface::~NmViewerServiceInterface()
+{
+}
+
+
+/*!
+    Opens view to the specific message
+ */
+void NmViewerServiceInterface::viewMessage(QVariant mailboxId, QVariant folderId, QVariant messageId)
+{
+    NMLOG("NmViewerServiceInterface::viewMessage()");
+#ifndef NM_WINS_ENV
+    mAsyncReqId = setCurrentRequestAsync();
+
+    NmId mailboxNmId(mailboxId.toULongLong());
+    NmId messageNmId(messageId.toULongLong());
+    NmId folderNmId(folderId.toULongLong());
+
+    NmMessage *message = mUiEngine.message( mailboxNmId, folderNmId, messageNmId );
+    if (message) {
+        // bring application to foreground
+        XQServiceUtil::toBackground(false);
+
+        // Launch the message list view.
+        NmUiStartParam *startParam =
+            new NmUiStartParam(NmUiViewMessageViewer,
+                               mailboxNmId,
+                               folderNmId, // folder id
+                               messageNmId, // message id
+                               NmUiEditorCreateNew, // editor start mode
+                               NULL, // address list
+                               NULL, // attachment list
+                               true); // start as service
+        mApplication->enterNmUiView(startParam);
+
+        completeRequest(mAsyncReqId,0);
+    }
+    else {
+        // Message was not found
+
+        // if started as embedded, do not hide the app
+		if (!XQServiceUtil::isEmbedded()) {
+			XQServiceUtil::toBackground(true);
+		}
+
+        completeRequest(mAsyncReqId,1);
+
+        // Close the application if started as service
+        if (XQServiceUtil::isService()) {
+            // Exit the application when the return value is delivered
+            connect(this, SIGNAL(returnValueDelivered()),
+                    mApplication, SLOT(delayedExitApplication()));
+        }
+    }
+#endif
+}
+
+// End of file.