datacommsserver/networkingdialogapi/agentnotifier/inc/agentshellnotifier.h
changeset 0 dfb7c4ff071f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/datacommsserver/networkingdialogapi/agentnotifier/inc/agentshellnotifier.h	Thu Dec 17 09:22:25 2009 +0200
@@ -0,0 +1,105 @@
+// Copyright (c) 2003-2009 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:
+//
+
+#ifndef AGENTSHELLNOTIFIER_H
+#define AGENTSHELLNOTIFIER_H
+
+#include <e32std.h>
+#include <e32base.h>
+#include <twintnotifier.h>
+#include "agentnotifierdefs.h"
+#include <comms-infras/commsdebugutility.h>
+
+
+const TInt KMaxDeviceRows=6;
+
+IMPORT_C CArrayPtr<MNotifierBase2>* NotifierArray();
+
+class CAgentDialogUpdate : public CActive
+	{
+public:
+	//	Construction
+	static CAgentDialogUpdate* NewL(const RMessagePtr2& aMessage);
+	~CAgentDialogUpdate();
+	
+	void Update(const RMessagePtr2& aMessage);
+	
+	//From CActive
+	void DoCancel();
+	void RunL();
+
+private:
+	//	Construction
+	void ConstructL(const RMessagePtr2& aMessage);
+	CAgentDialogUpdate(const RMessagePtr2& aMessage);
+
+	TUid iServiceUid;
+	CConsoleBase* iConsole;
+	RMessagePtr2 iMessagePtr;
+	__FLOG_DECLARATION_MEMBER;
+	};
+
+class CAgentShellNotifier : public MNotifierBase2, public CBase
+	{
+public:
+
+	//	Construction
+	static CAgentShellNotifier* NewL();
+	~CAgentShellNotifier();
+
+	//	From MNotifierBase
+	/**
+	 * Called when all resources allocated by notifiers should be freed.
+	 */
+	virtual void Release();
+	/**
+	 * Called when a notifier is first loaded to allow any initial construction that is required.
+	 */
+	virtual TNotifierInfo RegisterL();
+	/**
+	 * Return the priority a notifier takes and the channels it acts on.  The return value may be varied 
+	 * at run-time.
+	 */
+	virtual TNotifierInfo Info() const;
+	/**
+	 * Start the notifier with data aBuffer and return an initial response.
+	 */
+	virtual TPtrC8 StartL(const TDesC8& aBuffer);
+	/**
+	 * Start the notifier with data aBuffer.  aMessage should be completed when the notifier is deactivated.
+	 * May be called multiple times if more than one client starts the notifier.  The notifier is immediately
+	 * responsible for completing aMessage.
+	 */
+	virtual void StartL(const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage);
+	/**
+	 * The notifier has been deactivated so resources can be freed and outstanding messages completed.
+	 */
+	virtual void Cancel();
+	/**
+	 * Update a currently active notifier with data aBuffer.
+	 */
+	virtual TPtrC8 UpdateL(const TDesC8& aBuffer);
+	
+
+private:
+	void ConstructL();
+	
+	TNotifierInfo iInfo;
+	CAgentDialogUpdate* iAgentShellDialog;
+	};
+
+#endif
+
+