emailuis/nmailui/inc/nmuriserviceinterface.h
changeset 43 99bcbff212ad
child 47 f83bd4ae1fe3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/emailuis/nmailui/inc/nmuriserviceinterface.h	Fri May 28 13:56:43 2010 +0300
@@ -0,0 +1,81 @@
+/*
+* 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 interfacing between
+*              QT highway and other applications
+*
+*/
+
+#ifndef NMURISERVICEINTERFACE_H_
+#define NMURISERVICEINTERFACE_H_
+
+//  INCLUDES
+#include <QObject>
+#include <QVariant>
+
+#ifdef Q_OS_SYMBIAN
+#include <xqserviceprovider.h>
+#else
+#define NM_WINS_ENV
+#endif
+
+//  FORWARD DECLARATIONS
+class NmDataManager;
+class NmMailboxListModel;
+class NmUiEngine;
+class NmApplication;
+class NmUiStartParam;
+class NmMailboxSelectionDialog;
+class NmId;
+class HbView;
+class NmAddress;
+
+class NmUriServiceInterface
+#ifndef NM_WINS_ENV
+    : public XQServiceProvider
+#else
+    : public QObject
+#endif
+{
+    Q_OBJECT
+
+public:
+
+    NmUriServiceInterface( QObject *parent,
+                           NmUiEngine &mailboxListModel,
+                           NmApplication* application);
+    virtual ~NmUriServiceInterface();
+
+public slots:
+
+    bool view(const QString& uri);
+    void selectionDialogClosed(NmId &mailboxId);
+
+private:
+
+    void launchEditorView(NmId mailboxId);
+    void cancelService();
+
+private: // Data
+
+    NmApplication *mApplication; // Not owned
+    NmUiEngine &mUiEngine;
+    int mAsyncReqId;
+    NmUiStartParam *mStartParam;
+    NmMailboxSelectionDialog *mSelectionDialog;
+    HbView *mCurrentView;
+};
+
+#endif /* NMURISERVICEINTERFACE_H_ */
+
+// End of file.