Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #include <rtl/process.h>
22 : #include <rtl/ref.hxx>
23 :
24 : #include <tools/rc.h>
25 :
26 : // declare system types in sysdata.hxx
27 : #include <svsys.h>
28 :
29 : #include <vcl/window.hxx>
30 : #include <vcl/sysdata.hxx>
31 : #include <vcl/svapp.hxx>
32 : #include <vcl/syschild.hxx>
33 :
34 : #include <window.h>
35 : #include <salinst.hxx>
36 : #include <salframe.hxx>
37 : #include <salobj.hxx>
38 : #include <svdata.hxx>
39 :
40 : #ifdef SOLAR_JAVA
41 : #include <jni.h>
42 : #endif
43 :
44 : #include <comphelper/processfactory.hxx>
45 : #include <jvmaccess/virtualmachine.hxx>
46 : #include <com/sun/star/java/XJavaVM.hpp>
47 : #include <com/sun/star/java/XJavaThreadRegister_11.hpp>
48 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
49 :
50 : using namespace ::com::sun::star;
51 :
52 : // =======================================================================
53 :
54 0 : long ImplSysChildProc( void* pInst, SalObject* /* pObject */,
55 : sal_uInt16 nEvent, const void* /* pEvent */ )
56 : {
57 0 : SystemChildWindow* pWindow = (SystemChildWindow*)pInst;
58 0 : long nRet = 0;
59 :
60 0 : ImplDelData aDogTag( pWindow );
61 0 : switch ( nEvent )
62 : {
63 : case SALOBJ_EVENT_GETFOCUS:
64 : // Focus holen und zwar so, das alle Handler gerufen
65 : // werden, als ob dieses Fenster den Focus bekommt,
66 : // ohne das der Frame den Focus wieder klaut
67 0 : pWindow->ImplGetFrameData()->mbSysObjFocus = sal_True;
68 0 : pWindow->ImplGetFrameData()->mbInSysObjToTopHdl = sal_True;
69 0 : pWindow->ToTop( TOTOP_NOGRABFOCUS );
70 0 : if( aDogTag.IsDead() )
71 0 : break;
72 0 : pWindow->ImplGetFrameData()->mbInSysObjToTopHdl = sal_False;
73 0 : pWindow->ImplGetFrameData()->mbInSysObjFocusHdl = sal_True;
74 0 : pWindow->GrabFocus();
75 0 : if( aDogTag.IsDead() )
76 0 : break;
77 0 : pWindow->ImplGetFrameData()->mbInSysObjFocusHdl = sal_False;
78 0 : break;
79 :
80 : case SALOBJ_EVENT_LOSEFOCUS:
81 : // Hintenrum einen LoseFocus ausloesen, das der Status
82 : // der Fenster dem entsprechenden Activate-Status
83 : // entspricht
84 0 : pWindow->ImplGetFrameData()->mbSysObjFocus = sal_False;
85 0 : if ( !pWindow->ImplGetFrameData()->mnFocusId )
86 : {
87 0 : pWindow->ImplGetFrameData()->mbStartFocusState = sal_True;
88 0 : Application::PostUserEvent( pWindow->ImplGetFrameData()->mnFocusId, LINK( pWindow->ImplGetFrameWindow(), Window, ImplAsyncFocusHdl ) );
89 : }
90 0 : break;
91 :
92 : case SALOBJ_EVENT_TOTOP:
93 0 : pWindow->ImplGetFrameData()->mbInSysObjToTopHdl = sal_True;
94 0 : if ( !Application::GetFocusWindow() || pWindow->HasChildPathFocus() )
95 0 : pWindow->ToTop( TOTOP_NOGRABFOCUS );
96 : else
97 0 : pWindow->ToTop();
98 0 : if( aDogTag.IsDead() )
99 0 : break;
100 0 : pWindow->GrabFocus();
101 0 : if( aDogTag.IsDead() )
102 0 : break;
103 0 : pWindow->ImplGetFrameData()->mbInSysObjToTopHdl = sal_False;
104 0 : break;
105 : }
106 :
107 0 : return nRet;
108 : }
109 :
110 : // =======================================================================
111 :
112 0 : void SystemChildWindow::ImplInitSysChild( Window* pParent, WinBits nStyle, SystemWindowData *pData, sal_Bool bShow )
113 : {
114 0 : mpWindowImpl->mpSysObj = ImplGetSVData()->mpDefInst->CreateObject( pParent->ImplGetFrame(), pData, bShow );
115 :
116 0 : Window::ImplInit( pParent, nStyle, NULL );
117 :
118 : // Wenn es ein richtiges SysChild ist, dann painten wir auch nicht
119 0 : if ( GetSystemData() )
120 : {
121 0 : mpWindowImpl->mpSysObj->SetCallback( this, ImplSysChildProc );
122 0 : SetParentClipMode( PARENTCLIPMODE_CLIP );
123 0 : SetBackground();
124 : }
125 0 : }
126 :
127 : // -----------------------------------------------------------------------
128 :
129 0 : SystemChildWindow::SystemChildWindow( Window* pParent, WinBits nStyle ) :
130 0 : Window( WINDOW_SYSTEMCHILDWINDOW )
131 : {
132 0 : ImplInitSysChild( pParent, nStyle, NULL );
133 0 : }
134 :
135 : // -----------------------------------------------------------------------
136 :
137 0 : SystemChildWindow::SystemChildWindow( Window* pParent, WinBits nStyle, SystemWindowData *pData, sal_Bool bShow ) :
138 0 : Window( WINDOW_SYSTEMCHILDWINDOW )
139 : {
140 0 : ImplInitSysChild( pParent, nStyle, pData, bShow );
141 0 : }
142 :
143 : // -----------------------------------------------------------------------
144 :
145 0 : SystemChildWindow::~SystemChildWindow()
146 : {
147 0 : Hide();
148 0 : if ( mpWindowImpl->mpSysObj )
149 : {
150 0 : ImplGetSVData()->mpDefInst->DestroyObject( mpWindowImpl->mpSysObj );
151 0 : mpWindowImpl->mpSysObj = NULL;
152 : }
153 0 : }
154 :
155 : // -----------------------------------------------------------------------
156 :
157 0 : const SystemEnvData* SystemChildWindow::GetSystemData() const
158 : {
159 0 : if ( mpWindowImpl->mpSysObj )
160 0 : return mpWindowImpl->mpSysObj->GetSystemData();
161 : else
162 0 : return NULL;
163 : }
164 :
165 : // -----------------------------------------------------------------------
166 :
167 0 : void SystemChildWindow::EnableEraseBackground( sal_Bool bEnable )
168 : {
169 0 : if ( mpWindowImpl->mpSysObj )
170 0 : mpWindowImpl->mpSysObj->EnableEraseBackground( bEnable );
171 0 : }
172 :
173 : // -----------------------------------------------------------------------
174 :
175 0 : void SystemChildWindow::ImplTestJavaException( void* pEnv )
176 : {
177 : #ifdef SOLAR_JAVA
178 0 : JNIEnv* pJavaEnv = reinterpret_cast< JNIEnv* >( pEnv );
179 0 : jthrowable jtThrowable = pJavaEnv->ExceptionOccurred();
180 :
181 0 : if( jtThrowable )
182 : { // is it a java exception ?
183 : #if OSL_DEBUG_LEVEL > 1
184 : pJavaEnv->ExceptionDescribe();
185 : #endif // OSL_DEBUG_LEVEL > 1
186 0 : pJavaEnv->ExceptionClear();
187 :
188 0 : jclass jcThrowable = pJavaEnv->FindClass("java/lang/Throwable");
189 0 : jmethodID jmThrowable_getMessage = pJavaEnv->GetMethodID(jcThrowable, "getMessage", "()Ljava/lang/String;");
190 0 : jstring jsMessage = (jstring) pJavaEnv->CallObjectMethod(jtThrowable, jmThrowable_getMessage);
191 0 : ::rtl::OUString ouMessage;
192 :
193 0 : if(jsMessage)
194 : {
195 0 : const jchar * jcMessage = pJavaEnv->GetStringChars(jsMessage, NULL);
196 0 : ouMessage = ::rtl::OUString(jcMessage);
197 0 : pJavaEnv->ReleaseStringChars(jsMessage, jcMessage);
198 : }
199 :
200 0 : throw uno::RuntimeException(ouMessage, uno::Reference<uno::XInterface>());
201 : }
202 : #else
203 : (void)pEnv;
204 : #endif // SOLAR_JAVA
205 0 : }
206 :
207 0 : void SystemChildWindow::SetForwardKey( sal_Bool bEnable )
208 : {
209 0 : if ( mpWindowImpl->mpSysObj )
210 0 : mpWindowImpl->mpSysObj->SetForwardKey( bEnable );
211 0 : }
212 :
213 : // -----------------------------------------------------------------------
214 :
215 0 : sal_IntPtr SystemChildWindow::GetParentWindowHandle( sal_Bool bUseJava )
216 : {
217 0 : sal_IntPtr nRet = 0;
218 :
219 : (void)bUseJava;
220 : #if defined WNT
221 : nRet = reinterpret_cast< sal_IntPtr >( GetSystemData()->hWnd );
222 : (void)bUseJava;
223 : #elif defined QUARTZ
224 : // FIXME: this is wrong
225 : nRet = reinterpret_cast< sal_IntPtr >( GetSystemData()->pView );
226 : (void)bUseJava;
227 : #elif defined IOS
228 : // FIXME: this is wrong
229 : nRet = reinterpret_cast< sal_IntPtr >( GetSystemData()->pView );
230 : #elif defined UNX
231 0 : if( !bUseJava )
232 : {
233 0 : nRet = (sal_IntPtr) GetSystemData()->aWindow;
234 : }
235 : #ifdef SOLAR_JAVA
236 : else
237 : {
238 0 : uno::Reference< lang::XMultiServiceFactory > xFactory( comphelper::getProcessServiceFactory() );
239 :
240 0 : if( GetSystemData()->aWindow > 0 )
241 : {
242 : try
243 : {
244 0 : ::rtl::Reference< ::jvmaccess::VirtualMachine > xVM;
245 0 : uno::Reference< java::XJavaVM > xJavaVM( xFactory->createInstance( rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.java.JavaVirtualMachine") ) ), uno::UNO_QUERY );
246 0 : uno::Sequence< sal_Int8 > aProcessID( 17 );
247 :
248 0 : rtl_getGlobalProcessId( (sal_uInt8*) aProcessID.getArray() );
249 0 : aProcessID[ 16 ] = 0;
250 : OSL_ENSURE(sizeof (sal_Int64) >= sizeof (jvmaccess::VirtualMachine *), "Pointer cannot be represented as sal_Int64");
251 0 : sal_Int64 nPointer = reinterpret_cast< sal_Int64 >( static_cast< jvmaccess::VirtualMachine * >(0));
252 0 : xJavaVM->getJavaVM(aProcessID) >>= nPointer;
253 0 : xVM = reinterpret_cast< jvmaccess::VirtualMachine * >(nPointer);
254 :
255 0 : if( xVM.is() )
256 : {
257 : try
258 : {
259 0 : ::jvmaccess::VirtualMachine::AttachGuard aVMAttachGuard( xVM );
260 0 : JNIEnv* pEnv = aVMAttachGuard.getEnvironment();
261 :
262 0 : jclass jcToolkit = pEnv->FindClass("java/awt/Toolkit");
263 0 : ImplTestJavaException(pEnv);
264 :
265 0 : jmethodID jmToolkit_getDefaultToolkit = pEnv->GetStaticMethodID( jcToolkit, "getDefaultToolkit", "()Ljava/awt/Toolkit;" );
266 0 : ImplTestJavaException(pEnv);
267 :
268 0 : pEnv->CallStaticObjectMethod(jcToolkit, jmToolkit_getDefaultToolkit);
269 0 : ImplTestJavaException(pEnv);
270 :
271 0 : jclass jcMotifAppletViewer = pEnv->FindClass("sun/plugin/navig/motif/MotifAppletViewer");
272 0 : if( pEnv->ExceptionOccurred() )
273 : {
274 0 : pEnv->ExceptionClear();
275 :
276 0 : jcMotifAppletViewer = pEnv->FindClass( "sun/plugin/viewer/MNetscapePluginContext");
277 0 : ImplTestJavaException(pEnv);
278 : }
279 :
280 0 : jclass jcClassLoader = pEnv->FindClass("java/lang/ClassLoader");
281 0 : ImplTestJavaException(pEnv);
282 :
283 0 : jmethodID jmClassLoader_loadLibrary = pEnv->GetStaticMethodID( jcClassLoader, "loadLibrary", "(Ljava/lang/Class;Ljava/lang/String;Z)V");
284 0 : ImplTestJavaException(pEnv);
285 :
286 0 : jstring jsplugin = pEnv->NewStringUTF("javaplugin_jni");
287 0 : ImplTestJavaException(pEnv);
288 :
289 0 : pEnv->CallStaticVoidMethod(jcClassLoader, jmClassLoader_loadLibrary, jcMotifAppletViewer, jsplugin, JNI_FALSE);
290 0 : ImplTestJavaException(pEnv);
291 :
292 0 : jmethodID jmMotifAppletViewer_getWidget = pEnv->GetStaticMethodID( jcMotifAppletViewer, "getWidget", "(IIIII)I" );
293 0 : ImplTestJavaException(pEnv);
294 :
295 0 : const Size aSize( GetOutputSizePixel() );
296 : jint ji_widget = pEnv->CallStaticIntMethod( jcMotifAppletViewer, jmMotifAppletViewer_getWidget,
297 0 : GetSystemData()->aWindow, 0, 0, aSize.Width(), aSize.Height() );
298 0 : ImplTestJavaException(pEnv);
299 :
300 0 : nRet = static_cast< sal_IntPtr >( ji_widget );
301 : }
302 0 : catch( uno::RuntimeException& )
303 : {
304 : }
305 :
306 0 : if( !nRet )
307 0 : nRet = static_cast< sal_IntPtr >( GetSystemData()->aWindow );
308 0 : }
309 : }
310 0 : catch( ... )
311 : {
312 : }
313 0 : }
314 : }
315 : #endif // SOLAR_JAVA
316 : #else // WNT || QUARTZ || UNX
317 : #endif
318 :
319 0 : return nRet;
320 : }
321 :
322 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|