自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

實用工具SwingUtilities

開發(fā) 后端
本文介紹實用工具SwingUtilities,它提供了許多的涉及計算、轉(zhuǎn)換、訪問控制、布局等方面的方法,這些方法已廣泛的應(yīng)用在各種Swing組件當(dāng)中。

Java的秘密:Swing的實用工具

Swing提供了許多的在Swing組件內(nèi)部使用的實用工具,SwingUtilities類就是其中一個。它提供了許多的涉及計算、轉(zhuǎn)換、訪問控制、布局等方面的方法,這些方法已廣泛的應(yīng)用在各種Swing組件當(dāng)中。當(dāng)然,我們也可以把它拿來應(yīng)用到我們自己的程序當(dāng)中。

下面我們就來了解一個這些實用的功能.

(1)轉(zhuǎn)換方法
◆MouseEvent convertMouseEvent(Component source, MouseEvent ourceEvent, Component destination)
將一個鼠標(biāo)事件從一個組件轉(zhuǎn)換到另一個組件上。
◆Point convertPoint(Component source, int x, int y, Component estination)
◆Point convertPoint(Component source, Point aPoint, Component destination)
將一個組件上的點坐標(biāo)轉(zhuǎn)換成另一個組件上的坐標(biāo)點。
◆void convertPointFromScreen(Point p, Component c)
將一個屏暮坐標(biāo)點轉(zhuǎn)換成一個組件的坐標(biāo)點.
◆void convertPointToScreen(Point p, omponent c)
將一個組件上的坐標(biāo)點轉(zhuǎn)換成屏暮坐標(biāo)。
◆Rectangle convertRectangle(Component source, Rectangle aRectangle, Component destination)
將一個組件上的矩形坐標(biāo)轉(zhuǎn)換成另一個組件上的矩形坐標(biāo).

(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)鼠標(biāo)按鈕信息
◆boolean isLeftMouseButton(MouseEvent anEvent)
◆boolean isMiddleMouseButton(MouseEvent anEvent)
◆boolean isRightMouseButton(MouseEvent anEvent)

以給定的鼠標(biāo)事件來判定按下了哪個鼠標(biāo)按鈕。

(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按鈕和標(biāo)簽上的文本和圖標(biāo).
◆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應(yīng)用程序
  2. 了解AWT和Swing組件
  3. Swing組件相關(guān)的操作
  4. 詳解MVC設(shè)計模式與Swing
  5. 淺談Swing和AWT構(gòu)件
責(zé)任編輯:佚名 來源: 中國IT實驗室
相關(guān)推薦

2022-02-25 09:03:49

工具Swift項目

2011-01-14 13:40:24

UbuntuLinux Tips

2025-03-04 10:49:51

2017-04-28 14:47:23

人工智能

2013-11-29 10:35:34

命令行工具ncdu

2011-04-13 09:40:27

2011-07-20 14:03:33

jQuery Mobi實用工具

2019-06-17 09:55:05

GPartedLinux根分區(qū)

2022-04-26 09:01:39

實用工具類型TypeScript

2011-07-20 10:08:05

NetXray

2023-08-02 10:41:26

2019-03-19 09:00:00

LinuxBackBox滲透測試

2013-02-27 10:42:07

前端工具Web

2023-09-03 17:03:54

工具RegexGPTBloop

2020-10-26 10:00:28

Linux工具命令

2019-12-27 09:00:28

Azure工具Azure平臺

2011-01-24 15:52:07

2015-10-10 15:09:46

推薦工具Linux

2019-07-12 08:00:00

Mac應(yīng)用程序實用工具

2009-09-10 09:31:15

Linux無線網(wǎng)絡(luò)Linux實用工具
點贊
收藏

51CTO技術(shù)棧公眾號