Searched defs:layer (Results 1 - 18 of 18) sorted by relevance

/openjdk7/jdk/src/macosx/native/sun/awt/
H A DAWTSurfaceLayers.h33 * @property (readwrite, retain) CALayer *layer;
40 CALayer *layer; variable
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSF2InstrumentRegion.java34 SF2Layer layer; field in class:SF2InstrumentRegion
37 return layer;
40 public void setLayer(SF2Layer layer) { argument
41 this.layer = layer;
/openjdk7/jdk/src/macosx/native/sun/java2d/opengl/
H A DCGLSurfaceData.h40 CGLLayer *layer; member in struct:_CGLSDOps
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXLayerProtocol.java34 boolean supportsLayer(int layer); argument
35 void setLayer(XWindowPeer window, int layer); argument
H A DXWINProtocol.java145 public boolean supportsLayer(int layer) { argument
146 return ((layer == LAYER_ALWAYS_ON_TOP) || (layer == LAYER_NORMAL)) && doLayerProtocol();
149 public void setLayer(XWindowPeer window, int layer) { argument
156 req.set_data(0, layer == LAYER_NORMAL ? WIN_LAYER_NORMAL : WIN_LAYER_ONTOP);
159 if (log.isLoggable(PlatformLogger.FINE)) log.fine("Setting layer " + layer + " by root message : " + req);
174 if (log.isLoggable(PlatformLogger.FINE)) log.fine("Setting layer property to " + layer);
175 XA_WIN_LAYER.setCard32Property(window, layer
[all...]
H A DXNETProtocol.java169 public boolean supportsLayer(int layer) { argument
170 return ((layer == LAYER_ALWAYS_ON_TOP) || (layer == LAYER_NORMAL)) && doLayerProtocol();
228 public void setLayer(XWindowPeer window, int layer) { argument
229 setStateHelper(window, XA_NET_WM_STATE_ABOVE, layer == LAYER_ALWAYS_ON_TOP);
H A DXWM.java1183 * Moves window to the specified layer, layer is one of the constants defined
1186 void setLayer(XWindowPeer window, int layer) { argument
1188 if (proto.supportsLayer(layer)) {
1189 proto.setLayer(window, layer);
/openjdk7/jdk/src/macosx/javavm/export/
H A Djawt_md.h71 * JAWT_SurfaceLayers protocol. Setting the layer property of this object will cause the
72 * specified layer to be overlaid on the Components rectangle. If the window the
73 * Component belongs to has a CALayer attached to it, this layer will be accessible via
78 @property (readwrite, retain) CALayer *layer; variable
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dwsutils.h83 long layer; /* Overlay planes will always be in member in struct:__anon1020
84 * layer 1 */
99 long layer; /* Overlay planes will always be in member in struct:__anon1021
100 * layer 1 */
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djavax_swing_JLayeredPane.java41 private static void init(JLayeredPane pane, int layer, int x, int y, int w, int h, Color color) { argument
46 pane.add(panel, new Integer(layer));
/openjdk7/jdk/src/macosx/classes/sun/awt/
H A DCGraphicsConfig.java108 public SurfaceData createSurfaceData(CGLLayer layer) { argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJDesktopPane.java318 * specified layer of the desktop. Returns iconified frames as well
321 * @param layer an int specifying the desktop layer
325 public JInternalFrame[] getAllFramesInLayer(int layer) { argument
329 if (iterator.next().getLayer() != layer) {
362 private final int layer; field in class:JDesktopPane.ComponentPosition
365 ComponentPosition(JInternalFrame component, int layer, int zOrder) { argument
367 this.layer = layer;
372 int delta = o.layer
[all...]
H A DJLayeredPane.java62 * <DD>The standard layer, where most components go. This the bottommost
63 * layer.
65 * <DD>The palette layer sits over the default layer. Useful for floating
68 * <DD>The layer used for modal dialogs. They will appear on top of any
71 * <DD>The popup layer displays above dialogs. That way, the popup windows
75 * <DD>When dragging a component, reassigning it to the drag layer ensures
77 * finished dragging, it can be reassigned to its normal layer.
81 * to reposition a component within its layer. The <code>setLayer</code> method
82 * can also be used to change the component's current layer
293 putLayer(JComponent c, int layer) argument
344 setLayer(Component c, int layer) argument
358 setLayer(Component c, int layer, int position) argument
522 getComponentCountInLayer(int layer) argument
546 getComponentsInLayer(int layer) argument
609 getObjectForLayer(int layer) argument
643 insertIndexForLayer(int layer, int position) argument
660 insertIndexForLayer(Component comp, int layer, int position) argument
[all...]
H A DJInternalFrame.java1243 * Convenience method for setting the layer attribute of this component.
1245 * @param layer an <code>Integer</code> object specifying this
1246 * frame's desktop layer
1250 * description: Specifies what desktop layer is used.
1252 public void setLayer(Integer layer) { argument
1257 p.setLayer(this, layer.intValue(), p.getPosition(this));
1260 JLayeredPane.putLayer(this, layer.intValue());
1267 * Convenience method for setting the layer attribute of this component.
1269 * layer values predefined in <code>JLayeredPane</code>.
1273 * @param layer a
1283 setLayer(int layer) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/java2d/opengl/
H A DCGLSurfaceData.java83 protected CGLSurfaceData(CGLLayer layer, CGLGraphicsConfig gc, argument
92 if (layer != null) {
93 layerPtr = layer.getPointer();
94 isOpaque = layer.isOpaque();
117 public static CGLLayerSurfaceData createData(CGLLayer layer) { argument
118 CGLGraphicsConfig gc = getGC(layer);
119 Rectangle r = layer.getBounds();
120 return new CGLLayerSurfaceData(layer, gc, r.width, r.height);
163 public static CGLGraphicsConfig getGC(CGLLayer layer) { argument
164 return (CGLGraphicsConfig)layer
260 private CGLLayer layer; field in class:CGLSurfaceData.CGLLayerSurfaceData
262 CGLLayerSurfaceData(CGLLayer layer, CGLGraphicsConfig gc, int width, int height) argument
[all...]
H A DCGLGraphicsConfig.java289 public SurfaceData createSurfaceData(CGLLayer layer) { argument
290 return CGLSurfaceData.createData(layer);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DHierarchicalLayoutManager.java99 public int layer = -1; field in class:HierarchicalLayoutManager.LayoutNode
108 public int pos = -1; // Position within layer
563 n.x = space[n.layer].get(n.pos);
849 int x = minPos[n.layer];
856 minPos[n.layer] = max + n.width + xOffset;
951 LayoutNode prevNode = layers[n.layer].get(n.pos - 1);
1031 int layer = n.layer;
1037 if (pos != layers[layer].size() - 1) {
1039 int off = layers[layer]
1599 addBetween(LayoutEdge e, int layer) argument
[all...]
H A DOldHierarchicalLayoutManager.java79 private int layer; field in class:OldHierarchicalLayoutManager.NodeData
86 layer = -1;
98 layer = -1;
146 layer = x;
150 return layer;
214 return edge.toString() + "(layer=" + layer + ")";
216 return node.toString() + "(layer=" + layer + ")";
495 // Put into layer arra
[all...]

Completed in 88 milliseconds