webengine/osswebengine/WebKit/s60/plugins/NpnImplementation.h
changeset 0 dd21522fd290
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/webengine/osswebengine/WebKit/s60/plugins/NpnImplementation.h	Mon Mar 30 12:54:55 2009 +0300
@@ -0,0 +1,150 @@
+/*
+* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "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:  Thin wrapper around plugin's function table.
+*
+*/
+
+
+#ifndef NPNIMPLEMENTATION_H
+#define NPNIMPLEMENTATION_H
+
+ // INCLUDE FILES
+#include <e32std.h>
+#include <e32base.h>
+//#include <eikenv.h>
+#include <npupp.h>
+//#include <sysutil.h>
+
+
+
+//#define PLUGIN_DEBUG
+//#ifdef PLUGIN_DEBUG
+//#include <flogger.h>
+//#endif
+
+
+
+NPError NpnUrlLoader(NPP aInstance, const TDesC& aUrl, 
+        TUint8 aMethod, const TDesC* aWindowType, const TDesC& aBuf,
+        TBool aFromFile, TBool aNotify, void* aNotifyData);
+
+
+NPError NpnGetUrl(NPP aInstance, const TDesC& aUrl, 
+        const TDesC* aWindowType);
+
+
+NPError NpnPostUrl(NPP aInstance, const TDesC& aUrl, 
+        const TDesC* aWindowType, const TDesC& aBuf, NPBool aFile);
+
+
+NPError NpnRequestRead(NPStream* /*aStream*/, 
+        NPByteRange* /*aRangeList*/);
+
+
+NPError NpnNewStream(NPP /*aInstance*/, NPMIMEType /*aType*/, 
+        const TDesC* /*aWindowType*/, NPStream** /*aStream*/);
+
+
+TInt32 NpnWrite(NPP /*aInstance*/, NPStream* /*aStream*/, 
+        TInt32 /*aLen*/, void* /*aBuffer*/);
+
+
+NPError NpnDestroyStream(NPP /*aInstance*/, 
+        NPStream* /*aStream*/, NPReason /*aReason*/);
+
+
+void NpnStatus(NPP /*aInstance*/, const TDesC& aMessage);
+
+
+const TDesC* NpnUAgent(NPP /*aInstance*/);
+
+
+void* NpnMemAlloc(uint32 aSize);
+
+
+void NpnMemFree(void* aPtr);
+
+
+uint32 NpnMemFlush(uint32 /*aSize*/);
+
+
+void NpnReloadPlugins(NPBool aReloadPages);
+
+
+JRIEnv* NpnGetJavaEnv();
+
+
+jref NpnGetJavaPeer(NPP /*aInstance*/);
+
+
+NPError NpnGetUrlNotify(NPP aInstance, const TDesC& aUrl, 
+        const TDesC* aWindowType, void* aNotifyData);
+
+
+NPError NpnPostUrlNotify(NPP aInstance, const TDesC& aUrl, 
+        const TDesC* aWindowType, const TDesC& aBuf, NPBool aFile, void* aNotifyData);
+
+
+NPError NpnGetValue(NPP aInstance, NPNVariable aVariable, void *aRetValue);
+
+
+NPError NpnSetValue(NPP aInstance, NPPVariable aVariable, void *aSetValue);
+
+
+void NpnInvalidateRect(NPP /*aInstance*/, NPRect * /*aRect*/);
+
+
+void NpnInvalidateRegion(NPP /*aInstance*/, NPRegion /*aRegion*/);
+
+
+void NpnForceRedraw(NPP /*aInstance*/);
+
+
+   
+// -----------------------------------------------------------------------------
+// PluginNpnFuncs
+//
+// A const global variable used to hold the browser callback functions.
+// -----------------------------------------------------------------------------
+//
+const NPNetscapeFuncs NpnImplementationFuncs =
+    {
+    sizeof(NPNetscapeFuncs),
+    2, // NPAPI Version
+    NpnGetUrl,
+    NpnPostUrl,
+    NpnRequestRead,
+    NpnNewStream,
+    NpnWrite,
+    NpnDestroyStream,
+    NpnStatus,
+    NpnUAgent,
+    NpnMemAlloc,
+    NpnMemFree,
+    NpnMemFlush,
+    NpnReloadPlugins,
+    NpnGetJavaEnv,
+    NpnGetJavaPeer,
+    NpnGetUrlNotify,
+    NpnPostUrlNotify,
+    NpnGetValue,
+    NpnSetValue,
+    NpnInvalidateRect,
+    NpnInvalidateRegion,
+    NpnForceRedraw
+    };
+    
+
+
+#endif