Swing的实用东西:Swing Utilities
副标题#e#
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)计较要领
Rectangle[] computeDifference(Rectangle r1,Rectangle r2)
Rectangle computeIntersection(int x, int y, int width, int height, Rectangle dest)
Rectangle computeUnion(int x, int y, int width, int height, Rectangle dest)
int computeStringWidth(FontMetrics fm, String str)
boolean isRectangleContainingRectangle(Rectangle a, Rectangle b)
上面这些要领计较两个矩形之间的差集、交集、并集,还可确定一个矩形是否包罗了另一个矩形,以及计较一个字符串的像素宽度.
(3)鼠标按钮信息
boolean isLeftMouseButton(MouseEvent anEvent)
boolean isMiddleMouseButton(MouseEvent anEvent)
boolean isRightMouseButton(MouseEvent anEvent)
以给定的鼠标事件来鉴定按下了哪个鼠标按钮。
#p#副标题#e#
(4)会见节制要领
Component findFocusOwner(Component c)
取得给定组件的核心组件.
Component getLocalBounds(Component aComponent)
取得给定组件的范畴(Bounds)信息.
Component getRoot(Component c)
JRootPane getRootPane(Component c)
取得给定组件的根窗格.
Window windowForComponent(Component aComponent)
返回一个组件的视窗Window.
(5)组件绘制
String layoutCompoundLabel(FontMetrics fm, String text, Icon icon, int verticalAlignment, int horizontalAlignment, int verticalTextPosition, int horizontalTextPosition, Rectangle viewR, Rectangle iconR, Rectangle textR, int textIconGap)
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)
在任一个图形上绘制一个组件。