1 //::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
5 // This file defines a "shell" plugin that plugin developers can use
6 // as the basis for a real plugin. This shell just provides empty
7 // implementations of all functions that the plugin can implement
8 // that will be called by Netscape (the NPP_xxx methods defined in
11 //::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
24 // Instance state information about the plugin.
26 // *Developers*: Use this struct to hold per-instance
27 // information that you'll need in the
28 // various functions in this file.
30 typedef struct _PluginInstance
39 //------------------------------------------------------------------------------------
41 //------------------------------------------------------------------------------------
42 NPError
NPP_Initialize(void)
44 // MessageBox(NULL, "NPP_Initialize", "NPTest", MB_OK);
46 wxPluginApp
*app
= wxGetPluginApp();
48 return app
->NPP_Initialize();
50 return NPERR_NO_ERROR
;
54 //------------------------------------------------------------------------------------
56 //------------------------------------------------------------------------------------
57 void NPP_Shutdown(void)
59 // MessageBox(NULL, "NPP_Shutdown", "wxPlugin", MB_OK);
61 wxPluginApp
*app
= wxGetPluginApp();
67 //------------------------------------------------------------------------------------
69 //------------------------------------------------------------------------------------
71 NPP_New(NPMIMEType pluginType
,
79 // MessageBox(NULL, "NPP_New", "NPTest", MB_OK);
82 return NPERR_INVALID_INSTANCE_ERROR
;
84 wxPluginApp
*app
= wxGetPluginApp();
86 return app
->NPP_New(pluginType
, instance
, mode
, argc
, argn
, argv
, saved
);
88 return NPERR_NO_ERROR
;
91 //------------------------------------------------------------------------------------
93 //------------------------------------------------------------------------------------
95 NPP_Destroy(NPP instance
, NPSavedData
** save
)
97 // MessageBox(NULL, "NPP_Destroy", "NPTest", MB_OK);
100 return NPERR_INVALID_INSTANCE_ERROR
;
102 wxPluginApp
*app
= wxGetPluginApp();
104 return app
->NPP_Destroy(instance
, save
);
106 return NPERR_NO_ERROR
;
110 //------------------------------------------------------------------------------------
112 //------------------------------------------------------------------------------------
114 NPP_SetWindow(NPP instance
, NPWindow
* window
)
116 // MessageBox(NULL, "NPP_SetWindow", "NPTest", MB_OK);
118 if (instance
== NULL
)
119 return NPERR_INVALID_INSTANCE_ERROR
;
121 wxPluginApp
*app
= wxGetPluginApp();
123 return app
->NPP_SetWindow(instance
, window
);
125 return NPERR_NO_ERROR
;
129 //------------------------------------------------------------------------------------
131 //------------------------------------------------------------------------------------
133 NPP_NewStream(NPP instance
,
139 // MessageBox(NULL, "NPP_NewStream", "NPTest", MB_OK);
141 if (instance
== NULL
)
142 return NPERR_INVALID_INSTANCE_ERROR
;
144 wxPluginApp
*app
= wxGetPluginApp();
146 return app
->NPP_NewStream(instance
, type
, stream
, seekable
, stype
);
148 return NPERR_NO_ERROR
;
155 // These next 2 functions are directly relevant in a plug-in which handles the
156 // data in a streaming manner. If you want zero bytes because no buffer space
157 // is YET available, return 0. As long as the stream has not been written
158 // to the plugin, Navigator will continue trying to send bytes. If the plugin
159 // doesn't want them, just return some large number from NPP_WriteReady(), and
160 // ignore them in NPP_Write(). For a NP_ASFILE stream, they are still called
161 // but can safely be ignored using this strategy.
164 static int32 STREAMBUFSIZE
= 0X0FFFFFFF; // If we are reading from a file in NPAsFile
165 // mode so we can take any size stream in our
166 // write call (since we ignore it)
168 //------------------------------------------------------------------------------------
170 //------------------------------------------------------------------------------------
172 NPP_WriteReady(NPP instance
, NPStream
*stream
)
174 wxPluginApp
*app
= wxGetPluginApp();
176 return app
->NPP_WriteReady(instance
, stream
);
178 return STREAMBUFSIZE
;
180 return STREAMBUFSIZE
; // Number of bytes ready to accept in NPP_Write()
185 //------------------------------------------------------------------------------------
187 //------------------------------------------------------------------------------------
189 NPP_Write(NPP instance
, NPStream
*stream
, int32 offset
, int32 len
, void *buffer
)
191 wxPluginApp
*app
= wxGetPluginApp();
193 return app
->NPP_Write(instance
, stream
, offset
, len
, buffer
);
195 return len
; // The number of bytes accepted
200 //------------------------------------------------------------------------------------
201 // NPP_DestroyStream:
202 //------------------------------------------------------------------------------------
204 NPP_DestroyStream(NPP instance
, NPStream
*stream
, NPError reason
)
206 if (instance
== NULL
)
207 return NPERR_INVALID_INSTANCE_ERROR
;
209 wxPluginApp
*app
= wxGetPluginApp();
211 return app
->NPP_DestroyStream(instance
, stream
, reason
);
213 return NPERR_NO_ERROR
;
217 //------------------------------------------------------------------------------------
219 //------------------------------------------------------------------------------------
221 NPP_StreamAsFile(NPP instance
, NPStream
*stream
, const char* fname
)
223 wxPluginApp
*app
= wxGetPluginApp();
225 app
->NPP_StreamAsFile(instance
, stream
, fname
);
230 //------------------------------------------------------------------------------------
232 //------------------------------------------------------------------------------------
234 NPP_Print(NPP instance
, NPPrint
* printInfo
)
236 if (printInfo
== NULL
) // trap invalid parm
238 if ( instance
== NULL
)
241 wxPluginApp
*app
= wxGetPluginApp();
243 app
->NPP_Print(instance
, printInfo
);
247 //------------------------------------------------------------------------------------
250 //------------------------------------------------------------------------------------
251 int16
NPP_HandleEvent(NPP instance
, void* event
)
253 NPBool eventHandled
= FALSE
;
254 if (instance
== NULL
)
257 PluginInstance
* This
= (PluginInstance
*) instance
->pdata
;
260 // *Developers*: The "event" passed in is a Macintosh
261 // EventRecord*. The event.what field can be any of the
262 // normal Mac event types, or one of the following additional
263 // types defined in npapi.h: getFocusEvent, loseFocusEvent,
264 // adjustCursorEvent. The focus events inform your plugin
265 // that it will become, or is no longer, the recepient of
266 // key events. If your plugin doesn't want to receive key
267 // events, return false when passed at getFocusEvent. The
268 // adjustCursorEvent is passed repeatedly when the mouse is
269 // over your plugin; if your plugin doesn't want to set the
270 // cursor, return false. Handle the standard Mac events as
271 // normal. The return value for all standard events is currently
272 // ignored except for the key event: for key events, only return
273 // true if your plugin has handled that particular key event.