01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: /**
18: * @author Pavel Dolgov
19: * @version $Revision$
20: */package java.awt;
21:
22: import org.apache.harmony.awt.wtk.NativeWindow;
23:
24: /**
25: * The root of the component hierarchy
26: * embedded into a native application's window
27: */
28: class EmbeddedWindow extends Window {
29: private static final long serialVersionUID = -572384690015061225L;
30:
31: final long nativeWindowId;
32:
33: EmbeddedWindow(long nativeWindowId) {
34: super (null);
35: this .nativeWindowId = nativeWindowId;
36:
37: addNotify();
38: Rectangle bounds = behaviour.getNativeWindow().getBounds();
39: x = bounds.x;
40: y = bounds.y;
41: w = bounds.width;
42: h = bounds.height;
43: }
44:
45: @Override
46: ComponentBehavior createBehavior() {
47: return new EmbeddedBehavior();
48: }
49:
50: /**
51: * The component behavior for the embedded window
52: */
53: private class EmbeddedBehavior extends HWBehavior {
54:
55: EmbeddedBehavior() {
56: super (EmbeddedWindow.this );
57: }
58:
59: @Override
60: protected NativeWindow createNativeWindow() {
61: return toolkit
62: .createEmbeddedNativeWindow(EmbeddedWindow.this);
63: }
64:
65: }
66: }
|