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 11 java.desktop.jmod - Desktop Module
JDK 11 java.desktop.jmod is the JMOD file for JDK 11 Desktop module.
JDK 11 Desktop module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.desktop.jmod.
JDK 11 Desktop module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Desktop module source code files are stored in \fyicenter\jdk-11.0.1\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/windows/WindowsTableHeaderUI.java
/* * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.java.swing.plaf.windows; import java.awt.*; import javax.swing.*; import javax.swing.border.*; import javax.swing.plaf.*; import javax.swing.plaf.basic.*; import javax.swing.table.*; import static com.sun.java.swing.plaf.windows.TMSchema.*; import static com.sun.java.swing.plaf.windows.XPStyle.*; import sun.swing.table.*; import sun.swing.SwingUtilities2; public class WindowsTableHeaderUI extends BasicTableHeaderUI { private TableCellRenderer originalHeaderRenderer; public static ComponentUI createUI(JComponent h) { return new WindowsTableHeaderUI(); } public void installUI(JComponent c) { super.installUI(c); if (XPStyle.getXP() != null) { originalHeaderRenderer = header.getDefaultRenderer(); if (originalHeaderRenderer instanceof UIResource) { header.setDefaultRenderer(new XPDefaultRenderer()); } } } public void uninstallUI(JComponent c) { if (header.getDefaultRenderer() instanceof XPDefaultRenderer) { header.setDefaultRenderer(originalHeaderRenderer); } super.uninstallUI(c); } @Override protected void rolloverColumnUpdated(int oldColumn, int newColumn) { if (XPStyle.getXP() != null) { header.repaint(header.getHeaderRect(oldColumn)); header.repaint(header.getHeaderRect(newColumn)); } } @SuppressWarnings("serial") // JDK-implementation class private class XPDefaultRenderer extends DefaultTableCellHeaderRenderer { Skin skin; boolean isSelected, hasFocus, hasRollover; int column; XPDefaultRenderer() { setHorizontalAlignment(LEADING); } public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) { super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column); this.isSelected = isSelected; this.hasFocus = hasFocus; this.column = column; this.hasRollover = (column == getRolloverColumn()); if (skin == null) { XPStyle xp = XPStyle.getXP(); skin = (xp != null) ? xp.getSkin(header, Part.HP_HEADERITEM) : null; } Insets margins = (skin != null) ? skin.getContentMargin() : null; Border border = null; int contentTop = 0; int contentLeft = 0; int contentBottom = 0; int contentRight = 0; if (margins != null) { contentTop = margins.top; contentLeft = margins.left; contentBottom = margins.bottom; contentRight = margins.right; } /* idk: * Both on Vista and XP there is some offset to the * HP_HEADERITEM content. It does not seem to come from * Prop.CONTENTMARGINS. Do not know where it is defined. * using some hardcoded values. */ contentLeft += 5; contentBottom += 4; contentRight += 5; /* On Vista sortIcon is painted above the header's text. * We use border to paint it. */ Icon sortIcon; if (WindowsLookAndFeel.isOnVista() && ((sortIcon = getIcon()) instanceof javax.swing.plaf.UIResource || sortIcon == null)) { contentTop += 1; setIcon(null); sortIcon = null; SortOrder sortOrder = getColumnSortOrder(table, column); if (sortOrder != null) { switch (sortOrder) { case ASCENDING: sortIcon = UIManager.getIcon("Table.ascendingSortIcon"); break; case DESCENDING: sortIcon = UIManager.getIcon("Table.descendingSortIcon"); break; } } if (sortIcon != null) { contentBottom = sortIcon.getIconHeight(); border = new IconBorder(sortIcon, contentTop, contentLeft, contentBottom, contentRight); } else { sortIcon = UIManager.getIcon("Table.ascendingSortIcon"); int sortIconHeight = (sortIcon != null) ? sortIcon.getIconHeight() : 0; if (sortIconHeight != 0) { contentBottom = sortIconHeight; } border = new EmptyBorder( sortIconHeight + contentTop, contentLeft, contentBottom, contentRight); } } else { contentTop += 3; border = new EmptyBorder(contentTop, contentLeft, contentBottom, contentRight); } setBorder(border); return this; } public void paint(Graphics g) { Dimension size = getSize(); State state = State.NORMAL; TableColumn draggedColumn = header.getDraggedColumn(); if (draggedColumn != null && column == SwingUtilities2.convertColumnIndexToView( header.getColumnModel(), draggedColumn.getModelIndex())) { state = State.PRESSED; } else if (isSelected || hasFocus || hasRollover) { state = State.HOT; } /* on Vista there are more states for sorted columns */ if (WindowsLookAndFeel.isOnVista()) { SortOrder sortOrder = getColumnSortOrder(header.getTable(), column); if (sortOrder != null) { switch(sortOrder) { case ASCENDING: case DESCENDING: switch (state) { case NORMAL: state = State.SORTEDNORMAL; break; case PRESSED: state = State.SORTEDPRESSED; break; case HOT: state = State.SORTEDHOT; break; default: /* do nothing */ } break; default : /* do nothing */ } } } skin.paintSkin(g, 0, 0, size.width-1, size.height-1, state); super.paint(g); } } /** * A border with an Icon at the middle of the top side. * Outer insets can be provided for this border. */ private static class IconBorder implements Border, UIResource{ private final Icon icon; private final int top; private final int left; private final int bottom; private final int right; /** * Creates this border; * @param icon - icon to paint for this border * @param top, left, bottom, right - outer insets for this border */ public IconBorder(Icon icon, int top, int left, int bottom, int right) { this.icon = icon; this.top = top; this.left = left; this.bottom = bottom; this.right = right; } public Insets getBorderInsets(Component c) { return new Insets(icon.getIconHeight() + top, left, bottom, right); } public boolean isBorderOpaque() { return false; } public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { icon.paintIcon(c, g, x + left + (width - left - right - icon.getIconWidth()) / 2, y + top); } } }
⏎ com/sun/java/swing/plaf/windows/WindowsTableHeaderUI.java
Or download all of them as a single archive file:
File name: java.desktop-11.0.1-src.zip File size: 7974380 bytes Release date: 2018-11-04 Download
⇒ JDK 11 java.instrument.jmod - Instrument Module
2022-08-06, 160104👍, 5💬
Popular Posts:
Jettison is a collection of Java APIs (like STaX and DOM) which read and write JSON. This allows nea...
Apache Axis2 is the core engine for Web services. It is a complete re-design and re-write of the wid...
maven-compat-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Compact module. The JAR file name may ...
Guava is a suite of core and expanded libraries that include utility classes, google's collections, ...
ZooKeeper is a centralized service for maintaining configuration information, naming, providing dist...