Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
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 (309)
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/sun/java/swing/plaf/motif/MotifTextUI.java
/* * Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.java.swing.plaf.motif; import java.awt.Color; import java.awt.Graphics; import java.awt.Rectangle; import java.awt.event.FocusEvent; import java.awt.event.FocusListener; import java.awt.event.InputEvent; import java.awt.event.KeyEvent; import javax.swing.KeyStroke; import javax.swing.plaf.TextUI; import javax.swing.plaf.UIResource; import javax.swing.text.BadLocationException; import javax.swing.text.Caret; import javax.swing.text.DefaultCaret; import javax.swing.text.DefaultEditorKit; import javax.swing.text.JTextComponent; /** * Provides the look and feel features that are common across * the Motif/CDE text LAF implementations. * * @author Timothy Prinzing */ public class MotifTextUI { /** * Creates the object to use for a caret for all of the Motif * text components. The caret is rendered as an I-beam on Motif. * * @return the caret object */ public static Caret createCaret() { return new MotifCaret(); } /** * The motif caret is rendered as an I beam. */ @SuppressWarnings("serial") // Superclass is not serializable across versions public static class MotifCaret extends DefaultCaret implements UIResource { /** * Called when the component containing the caret gains * focus. This is implemented to repaint the component * so the focus rectangle will be re-rendered, as well * as providing the superclass behavior. * * @param e the focus event * @see FocusListener#focusGained */ public void focusGained(FocusEvent e) { super.focusGained(e); getComponent().repaint(); } /** * Called when the component containing the caret loses * focus. This is implemented to set the caret to visibility * to false. * * @param e the focus event * @see FocusListener#focusLost */ public void focusLost(FocusEvent e) { super.focusLost(e); getComponent().repaint(); } /** * Damages the area surrounding the caret to cause * it to be repainted. If paint() is reimplemented, * this method should also be reimplemented. * * @param r the current location of the caret, does nothing if null * @see #paint */ protected void damage(Rectangle r) { if (r != null) { x = r.x - IBeamOverhang - 1; y = r.y; width = r.width + (2 * IBeamOverhang) + 3; height = r.height; repaint(); } } /** * Renders the caret as a vertical line. If this is reimplemented * the damage method should also be reimplemented as it assumes the * shape of the caret is a vertical line. Does nothing if isVisible() * is false. The caret color is derived from getCaretColor() if * the component has focus, else from getDisabledTextColor(). * * @param g the graphics context * @see #damage */ @SuppressWarnings("deprecation") public void paint(Graphics g) { if(isVisible()) { try { JTextComponent c = getComponent(); Color fg = c.hasFocus() ? c.getCaretColor() : c.getDisabledTextColor(); TextUI mapper = c.getUI(); int dot = getDot(); Rectangle r = mapper.modelToView(c, dot); int x0 = r.x - IBeamOverhang; int x1 = r.x + IBeamOverhang; int y0 = r.y + 1; int y1 = r.y + r.height - 2; g.setColor(fg); g.drawLine(r.x, y0, r.x, y1); g.drawLine(x0, y0, x1, y0); g.drawLine(x0, y1, x1, y1); } catch (BadLocationException e) { // can't render I guess //System.err.println("Can't render caret"); } } } static final int IBeamOverhang = 2; } /** * Default bindings all keymaps implementing the Motif feel. */ @SuppressWarnings("deprecation") static final JTextComponent.KeyBinding[] defaultBindings = { new JTextComponent.KeyBinding(KeyStroke.getKeyStroke(KeyEvent.VK_INSERT, InputEvent.CTRL_MASK), DefaultEditorKit.copyAction), new JTextComponent.KeyBinding(KeyStroke.getKeyStroke(KeyEvent.VK_INSERT, InputEvent.SHIFT_MASK), DefaultEditorKit.pasteAction), new JTextComponent.KeyBinding(KeyStroke.getKeyStroke(KeyEvent.VK_DELETE, InputEvent.SHIFT_MASK), DefaultEditorKit.cutAction), new JTextComponent.KeyBinding(KeyStroke.getKeyStroke(KeyEvent.VK_LEFT, InputEvent.SHIFT_MASK), DefaultEditorKit.selectionBackwardAction), new JTextComponent.KeyBinding(KeyStroke.getKeyStroke(KeyEvent.VK_RIGHT, InputEvent.SHIFT_MASK), DefaultEditorKit.selectionForwardAction), }; }
⏎ com/sun/java/swing/plaf/motif/MotifTextUI.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, 60628👍, 0💬
Popular Posts:
JDK 11 java.sql.jmod is the JMOD file for JDK 11 SQL (Structured Query Language) module. JDK 11 SQL ...
commons-collections4-4.2 -sources.jaris the source JAR file for Apache Commons Collections 4.2, whic...
How to display types defined in an XML Schema file with the xs\QueryXS.java provided in the Apache X...
JDK 11 jdk.rmic.jmod is the JMOD file for JDK 11 RMI (Remote Method Invocation) Compiler Tool tool, ...
How to perform XML Schema validation with sax\Writer.java provided in the Apache Xerces package? You...