Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JDK 17 java.desktop.jmod - Desktop Module
JDK 17 java.desktop.jmod is the JMOD file for JDK 17 Desktop module.
JDK 17 Desktop module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.desktop.jmod.
JDK 17 Desktop module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Desktop module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\java.desktop.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/apple/laf/AquaBorder.java
/*
* Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package com.apple.laf;
import java.awt.*;
import javax.swing.*;
import javax.swing.border.Border;
import javax.swing.plaf.UIResource;
import javax.swing.text.JTextComponent;
import apple.laf.*;
import apple.laf.JRSUIConstants.*;
import com.apple.laf.AquaUtilControlSize.*;
public abstract class AquaBorder implements Border, UIResource {
protected final AquaPainter<? extends JRSUIState> painter;
protected final SizeDescriptor sizeDescriptor;
protected SizeVariant sizeVariant;
protected AquaBorder(final SizeDescriptor sizeDescriptor) {
this.sizeDescriptor = sizeDescriptor;
this.sizeVariant = sizeDescriptor.get(Size.REGULAR);
this.painter = createPainter();
}
protected AquaPainter<? extends JRSUIState> createPainter() {
final AquaPainter<JRSUIState> painter = AquaPainter.create(JRSUIState.getInstance());
painter.state.set(AlignmentVertical.CENTER);
painter.state.set(AlignmentHorizontal.CENTER);
return painter;
}
protected AquaBorder(final AquaBorder other) {
this.sizeDescriptor = other.sizeDescriptor;
this.sizeVariant = other.sizeVariant;
this.painter = AquaPainter.create(other.painter.state.derive());
painter.state.set(AlignmentVertical.CENTER);
painter.state.set(AlignmentHorizontal.CENTER);
}
protected void setSize(final Size size) {
sizeVariant = sizeDescriptor.get(size);
painter.state.set(size);
}
@Override
public Insets getBorderInsets(final Component c) {
return (Insets) sizeVariant.margins.clone();
}
protected AquaBorder deriveBorderForSize(final Size size) {
try {
final Class<? extends AquaBorder> clazz = getClass();
final AquaBorder border = clazz.getConstructor(new Class<?>[] { clazz }).newInstance(new Object[] { this });
border.setSize(size);
return border;
} catch (final Throwable e) {
return null;
}
}
public static void repaintBorder(final JComponent c) {
JComponent borderedComponent = c;
Border border = c.getBorder();
if (border == null) {
// See if it's inside a JScrollpane or something
final Container p = c.getParent();
if (p instanceof JViewport) {
borderedComponent = (JComponent)p.getParent();
if (borderedComponent != null) border = borderedComponent.getBorder();
}
}
// If we really don't have a border, then bail
// It might be a compound border with a ThemeBorder inside
// The check for that case is tricky, so we just go ahead and repaint any border
if (border == null || borderedComponent == null) return;
final int width = borderedComponent.getWidth();
final int height = borderedComponent.getHeight();
final Insets i = borderedComponent.getInsets();
borderedComponent.repaint(0, 0, width, i.top); // Top edge
borderedComponent.repaint(0, 0, i.left, height); // Left edge
borderedComponent.repaint(0, height - i.bottom, width, i.bottom); // Bottom edge
borderedComponent.repaint(width - i.right, 0, i.right, height); // Right edge
}
// The JScrollPane doesn't let us know if its viewport view has focus
protected boolean isFocused(final Component c) {
// Being really paranoid in case this Component isn't a Swing component
Component focusable = c;
if (c instanceof JScrollPane) {
final JViewport vp = ((JScrollPane)c).getViewport();
if (vp != null) {
focusable = vp.getView();
// Lists, Tables & Trees get focus rings, TextAreas don't (JBuilder puts TextField border on TextAreas)
if (focusable instanceof JTextComponent) return false;
}
} else if (focusable instanceof JTextComponent) {
// non-editable text areas don't draw the focus ring
if (!((javax.swing.text.JTextComponent)focusable).isEditable()) return false;
}
return (focusable != null && focusable instanceof JComponent && ((JComponent)focusable).hasFocus());
}
@Override
public boolean isBorderOpaque() { return false; }
@Override
public void paintBorder(final Component c, final Graphics g, final int x, final int y, final int w, final int h) {
painter.paint(g, c, x, y, w, h);
}
static class Default extends AquaBorder {
Default() { super(new SizeDescriptor(new SizeVariant())); }
}
}
⏎ com/apple/laf/AquaBorder.java
Or download all of them as a single archive file:
File name: java.desktop-17.0.5-src.zip File size: 9152233 bytes Release date: 2022-09-13 Download
⇒ JDK 17 java.instrument.jmod - Instrument Module
2023-09-16, ≈438🔥, 0💬
Popular Posts:
HttpComponents Client Source Code Files are provided in the source package file, httpcomponents-clie...
ANTLR is a powerful parser generator for multiple programming languages including Java. ANTLR contai...
What Is commons-io-2.11.jar? commons-io-2.11.jar is the JAR file for Commons IO 2.5, which is a libr...
JLayer is a library that decodes/plays/converts MPEG 1/2/2.5 Layer 1/2/3 (i.e. MP3) in real time for...
The Apache FontBox library is an open source Java tool to obtain low level information from font fil...