lemon
2 months ago
8 changed files with 265 additions and 109 deletions
@ -0,0 +1,161 @@ |
|||||||
|
package com.fine.theme.light.ui; |
||||||
|
|
||||||
|
import com.fine.theme.utils.FineUIScale; |
||||||
|
import com.formdev.flatlaf.ui.FlatRoundBorder; |
||||||
|
import com.formdev.flatlaf.ui.FlatUIUtils; |
||||||
|
import com.fr.design.gui.date.UICalendarPanel; |
||||||
|
import com.fr.design.gui.date.UIDayLabel; |
||||||
|
|
||||||
|
import javax.swing.JComponent; |
||||||
|
import javax.swing.UIManager; |
||||||
|
import javax.swing.border.LineBorder; |
||||||
|
import javax.swing.plaf.ComponentUI; |
||||||
|
import javax.swing.plaf.PanelUI; |
||||||
|
import java.awt.Color; |
||||||
|
import java.awt.Component; |
||||||
|
import java.awt.FontMetrics; |
||||||
|
import java.awt.Graphics; |
||||||
|
import java.awt.Graphics2D; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* {@link UICalendarPanel} 的 UI 样式 |
||||||
|
* @author lemon |
||||||
|
* @since 12.0 |
||||||
|
* Created on 2024/09/22 |
||||||
|
*/ |
||||||
|
public class FineCalendarPaneUI extends PanelUI { |
||||||
|
protected Color defaultBackground; |
||||||
|
protected Color selectedBackground; |
||||||
|
protected Color hoverBackground; |
||||||
|
protected Color pressedBackground; |
||||||
|
protected Color otherMonthForeground; |
||||||
|
|
||||||
|
protected int arc; |
||||||
|
|
||||||
|
/** |
||||||
|
* @param shared |
||||||
|
* @since 2 |
||||||
|
*/ |
||||||
|
protected FineCalendarPaneUI() { |
||||||
|
super(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建UI |
||||||
|
* |
||||||
|
* @param c 组件 |
||||||
|
* @return ComponentUI |
||||||
|
*/ |
||||||
|
public static ComponentUI createUI(JComponent c) { |
||||||
|
return FlatUIUtils.createSharedUI(FineCalendarPaneUI.class, FineCalendarPaneUI::new); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* @param c the component where this UI delegate is being installed |
||||||
|
* |
||||||
|
*/ |
||||||
|
public void installUI(JComponent c) { |
||||||
|
super.installUI(c); |
||||||
|
selectedBackground = UIManager.getColor("Calendar.day.selectedBackground"); |
||||||
|
hoverBackground = UIManager.getColor("Calendar.day.hoverBackground"); |
||||||
|
pressedBackground = UIManager.getColor("Calendar.day.pressedBackground"); |
||||||
|
defaultBackground = UIManager.getColor("Calendar.background"); |
||||||
|
otherMonthForeground = UIManager.getColor("Calendar.dayOtherMonth.foreground"); |
||||||
|
|
||||||
|
arc = UIManager.getInt("Calendar.day.arc"); |
||||||
|
|
||||||
|
//renderer this
|
||||||
|
c.setBackground(defaultBackground); |
||||||
|
c.setBorder(new LineBorder(FlatUIUtils.getUIColor("defaultBorderColor", Color.BLACK))); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void uninstallUI(JComponent c) { |
||||||
|
super.uninstallUI(c); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* UICalendarPanel paint, 目前只对 {@link UIDayLabel} 样式自定义,其余使用默认样式 |
||||||
|
* @param g the <code>Graphics</code> context in which to paint |
||||||
|
* @param c the component being painted; |
||||||
|
* this argument is often ignored, |
||||||
|
* but might be used if the UI object is stateless |
||||||
|
* and shared by multiple components |
||||||
|
* |
||||||
|
*/ |
||||||
|
public void paint(Graphics g, JComponent c) { |
||||||
|
if (c instanceof UICalendarPanel) { |
||||||
|
UICalendarPanel calendar = (UICalendarPanel) c; |
||||||
|
paintComponent(calendar); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private void paintComponent(JComponent component) { |
||||||
|
if (component instanceof UIDayLabel) { |
||||||
|
paintDayLabel((UIDayLabel) component); |
||||||
|
return; |
||||||
|
} |
||||||
|
for (Component c : component.getComponents()) { |
||||||
|
paintComponent((JComponent) c); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private void paintDayLabel(UIDayLabel label) { |
||||||
|
if (!label.isSmallLabel()) { |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
label.setBorder(new DayLabelRoundedBorder()); |
||||||
|
|
||||||
|
if (!label.isCurrentMonth()) { |
||||||
|
label.setForeground(otherMonthForeground); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private Color getBackgroundColor(UIDayLabel dayLabel) { |
||||||
|
if (dayLabel.isSelected()) { |
||||||
|
return selectedBackground; |
||||||
|
} |
||||||
|
if (dayLabel.isHovered()) { |
||||||
|
return hoverBackground; |
||||||
|
} |
||||||
|
if (dayLabel.isPressed()) { |
||||||
|
return pressedBackground; |
||||||
|
} |
||||||
|
return defaultBackground; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* {@link UIDayLabel} 的 border 样式 |
||||||
|
*/ |
||||||
|
private class DayLabelRoundedBorder extends FlatRoundBorder { |
||||||
|
|
||||||
|
public DayLabelRoundedBorder() { |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { |
||||||
|
Graphics2D g2 = (Graphics2D)g.create(); |
||||||
|
|
||||||
|
try { |
||||||
|
FlatUIUtils.setRenderingHints(g2); |
||||||
|
g2.setColor(getBackgroundColor((UIDayLabel) c)); |
||||||
|
g2.fillRoundRect(0, 0, width , height, arc, arc); |
||||||
|
|
||||||
|
// 避免文字被背景色覆盖
|
||||||
|
UIDayLabel dayLabel = (UIDayLabel) c; |
||||||
|
g2.setColor(dayLabel.getForeground()); |
||||||
|
FontMetrics metrics = g2.getFontMetrics(dayLabel.getFont()); |
||||||
|
int x1 = (width - metrics.stringWidth(dayLabel.getText())) / 2; |
||||||
|
int y1 = ((height - metrics.getHeight()) / 2) + metrics.getAscent(); |
||||||
|
g2.drawString(dayLabel.getText(), x1, y1); |
||||||
|
} finally { |
||||||
|
g2.dispose(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -1,54 +0,0 @@ |
|||||||
package com.fine.theme.light.ui; |
|
||||||
|
|
||||||
|
|
||||||
import com.fr.design.gui.date.UIDayLabel; |
|
||||||
|
|
||||||
import javax.swing.AbstractButton; |
|
||||||
import javax.swing.JComponent; |
|
||||||
import javax.swing.UIManager; |
|
||||||
import javax.swing.plaf.ComponentUI; |
|
||||||
import java.awt.Color; |
|
||||||
|
|
||||||
/** |
|
||||||
* {@link UIDayLabel} 的 UI 样式 |
|
||||||
* @author lemon |
|
||||||
* @since 12.0 |
|
||||||
* Created on 2024/09/22 |
|
||||||
*/ |
|
||||||
public class FineDayLabelUI extends FineButtonUI { |
|
||||||
protected Color selectedBackground; |
|
||||||
|
|
||||||
/** |
|
||||||
* @param shared |
|
||||||
* @since 2 |
|
||||||
*/ |
|
||||||
protected FineDayLabelUI(boolean shared) { |
|
||||||
super(shared); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 创建UI |
|
||||||
* |
|
||||||
* @param c 组件 |
|
||||||
* @return ComponentUI |
|
||||||
*/ |
|
||||||
public static ComponentUI createUI(JComponent c) { |
|
||||||
return new FineDayLabelUI(false); |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
protected void installDefaults(AbstractButton b) { |
|
||||||
super.installDefaults(b); |
|
||||||
selectedBackground = UIManager.getColor("Calendar.day.selectedBackground"); |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
@Override |
|
||||||
protected Color getBackground(JComponent c) { |
|
||||||
if (c instanceof UIDayLabel) { |
|
||||||
return ((UIDayLabel) c).isSelected() ? selectedBackground : super.getBackground(c); |
|
||||||
} |
|
||||||
return super.getBackground(c); |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
@ -0,0 +1,32 @@ |
|||||||
|
package com.fr.design.gui.storybook.components; |
||||||
|
|
||||||
|
import com.fine.theme.light.ui.FineRoundBorder; |
||||||
|
import com.fr.design.gui.date.UICalendarPanel; |
||||||
|
import com.fr.design.gui.date.UIDatePicker; |
||||||
|
import com.fr.design.gui.ilable.UILabel; |
||||||
|
import com.fr.design.gui.storybook.StoryBoard; |
||||||
|
|
||||||
|
import javax.swing.*; |
||||||
|
import java.awt.*; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
import static com.fine.swing.ui.layout.Layouts.*; |
||||||
|
|
||||||
|
public class UICalendarPaneStoryBoard extends StoryBoard { |
||||||
|
public UICalendarPaneStoryBoard() { |
||||||
|
super("日期控件"); |
||||||
|
UICalendarPanel calendarPanel = new UICalendarPanel(true); |
||||||
|
calendarPanel.setSelectedDate(new Date()); |
||||||
|
add( |
||||||
|
cell(new UILabel("日期下拉框")).with(this::h3), |
||||||
|
row(cell(new UIDatePicker(2)).with(this::setFixSize), flex()), |
||||||
|
cell(new UILabel("日期")).with(this::h3), |
||||||
|
row(cell(calendarPanel), flex()) |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
private void setFixSize(JComponent component) { |
||||||
|
component.setPreferredSize(new Dimension(240, component.getHeight())); |
||||||
|
component.setBorder(new FineRoundBorder()); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue