2000-08-10 01:33:35 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2003-04-12 21:40:35 +00:00
|
|
|
*
|
2000-08-10 01:33:35 +00:00
|
|
|
* 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 RaptorCanvas.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Kirk Baker and
|
|
|
|
* Ian Wilkinson. Portions created by Kirk Baker and Ian Wilkinson are
|
|
|
|
* Copyright (C) 1999 Kirk Baker and Ian Wilkinson. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s): Glenn Barney <gbarney@uiuc.edu>
|
2003-04-12 21:40:35 +00:00
|
|
|
* Ron Capelli <capelli@us.ibm.com>
|
2000-08-10 01:33:35 +00:00
|
|
|
*/
|
2003-04-12 21:40:35 +00:00
|
|
|
|
2000-08-10 01:33:35 +00:00
|
|
|
#include "WindowControlImpl.h"
|
|
|
|
#include <windows.h>
|
|
|
|
#include <jni.h>
|
|
|
|
#include "ie_util.h"
|
|
|
|
#include "ie_globals.h"
|
|
|
|
|
2000-08-17 19:54:43 +00:00
|
|
|
#include "CMyDialog.h"
|
2000-08-10 01:33:35 +00:00
|
|
|
|
2003-04-12 21:40:35 +00:00
|
|
|
|
|
|
|
JNIEXPORT void JNICALL
|
2000-08-10 01:33:35 +00:00
|
|
|
Java_org_mozilla_webclient_wrapper_1native_WindowControlImpl_nativeSetBounds
|
|
|
|
(JNIEnv *env, jobject obj, jint webShellPtr, jint x, jint y, jint w, jint h)
|
|
|
|
{
|
|
|
|
|
|
|
|
WebShellInitContext * initContext = (WebShellInitContext *) webShellPtr;
|
2003-04-12 21:40:35 +00:00
|
|
|
|
2000-08-10 01:33:35 +00:00
|
|
|
if (initContext == NULL) {
|
|
|
|
::util_ThrowExceptionToJava(env, "Exception: null Ptr passed to nativeSetBounds");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
initContext->x = x;
|
|
|
|
initContext->y = y;
|
|
|
|
initContext->w = w;
|
|
|
|
initContext->h = h;
|
|
|
|
|
|
|
|
HRESULT hr = PostMessage(initContext->browserHost, WM_RESIZE, 0, 0);
|
|
|
|
}
|
|
|
|
|
2003-04-12 21:40:35 +00:00
|
|
|
|
2000-08-10 01:33:35 +00:00
|
|
|
JNIEXPORT jint JNICALL Java_org_mozilla_webclient_wrapper_1native_WindowControlImpl_nativeCreateInitContext
|
2003-04-12 21:40:35 +00:00
|
|
|
(JNIEnv *env, jobject obj, jint windowPtr, jint x, jint y,
|
2000-08-10 01:33:35 +00:00
|
|
|
jint width, jint height, jobject aBrowserControlImpl)
|
|
|
|
{
|
|
|
|
HWND parentHWnd = (HWND)windowPtr;
|
|
|
|
|
|
|
|
if (parentHWnd == NULL) {
|
|
|
|
::util_ThrowExceptionToJava(env, "Exception: null window handle passed to raptorWebShellCreate");
|
|
|
|
return (jint) 0;
|
|
|
|
}
|
|
|
|
|
2003-04-12 21:40:35 +00:00
|
|
|
// save vm reference, declared in ../src_share/jni_util.h
|
|
|
|
if (nsnull == gVm)
|
|
|
|
::util_GetJavaVM(env, &gVm);
|
|
|
|
|
2000-08-10 01:33:35 +00:00
|
|
|
WebShellInitContext* initContext = new WebShellInitContext;
|
|
|
|
|
|
|
|
initContext->initComplete = FALSE;
|
|
|
|
initContext->initFailCode = 0;
|
|
|
|
initContext->parentHWnd = parentHWnd;
|
2003-04-12 21:40:35 +00:00
|
|
|
initContext->wcharURL=NULL;
|
2000-08-10 01:33:35 +00:00
|
|
|
initContext->env = env;
|
|
|
|
initContext->nativeEventThread = NULL;
|
|
|
|
|
|
|
|
initContext->x = x;
|
|
|
|
initContext->y = y;
|
|
|
|
initContext->w = width;
|
|
|
|
initContext->h = height;
|
|
|
|
|
2000-08-17 19:54:43 +00:00
|
|
|
initContext->browserObject = new CMyDialog(initContext);
|
|
|
|
|
2000-08-10 01:33:35 +00:00
|
|
|
return (jint) initContext;
|
|
|
|
}
|
|
|
|
|
2003-04-12 21:40:35 +00:00
|
|
|
|
|
|
|
JNIEXPORT void JNICALL
|
2000-08-10 01:33:35 +00:00
|
|
|
Java_org_mozilla_webclient_wrapper_1native_WindowControlImpl_nativeDestroyInitContext
|
|
|
|
(JNIEnv *env, jobject obj, jint webShellPtr)
|
|
|
|
{
|
2003-04-12 21:40:35 +00:00
|
|
|
WebShellInitContext* initContext = (WebShellInitContext *) webShellPtr;
|
|
|
|
|
|
|
|
if (initContext == NULL) {
|
|
|
|
::util_ThrowExceptionToJava(env, "Exception: null webShellPtr passed to nativeDestroyInitContext");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
initContext->parentHWnd = NULL;
|
|
|
|
|
|
|
|
initContext->env = NULL;
|
|
|
|
initContext->wcharURL = NULL;
|
|
|
|
|
|
|
|
if (NULL != initContext->nativeEventThread) {
|
|
|
|
::util_DeleteGlobalRef(env, initContext->nativeEventThread);
|
2000-08-10 01:33:35 +00:00
|
|
|
initContext->nativeEventThread = NULL;
|
|
|
|
}
|
2003-04-12 21:40:35 +00:00
|
|
|
|
2000-08-10 01:33:35 +00:00
|
|
|
initContext->initComplete = FALSE;
|
|
|
|
initContext->initFailCode = 0;
|
|
|
|
initContext->x = -1;
|
|
|
|
initContext->y = -1;
|
|
|
|
initContext->w = -1;
|
2003-04-12 21:40:35 +00:00
|
|
|
initContext->h = -1;
|
2000-08-10 01:33:35 +00:00
|
|
|
|
2000-08-17 19:54:43 +00:00
|
|
|
delete initContext->browserObject;
|
|
|
|
initContext->browserObject = NULL;
|
|
|
|
|
2000-08-10 01:33:35 +00:00
|
|
|
delete initContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
JNIEXPORT void JNICALL Java_org_mozilla_webclient_wrapper_1native_WindowControlImpl_nativeMoveWindowTo
|
|
|
|
(JNIEnv *env, jobject obj, jint webShellPtr, jint x, jint y)
|
|
|
|
{
|
2003-04-12 21:40:35 +00:00
|
|
|
WebShellInitContext * initContext = (WebShellInitContext *) webShellPtr;
|
|
|
|
if (initContext == NULL) {
|
|
|
|
::util_ThrowExceptionToJava(env, "Exception: null Ptr passed to nativeMoveWindowTo");
|
|
|
|
return;
|
|
|
|
}
|
2000-08-10 01:33:35 +00:00
|
|
|
}
|
|
|
|
|
2003-04-12 21:40:35 +00:00
|
|
|
|
2000-08-10 01:33:35 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_mozilla_webclient_wrapper_1native_WindowControlImpl_nativeRemoveFocus
|
|
|
|
(JNIEnv *env, jobject obj, jint webShellPtr)
|
|
|
|
{
|
2003-04-12 21:40:35 +00:00
|
|
|
|
2000-08-10 01:33:35 +00:00
|
|
|
}
|
|
|
|
|
2003-04-12 21:40:35 +00:00
|
|
|
|
2000-08-10 01:33:35 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_mozilla_webclient_wrapper_1native_WindowControlImpl_nativeRepaint
|
|
|
|
(JNIEnv *env, jobject obj, jint webShellPtr, jboolean forceRepaint)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-04-12 21:40:35 +00:00
|
|
|
|
2000-08-10 01:33:35 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_mozilla_webclient_wrapper_1native_WindowControlImpl_nativeSetVisible
|
|
|
|
(JNIEnv *env, jobject obj, jint webShellPtr, jboolean newState)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-04-12 21:40:35 +00:00
|
|
|
|
2000-08-10 01:33:35 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_mozilla_webclient_wrapper_1native_WindowControlImpl_nativeSetFocus
|
|
|
|
(JNIEnv *env, jobject obj, jint webShellPtr)
|
|
|
|
{
|
|
|
|
|
2003-04-12 21:40:35 +00:00
|
|
|
}
|
2000-08-10 01:33:35 +00:00
|
|
|
|