2009-06-30 11:51:05 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: sw=4 ts=4 et :
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Plugin App.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Chris Jones <jones.chris.g@gmail.com>
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2009-07-02 09:54:22 -07:00
|
|
|
#include "NPPInstanceChild.h"
|
|
|
|
|
2009-07-01 14:19:32 -07:00
|
|
|
#if defined(OS_LINUX)
|
|
|
|
|
2009-06-30 11:51:05 -07:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <gdk/gdkx.h>
|
|
|
|
#include <gdk/gdk.h>
|
|
|
|
#include "gtk2xtbin.h"
|
2009-07-01 14:19:32 -07:00
|
|
|
|
|
|
|
#elif defined(OS_WIN)
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
2009-07-02 09:54:22 -07:00
|
|
|
#endif
|
2009-06-30 11:51:05 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace plugins {
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static const char*
|
|
|
|
NPNVariableToString(NPNVariable aVar)
|
|
|
|
{
|
|
|
|
#define VARSTR(v_) case v_: return #v_
|
|
|
|
|
|
|
|
switch(aVar) {
|
|
|
|
VARSTR(NPNVxDisplay);
|
|
|
|
VARSTR(NPNVxtAppContext);
|
|
|
|
VARSTR(NPNVnetscapeWindow);
|
|
|
|
VARSTR(NPNVjavascriptEnabledBool);
|
|
|
|
VARSTR(NPNVasdEnabledBool);
|
|
|
|
VARSTR(NPNVisOfflineBool);
|
|
|
|
|
|
|
|
VARSTR(NPNVserviceManager);
|
|
|
|
VARSTR(NPNVDOMElement);
|
|
|
|
VARSTR(NPNVDOMWindow);
|
|
|
|
VARSTR(NPNVToolkit);
|
|
|
|
VARSTR(NPNVSupportsXEmbedBool);
|
|
|
|
|
|
|
|
VARSTR(NPNVWindowNPObject);
|
|
|
|
|
|
|
|
VARSTR(NPNVPluginElementNPObject);
|
|
|
|
|
|
|
|
VARSTR(NPNVSupportsWindowless);
|
|
|
|
|
|
|
|
VARSTR(NPNVprivateModeBool);
|
|
|
|
|
|
|
|
default: return "???";
|
|
|
|
}
|
|
|
|
#undef VARSTR
|
|
|
|
}
|
|
|
|
|
2009-07-01 14:19:32 -07:00
|
|
|
NPPInstanceChild::~NPPInstanceChild()
|
|
|
|
{
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
DestroyPluginWindow();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-06-30 11:51:05 -07:00
|
|
|
NPError
|
|
|
|
NPPInstanceChild::NPN_GetValue(NPNVariable aVar, void* aValue)
|
|
|
|
{
|
|
|
|
printf ("[NPPInstanceChild] NPN_GetValue(%s)\n",
|
|
|
|
NPNVariableToString(aVar));
|
|
|
|
|
|
|
|
switch(aVar) {
|
2009-07-02 09:54:22 -07:00
|
|
|
|
|
|
|
case NPNVSupportsWindowless:
|
2009-07-01 14:19:32 -07:00
|
|
|
// FIXME/cjones report true here and use XComposite + child
|
2009-07-02 09:54:22 -07:00
|
|
|
// surface to implement windowless plugins
|
2009-07-01 14:19:32 -07:00
|
|
|
*((NPBool*)aValue) = false;
|
2009-07-02 09:54:22 -07:00
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
|
|
|
|
#if defined(OS_LINUX)
|
2009-06-30 11:51:05 -07:00
|
|
|
case NPNVSupportsXEmbedBool:
|
2009-07-01 14:19:32 -07:00
|
|
|
*((NPBool*)aValue) = true;
|
2009-06-30 11:51:05 -07:00
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
|
|
|
|
case NPNVToolkit:
|
|
|
|
*((NPNToolkitType*)aValue) = NPNVGtk2;
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
|
2009-07-02 09:54:22 -07:00
|
|
|
#elif defined(OS_WIN)
|
|
|
|
case NPNVToolkit:
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
#endif
|
2009-06-30 11:51:05 -07:00
|
|
|
default:
|
|
|
|
printf(" unhandled var %s\n", NPNVariableToString(aVar));
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-07-02 09:54:22 -07:00
|
|
|
nsresult
|
2009-07-29 14:12:15 -07:00
|
|
|
NPPInstanceChild::AnswerNPP_GetValue(const nsString& key, nsString* value)
|
2009-07-02 09:54:22 -07:00
|
|
|
{
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
NPPInstanceChild::AnswerNPP_SetWindow(const NPWindow& aWindow, NPError* rv)
|
2009-06-30 11:51:05 -07:00
|
|
|
{
|
|
|
|
printf("[NPPInstanceChild] NPP_SetWindow(%lx, %d, %d)\n",
|
2009-07-02 09:54:22 -07:00
|
|
|
reinterpret_cast<unsigned long>(aWindow.window),
|
|
|
|
aWindow.width, aWindow.height);
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2009-07-02 09:54:22 -07:00
|
|
|
#if defined(OS_LINUX)
|
2009-06-30 11:51:05 -07:00
|
|
|
// XXX/cjones: the minimum info is sent over IPC to allow this
|
2009-07-02 09:54:22 -07:00
|
|
|
// code to determine the rest. this code is possibly wrong on
|
2009-06-30 11:51:05 -07:00
|
|
|
// some systems, in some conditions
|
|
|
|
|
2009-07-02 09:54:22 -07:00
|
|
|
GdkNativeWindow handle = (GdkNativeWindow) aWindow.window;
|
|
|
|
GdkWindow* gdkWindow = gdk_window_lookup(handle);
|
|
|
|
|
2009-06-30 11:51:05 -07:00
|
|
|
mWindow.window = (void*) handle;
|
2009-07-02 09:54:22 -07:00
|
|
|
mWindow.width = aWindow.width;
|
|
|
|
mWindow.height = aWindow.height;
|
2009-06-30 11:51:05 -07:00
|
|
|
mWindow.type = NPWindowTypeWindow;
|
|
|
|
|
2009-07-02 09:54:22 -07:00
|
|
|
mWsInfo.display = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2009-07-02 09:54:22 -07:00
|
|
|
// FIXME/cjones: the code below is correct, but apparently to get
|
|
|
|
// a valid GdkWindow*, one needs to create the gtk_plug. but if we
|
|
|
|
// do that, then the plugin can't plug in to plug. a hacky solution
|
|
|
|
// may be to create the plug, then create another socket within that
|
|
|
|
// plug. yuck.
|
|
|
|
#if 0
|
2009-06-30 11:51:05 -07:00
|
|
|
mWsInfo.display = GDK_WINDOW_XDISPLAY(gdkWindow);
|
2009-07-02 09:54:22 -07:00
|
|
|
mWsInfo.colormap =
|
|
|
|
GDK_COLORMAP_XCOLORMAP(gdk_drawable_get_colormap(gdkWindow));
|
2009-06-30 11:51:05 -07:00
|
|
|
GdkVisual* gdkVisual = gdk_drawable_get_visual(gdkWindow);
|
|
|
|
mWsInfo.visual = GDK_VISUAL_XVISUAL(gdkVisual);
|
|
|
|
mWsInfo.depth = gdkVisual->depth;
|
2009-07-02 09:54:22 -07:00
|
|
|
#endif
|
2009-06-30 11:51:05 -07:00
|
|
|
|
|
|
|
mWindow.ws_info = (void*) &mWsInfo;
|
|
|
|
|
2009-07-01 14:19:32 -07:00
|
|
|
*rv = mPluginIface->setwindow(&mData, &mWindow);
|
|
|
|
|
2009-07-02 09:54:22 -07:00
|
|
|
#elif defined(OS_WIN)
|
2009-07-01 14:19:32 -07:00
|
|
|
ReparentPluginWindow((HWND)aWindow.window);
|
|
|
|
SizePluginWindow(aWindow.width, aWindow.height);
|
|
|
|
|
|
|
|
mWindow.window = (void*)mPluginWindowHWND;
|
2009-07-02 09:54:22 -07:00
|
|
|
mWindow.width = aWindow.width;
|
|
|
|
mWindow.height = aWindow.height;
|
|
|
|
mWindow.type = NPWindowTypeWindow;
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2009-07-01 14:19:32 -07:00
|
|
|
*rv = mPluginIface->setwindow(&mData, &mWindow);
|
|
|
|
if (*rv == NPERR_NO_ERROR) {
|
|
|
|
WNDPROC wndProc = reinterpret_cast<WNDPROC>(
|
|
|
|
GetWindowLongPtr(mPluginWindowHWND, GWLP_WNDPROC));
|
|
|
|
if (wndProc != PluginWindowProc) {
|
|
|
|
mPluginWndProc = reinterpret_cast<WNDPROC>(
|
|
|
|
SetWindowLongPtr(mPluginWindowHWND, GWLP_WNDPROC,
|
|
|
|
reinterpret_cast<LONG>(PluginWindowProc)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-30 11:51:05 -07:00
|
|
|
#else
|
|
|
|
# error Implement me for your OS
|
|
|
|
#endif
|
2009-07-02 09:54:22 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
2009-06-30 11:51:05 -07:00
|
|
|
}
|
|
|
|
|
2009-07-01 14:19:32 -07:00
|
|
|
bool
|
|
|
|
NPPInstanceChild::Initialize()
|
|
|
|
{
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
if (!CreatePluginWindow())
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
|
|
|
|
static const TCHAR kWindowClassName[] = TEXT("GeckoPluginWindow");
|
|
|
|
static const TCHAR kNPPInstanceChildProperty[] = TEXT("NPPInstanceChildProperty");
|
|
|
|
|
|
|
|
// static
|
|
|
|
bool
|
|
|
|
NPPInstanceChild::RegisterWindowClass()
|
|
|
|
{
|
|
|
|
static bool alreadyRegistered = false;
|
|
|
|
if (alreadyRegistered)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
alreadyRegistered = true;
|
|
|
|
|
|
|
|
WNDCLASSEX wcex;
|
|
|
|
wcex.cbSize = sizeof(WNDCLASSEX);
|
|
|
|
wcex.style = CS_DBLCLKS;
|
|
|
|
wcex.lpfnWndProc = DummyWindowProc;
|
|
|
|
wcex.cbClsExtra = 0;
|
|
|
|
wcex.cbWndExtra = 0;
|
|
|
|
wcex.hInstance = GetModuleHandle(NULL);
|
|
|
|
wcex.hIcon = 0;
|
|
|
|
wcex.hCursor = 0;
|
2009-07-02 13:48:33 -07:00
|
|
|
wcex.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_WINDOW + 1);
|
2009-07-01 14:19:32 -07:00
|
|
|
wcex.lpszMenuName = 0;
|
|
|
|
wcex.lpszClassName = kWindowClassName;
|
|
|
|
wcex.hIconSm = 0;
|
|
|
|
|
|
|
|
return RegisterClassEx(&wcex) ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
NPPInstanceChild::CreatePluginWindow()
|
|
|
|
{
|
|
|
|
if (!RegisterWindowClass())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!mPluginWindowHWND) {
|
|
|
|
mPluginWindowHWND =
|
|
|
|
CreateWindowEx(WS_EX_LEFT | WS_EX_LTRREADING |
|
|
|
|
WS_EX_NOPARENTNOTIFY | // XXXbent Get rid of this!
|
|
|
|
WS_EX_RIGHTSCROLLBAR,
|
|
|
|
kWindowClassName, 0,
|
|
|
|
WS_POPUP | WS_CLIPCHILDREN | WS_CLIPSIBLINGS, 0, 0,
|
|
|
|
0, 0, NULL, 0, GetModuleHandle(NULL), 0);
|
|
|
|
if (!mPluginWindowHWND)
|
|
|
|
return false;
|
|
|
|
if (!SetProp(mPluginWindowHWND, kNPPInstanceChildProperty, this))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Apparently some plugins require an ASCII WndProc.
|
|
|
|
SetWindowLongPtrA(mPluginWindowHWND, GWLP_WNDPROC,
|
|
|
|
reinterpret_cast<LONG>(DefWindowProcA));
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
NPPInstanceChild::DestroyPluginWindow()
|
|
|
|
{
|
|
|
|
if (mPluginWindowHWND) {
|
|
|
|
// Unsubclass the window.
|
|
|
|
WNDPROC wndProc = reinterpret_cast<WNDPROC>(
|
|
|
|
GetWindowLongPtr(mPluginWindowHWND, GWLP_WNDPROC));
|
|
|
|
if (wndProc == PluginWindowProc) {
|
|
|
|
NS_ASSERTION(mPluginWndProc, "Should have old proc here!");
|
|
|
|
SetWindowLongPtr(mPluginWindowHWND, GWLP_WNDPROC,
|
|
|
|
reinterpret_cast<LONG>(mPluginWndProc));
|
|
|
|
mPluginWndProc = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
RemoveProp(mPluginWindowHWND, kNPPInstanceChildProperty);
|
|
|
|
DestroyWindow(mPluginWindowHWND);
|
|
|
|
mPluginWindowHWND = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
NPPInstanceChild::ReparentPluginWindow(HWND hWndParent)
|
|
|
|
{
|
|
|
|
if (hWndParent != mPluginParentHWND && IsWindow(hWndParent)) {
|
|
|
|
LONG style = GetWindowLongPtr(mPluginWindowHWND, GWL_STYLE);
|
|
|
|
style |= WS_CHILD | WS_CLIPCHILDREN | WS_CLIPSIBLINGS;
|
|
|
|
SetWindowLongPtr(mPluginWindowHWND, GWL_STYLE, style);
|
|
|
|
SetParent(mPluginWindowHWND, hWndParent);
|
|
|
|
ShowWindow(mPluginWindowHWND, SW_SHOWNA);
|
|
|
|
}
|
|
|
|
mPluginParentHWND = hWndParent;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
NPPInstanceChild::SizePluginWindow(int width,
|
|
|
|
int height)
|
|
|
|
{
|
|
|
|
if (mPluginWindowHWND) {
|
|
|
|
SetWindowPos(mPluginWindowHWND, NULL, 0, 0, width, height,
|
|
|
|
SWP_NOZORDER | SWP_NOREPOSITION);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// See chromium's webplugin_delegate_impl.cc for explanation of this function.
|
|
|
|
// static
|
|
|
|
LRESULT CALLBACK
|
|
|
|
NPPInstanceChild::DummyWindowProc(HWND hWnd,
|
|
|
|
UINT message,
|
|
|
|
WPARAM wParam,
|
|
|
|
LPARAM lParam)
|
|
|
|
{
|
|
|
|
return CallWindowProc(DefWindowProc, hWnd, message, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
LRESULT CALLBACK
|
|
|
|
NPPInstanceChild::PluginWindowProc(HWND hWnd,
|
|
|
|
UINT message,
|
|
|
|
WPARAM wParam,
|
|
|
|
LPARAM lParam)
|
|
|
|
{
|
|
|
|
NPPInstanceChild* self = reinterpret_cast<NPPInstanceChild*>(
|
|
|
|
GetProp(hWnd, kNPPInstanceChildProperty));
|
|
|
|
if (!self) {
|
|
|
|
NS_NOTREACHED("Badness!");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ASSERTION(self->mPluginWindowHWND == hWnd, "Wrong window!");
|
|
|
|
|
|
|
|
LRESULT res = CallWindowProc(self->mPluginWndProc, hWnd, message, wParam,
|
|
|
|
lParam);
|
|
|
|
|
|
|
|
if (message == WM_CLOSE)
|
|
|
|
self->DestroyPluginWindow();
|
|
|
|
|
|
|
|
if (message == WM_NCDESTROY)
|
|
|
|
RemoveProp(hWnd, kNPPInstanceChildProperty);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // OS_WIN
|
|
|
|
|
2009-06-30 11:51:05 -07:00
|
|
|
} // namespace plugins
|
|
|
|
} // namespace mozilla
|