实用工具SwingUtilities

开发 后端
本文介绍实用工具SwingUtilities,它提供了许多的涉及计算、转换、访问控制、布局等方面的方法,这些方法已广泛的应用在各种Swing组件当中。

Java的秘密:Swing的实用工具

Swing提供了许多的在Swing组件内部使用的实用工具,SwingUtilities类就是其中一个。它提供了许多的涉及计算、转换、访问控制、布局等方面的方法,这些方法已广泛的应用在各种Swing组件当中。当然,我们也可以把它拿来应用到我们自己的程序当中。

下面我们就来了解一个这些实用的功能.

(1)转换方法
◆MouseEvent convertMouseEvent(Component source, MouseEvent ourceEvent, Component destination)
将一个鼠标事件从一个组件转换到另一个组件上。
◆Point convertPoint(Component source, int x, int y, Component estination)
◆Point convertPoint(Component source, Point aPoint, Component destination)
将一个组件上的点坐标转换成另一个组件上的坐标点。
◆void convertPointFromScreen(Point p, Component c)
将一个屏暮坐标点转换成一个组件的坐标点.
◆void convertPointToScreen(Point p, omponent c)
将一个组件上的坐标点转换成屏暮坐标。
◆Rectangle convertRectangle(Component source, Rectangle aRectangle, Component destination)
将一个组件上的矩形坐标转换成另一个组件上的矩形坐标.

(2)计算方法

  1. Rectangle[] computeDifference(Rectangle r1,Rectangle r2)  
  2. Rectangle computeIntersection(int x, int y, int width, int height, Rectangle dest)  
  3. Rectangle computeUnion(int x, int y, int width, int height, Rectangle dest)  
  4. int computeStringWidth(FontMetrics fm, String str)  
  5. boolean isRectangleContainingRectangle(Rectangle a, Rectangle b) 

上面这些方法计算两个矩形之间的差集、交集、并集,还可确定一个矩形是否包括了另一个矩形,以及计算一个字符串的像素宽度.

(3)鼠标按钮信息
◆boolean isLeftMouseButton(MouseEvent anEvent)
◆boolean isMiddleMouseButton(MouseEvent anEvent)
◆boolean isRightMouseButton(MouseEvent anEvent)

以给定的鼠标事件来判定按下了哪个鼠标按钮。

(4)访问控制方法
◆Component findFocusOwner(Component c)
取得给定组件的焦点组件.
◆Component getLocalBounds(Component aComponent)
取得给定组件的范围(Bounds)信息.
◆Component getRoot(Component c)
◆JRootPane getRootPane(Component c)
取得给定组件的根窗格.
◆Window windowForComponent(Component aComponent)
返回一个组件的视窗Window.

(5)组件绘制

  1. String layoutCompoundLabel(FontMetrics fm, String text, Icon icon, 
    int verticalAlignment, int horizontalAlignment, int verticalTextPosition, 
    int horizontalTextPosition, Rectangle viewR, Rectangle iconR, Rectangle textR, 
    int textIconGap)  
  2. String layoutCompoundLabel(JComponent c, FontMetrics fm, String text, Icon icon, 
    int verticalAlignment, int horizontalAlignment, int verticalTextPosition, 
    int rizontalTextPosition, Rectangle viewR, Rectangle iconR, Rectangle textR, 
    int textIconGap)void paintComponent
    (Graphics g, Component c, Container p, int x, int y, int w, int h) 

这两个方法用于重新布局swing按钮和标签上的文本和图标.
◆void paintComponent(Graphics g, Component c, Container p, int x, int y, int w, int h)
◆void paintComponent(Graphics g, Component c, Container p, Rectangle r)
在任一个图形上绘制一个组件。

【编辑推荐】

  1. 浅析运行Swing应用程序
  2. 了解AWT和Swing组件
  3. Swing组件相关的操作
  4. 详解MVC设计模式与Swing
  5. 浅谈Swing和AWT构件
责任编辑:佚名 来源: 中国IT实验室
相关推荐

2022-02-25 09:03:49

工具Swift项目

2011-01-14 13:40:24

UbuntuLinux Tips

2017-04-28 14:47:23

人工智能

2011-04-13 09:40:27

2013-11-29 10:35:34

命令行工具ncdu

2011-07-20 14:03:33

jQuery Mobi实用工具

2019-06-17 09:55:05

GPartedLinux根分区

2022-04-26 09:01:39

实用工具类型TypeScript

2011-07-20 10:08:05

NetXray

2019-03-19 09:00:00

LinuxBackBox渗透测试

2023-08-02 10:41:26

2013-02-27 10:42:07

前端工具Web

2020-10-26 10:00:28

Linux工具命令

2023-09-03 17:03:54

工具RegexGPTBloop

2019-12-27 09:00:28

Azure工具Azure平台

2011-01-24 15:52:07

2015-10-10 15:09:46

推荐工具Linux

2009-09-10 09:31:15

Linux无线网络Linux实用工具

2019-07-12 08:00:00

Mac应用程序实用工具

2021-09-02 11:38:12

Linux运维工具
点赞
收藏

51CTO技术栈公众号