1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: SystemWindowAdapter.java,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
32 import com
.sun
.star
.awt
.*;
34 public class SystemWindowAdapter
36 static public java
.awt
.Frame
createFrame( int windowHandle
)
38 java
.awt
.Frame aFrame
;
40 // we're initialized with the operating system window handle
41 // as the parameter. We then generate a dummy Java frame with
42 // that window as the parent, to fake a root window for the
43 // Java implementation.
45 // now, we're getting slightly system dependent here.
46 String os
= (String
) System
.getProperty( "os.name" );
48 // create the embedded frame
49 if( os
.startsWith( "Windows" ) )
50 aFrame
= new sun
.awt
.windows
.WEmbeddedFrame( windowHandle
);
52 throw new com
.sun
.star
.uno
.RuntimeException();