1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir *************************************************************************/ 27*cdf0e10cSrcweir package embeddedobj.test; 28*cdf0e10cSrcweir 29*cdf0e10cSrcweir // __________ Imports __________ 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir import java.awt.*; 32*cdf0e10cSrcweir import java.lang.*; 33*cdf0e10cSrcweir import java.awt.event.*; 34*cdf0e10cSrcweir 35*cdf0e10cSrcweir // __________ Implementation __________ 36*cdf0e10cSrcweir 37*cdf0e10cSrcweir /** 38*cdf0e10cSrcweir * Class to pass the system window handle to the OpenOffice.org toolkit. 39*cdf0e10cSrcweir * It use special JNI methods to get the system handle of used java window. 40*cdf0e10cSrcweir * 41*cdf0e10cSrcweir * Attention! 42*cdf0e10cSrcweir * Use JNI functions on already visible canvas objects only! 43*cdf0e10cSrcweir * Otherwise they can make some trouble. 44*cdf0e10cSrcweir * 45*cdf0e10cSrcweir * @author Andreas Schlüns 46*cdf0e10cSrcweir * @created 22.02.2002 08:47 47*cdf0e10cSrcweir */ 48*cdf0e10cSrcweir 49*cdf0e10cSrcweir public class NativeView extends java.awt.Canvas 50*cdf0e10cSrcweir { 51*cdf0e10cSrcweir // ____________________ 52*cdf0e10cSrcweir 53*cdf0e10cSrcweir /** 54*cdf0e10cSrcweir * ctor 55*cdf0e10cSrcweir * Does nothing realy. 56*cdf0e10cSrcweir * We can use our JNI mechanism for an already visible 57*cdf0e10cSrcweir * canvas only. So we overload the method for showing ( "setVisible()" ) 58*cdf0e10cSrcweir * and make our intialization there. BUt we try to show an empty clean 59*cdf0e10cSrcweir * window till there. 60*cdf0e10cSrcweir */ 61*cdf0e10cSrcweir public NativeView() 62*cdf0e10cSrcweir { 63*cdf0e10cSrcweir maHandle = null; 64*cdf0e10cSrcweir maSystem = 0; 65*cdf0e10cSrcweir this.setBackground( Color.white ); 66*cdf0e10cSrcweir } 67*cdf0e10cSrcweir 68*cdf0e10cSrcweir // ____________________ 69*cdf0e10cSrcweir 70*cdf0e10cSrcweir /** 71*cdf0e10cSrcweir * Overload this method to make neccessary initializations here. 72*cdf0e10cSrcweir * ( e.g. get the window handle and neccessary system informations ) 73*cdf0e10cSrcweir * 74*cdf0e10cSrcweir * Why here? 75*cdf0e10cSrcweir * Because the handle seams to be available for already visible windows 76*cdf0e10cSrcweir * only. So it's the best place to get it. Special helper method 77*cdf0e10cSrcweir * can be called more then ones - but call native code one times only 78*cdf0e10cSrcweir * and safe the handle and the system type on our members maHandle/maSystem! 79*cdf0e10cSrcweir */ 80*cdf0e10cSrcweir public void setVisible( boolean bState ) 81*cdf0e10cSrcweir { 82*cdf0e10cSrcweir getHWND(); 83*cdf0e10cSrcweir } 84*cdf0e10cSrcweir 85*cdf0e10cSrcweir // ____________________ 86*cdf0e10cSrcweir 87*cdf0e10cSrcweir /** 88*cdf0e10cSrcweir * to guarantee right resize handling inside a swing container 89*cdf0e10cSrcweir * ( e.g. JSplitPane ) we must provide some informations about our 90*cdf0e10cSrcweir * prefered/minimum and maximum size. 91*cdf0e10cSrcweir */ 92*cdf0e10cSrcweir public Dimension getPreferredSize() 93*cdf0e10cSrcweir { 94*cdf0e10cSrcweir return new Dimension( 800, 600 ); 95*cdf0e10cSrcweir } 96*cdf0e10cSrcweir 97*cdf0e10cSrcweir public Dimension getMaximumSize() 98*cdf0e10cSrcweir { 99*cdf0e10cSrcweir return new Dimension( 1024, 768 ); 100*cdf0e10cSrcweir } 101*cdf0e10cSrcweir 102*cdf0e10cSrcweir public Dimension getMinimumSize() 103*cdf0e10cSrcweir { 104*cdf0e10cSrcweir return new Dimension( 300, 300 ); 105*cdf0e10cSrcweir } 106*cdf0e10cSrcweir 107*cdf0e10cSrcweir // ____________________ 108*cdf0e10cSrcweir 109*cdf0e10cSrcweir /** 110*cdf0e10cSrcweir * overload paint routine to show provide against 111*cdf0e10cSrcweir * repaint errors if no office view is realy plugged 112*cdf0e10cSrcweir * into this canvas. 113*cdf0e10cSrcweir * If handle is present - we shouldn't paint anything further. 114*cdf0e10cSrcweir * May the remote window is already plugged. In such case we 115*cdf0e10cSrcweir * shouldn't paint it over. 116*cdf0e10cSrcweir */ 117*cdf0e10cSrcweir public void paint( Graphics aGraphic ) 118*cdf0e10cSrcweir { 119*cdf0e10cSrcweir if( maHandle == null ) 120*cdf0e10cSrcweir { 121*cdf0e10cSrcweir Dimension aSize = getSize(); 122*cdf0e10cSrcweir aGraphic.clearRect( 0, 0, aSize.width, aSize.height ); 123*cdf0e10cSrcweir } 124*cdf0e10cSrcweir } 125*cdf0e10cSrcweir 126*cdf0e10cSrcweir // ____________________ 127*cdf0e10cSrcweir 128*cdf0e10cSrcweir /** 129*cdf0e10cSrcweir * JNI interface of this class 130*cdf0e10cSrcweir * These two methods are implemented by using JNI mechanismen. 131*cdf0e10cSrcweir * The will be used to get the platform dependent window handle 132*cdf0e10cSrcweir * of a java awt canvas. This handle can be used to create an office 133*cdf0e10cSrcweir * window as direct child of it. So it's possible to plug Office 134*cdf0e10cSrcweir * windows in a java UI container. 135*cdf0e10cSrcweir * 136*cdf0e10cSrcweir * Note: 137*cdf0e10cSrcweir * Native code for windows register special function pointer to handle 138*cdf0e10cSrcweir * window messages ... But if it doesn't check for an already registered 139*cdf0e10cSrcweir * instance of this handler it will do it twice and produce a stack overflow 140*cdf0e10cSrcweir * because such method call herself in a never ending loop ... 141*cdf0e10cSrcweir * So we try to use the JNI code one times only and safe already getted 142*cdf0e10cSrcweir * informations inside this class. 143*cdf0e10cSrcweir */ 144*cdf0e10cSrcweir public native int getNativeWindowSystemType(); 145*cdf0e10cSrcweir private native long getNativeWindow(); // private! => use getHWND() with cache mechanism! 146*cdf0e10cSrcweir 147*cdf0e10cSrcweir public Integer getHWND() 148*cdf0e10cSrcweir { 149*cdf0e10cSrcweir if( maHandle == null ) 150*cdf0e10cSrcweir { 151*cdf0e10cSrcweir maHandle = new Integer( (int )getNativeWindow() ); 152*cdf0e10cSrcweir maSystem = getNativeWindowSystemType(); 153*cdf0e10cSrcweir } 154*cdf0e10cSrcweir return maHandle; 155*cdf0e10cSrcweir } 156*cdf0e10cSrcweir 157*cdf0e10cSrcweir // ____________________ 158*cdf0e10cSrcweir 159*cdf0e10cSrcweir /** 160*cdf0e10cSrcweir * for using of the JNI methods it's neccessary to load 161*cdf0e10cSrcweir * system library which exports it. 162*cdf0e10cSrcweir */ 163*cdf0e10cSrcweir static 164*cdf0e10cSrcweir { 165*cdf0e10cSrcweir System.loadLibrary( "nativeview" ); 166*cdf0e10cSrcweir } 167*cdf0e10cSrcweir 168*cdf0e10cSrcweir // ____________________ 169*cdf0e10cSrcweir 170*cdf0e10cSrcweir /** 171*cdf0e10cSrcweir * @member maHandle system window handle 172*cdf0e10cSrcweir * @member maSystem info about currently used platform 173*cdf0e10cSrcweir */ 174*cdf0e10cSrcweir public Integer maHandle ; 175*cdf0e10cSrcweir public int maSystem ; 176*cdf0e10cSrcweir } 177*cdf0e10cSrcweir 178