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/AquaTextFieldUI.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.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicTextFieldUI;
import javax.swing.text.*;
import com.apple.laf.AquaUtils.JComponentPainter;
public class AquaTextFieldUI extends BasicTextFieldUI {
public static ComponentUI createUI(final JComponent c) {
return new AquaTextFieldUI();
}
protected JComponentPainter delegate;
protected AquaFocusHandler handler;
@Override
protected void installListeners() {
super.installListeners();
handler = new AquaFocusHandler();
final JTextComponent c = getComponent();
c.addFocusListener(handler);
c.addPropertyChangeListener(handler);
LookAndFeel.installProperty(c, "opaque", UIManager.getBoolean(getPropertyPrefix() + "opaque"));
AquaUtilControlSize.addSizePropertyListener(c);
AquaTextFieldSearch.installSearchFieldListener(c);
}
@Override
protected void uninstallListeners() {
final JTextComponent c = getComponent();
AquaTextFieldSearch.uninstallSearchFieldListener(c);
AquaUtilControlSize.removeSizePropertyListener(c);
c.removeFocusListener(handler);
c.removePropertyChangeListener(handler);
handler = null;
super.uninstallListeners();
}
boolean oldDragState = false;
@Override
protected void installDefaults() {
if (!GraphicsEnvironment.isHeadless()) {
oldDragState = getComponent().getDragEnabled();
getComponent().setDragEnabled(true);
}
super.installDefaults();
}
@Override
protected void uninstallDefaults() {
super.uninstallDefaults();
if (!GraphicsEnvironment.isHeadless()) {
getComponent().setDragEnabled(oldDragState);
}
}
// Install a default keypress action which handles Cmd and Option keys
// properly
@Override
protected void installKeyboardActions() {
super.installKeyboardActions();
AquaKeyBindings.instance().setDefaultAction(getKeymapName());
}
@Override
protected Rectangle getVisibleEditorRect() {
final Rectangle rect = super.getVisibleEditorRect();
if (rect == null) return null;
if (!getComponent().isOpaque()) {
rect.y -= 3;
rect.height += 6;
}
return rect;
}
@Override
protected void paintSafely(final Graphics g) {
paintBackgroundSafely(g);
super.paintSafely(g);
}
protected void paintBackgroundSafely(final Graphics g) {
final JTextComponent c = getComponent();
final int width = c.getWidth();
final int height = c.getHeight();
// a delegate takes precedence
if (delegate != null) {
delegate.paint(c, g, 0, 0, width, height);
return;
}
final boolean isOpaque = c.isOpaque();
if (!(c.getBorder() instanceof AquaTextFieldBorder)) {
// developer must have set a custom border
if (!isOpaque && AquaUtils.hasOpaqueBeenExplicitlySet(c)) return;
// must fill whole region with background color if opaque
g.setColor(c.getBackground());
g.fillRect(0, 0, width, height);
return;
}
// using our own border
g.setColor(c.getBackground());
if (isOpaque) {
g.fillRect(0, 0, width, height);
return;
}
final Insets margin = c.getMargin();
Insets insets = c.getInsets();
if (insets == null) insets = new Insets(0, 0, 0, 0);
if (margin != null) {
insets.top -= margin.top;
insets.left -= margin.left;
insets.bottom -= margin.bottom;
insets.right -= margin.right;
}
// the common case
final int shrinkage = AquaTextFieldBorder.getShrinkageFor(c, height);
g.fillRect(insets.left - 2, insets.top - shrinkage - 1,
width - insets.right - insets.left + 4,
height - insets.bottom - insets.top + shrinkage * 2 + 2);
}
@Override
protected void paintBackground(final Graphics g) {
// we have already ensured that the background is painted to our liking
// by paintBackgroundSafely(), called from paintSafely().
}
@Override
protected Caret createCaret() {
return new AquaCaret();
}
@Override
protected Highlighter createHighlighter() {
return new AquaHighlighter();
}
protected void setPaintingDelegate(final JComponentPainter delegate) {
this.delegate = delegate;
}
}
⏎ com/apple/laf/AquaTextFieldUI.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, ≈263🔥, 0💬
Popular Posts:
JDK 11 jdk.rmic.jmod is the JMOD file for JDK 11 RMI (Remote Method Invocation) Compiler Tool tool, ...
What is the jaxp\SourceValidator.jav aprovided in the Apache Xerces package? I have Apache Xerces 2....
How to download and install JDK (Java Development Kit) 5? If you want to write Java applications, yo...
What Is activation.jar? I heard it's related to JAF (JavaBeans Activation Framework) 1.0.2? The if y...
JDK 11 jdk.jfr.jmod is the JMOD file for JDK 11 JFR module. JDK 11 JFR module compiled class files a...