|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
java.lang.Object javax.swing.text.View javax.swing.text.html.ImageView
public class ImageView
圖像視圖,用於支持 HTML <IMG> 標記。支持通過標記的 HEIGHT 和 WIDTH 屬性進行縮放。如果不能載入圖像,則將呈現任何通過 ALT
屬性指定的文本。
雖然此類別現在已經是 swing 的一部分,但它是從 1.4 版本才開始公開。
IconView
欄位摘要 |
---|
從類別 javax.swing.text.View 繼承的欄位 |
---|
BadBreakWeight, ExcellentBreakWeight, ForcedBreakWeight, GoodBreakWeight, X_AXIS, Y_AXIS |
從介面 javax.swing.SwingConstants 繼承的欄位 |
---|
BOTTOM, CENTER, EAST, HORIZONTAL, LEADING, LEFT, NEXT, NORTH, NORTH_EAST, NORTH_WEST, PREVIOUS, RIGHT, SOUTH, SOUTH_EAST, SOUTH_WEST, TOP, TRAILING, VERTICAL, WEST |
建構子摘要 | |
---|---|
ImageView(Element elem)
創建表示 IMG 元素的新視圖。 |
方法摘要 | |
---|---|
void |
changedUpdate(DocumentEvent e,
Shape a,
ViewFactory f)
當 Elements 屬性已更改時調用。 |
float |
getAlignment(int axis)
確定此視圖沿某個軸所需的調整值。 |
String |
getAltText()
如果不能載入圖像,則返回要顯示的文本。 |
AttributeSet |
getAttributes()
獲取呈現時要使用的屬性。 |
Image |
getImage()
返回要呈現的圖像。 |
URL |
getImageURL()
返回圖像源的 URL,如果不能確定圖像源,則返回 null。 |
Icon |
getLoadingImageIcon()
返回載入圖像過程中要使用的圖標。 |
boolean |
getLoadsSynchronously()
如果圖像應該在首次被請求時載入,則返回 true。 |
Icon |
getNoImageIcon()
如果不能找到圖像,則返回要使用的圖標。 |
float |
getPreferredSpan(int axis)
確定此視圖沿某軸的首選區域。 |
protected StyleSheet |
getStyleSheet()
獲取 StyleSheet 的便捷方法。 |
String |
getToolTipText(float x,
float y,
Shape allocation)
對於圖像,工具提示文本來自於 ALT 屬性指定的文本。 |
Shape |
modelToView(int pos,
Shape a,
Position.Bias b)
提供從文檔模型坐標空間到所映射的視圖坐標空間的映射。 |
void |
paint(Graphics g,
Shape a)
繪製 View。 |
void |
setLoadsSynchronously(boolean newValue)
設置如何載入圖像。 |
void |
setParent(View parent)
建立此視圖的父視圖。 |
protected void |
setPropertiesFromAttributes()
更新來自屬性的任何快取記憶體的值。 |
void |
setSize(float width,
float height)
設置視圖的大小。 |
int |
viewToModel(float x,
float y,
Shape a,
Position.Bias[] bias)
提供從視圖坐標空間到該模型的邏輯坐標空間的映射。 |
從類別 java.lang.Object 繼承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
建構子詳細資訊 |
---|
public ImageView(Element elem)
elem
- 要為其創建視圖的元素方法詳細資訊 |
---|
public String getAltText()
HTML.Attribute.ALT
的 Elements 屬性集獲取的。
public URL getImageURL()
public Icon getNoImageIcon()
public Icon getLoadingImageIcon()
public Image getImage()
public void setLoadsSynchronously(boolean newValue)
newValue
為 true,則圖像將在首次被請求時載入,否則將非同步載入。預設是不同步載入,也即非同步載入。
public boolean getLoadsSynchronously()
protected StyleSheet getStyleSheet()
public AttributeSet getAttributes()
View
中的 getAttributes
public String getToolTipText(float x, float y, Shape allocation)
ALT
屬性指定的文本。對其進行覆寫以返回 getAltText
。
View
中的 getToolTipText
JTextComponent.getToolTipText(java.awt.event.MouseEvent)
protected void setPropertiesFromAttributes()
public void setParent(View parent)
View
中的 setParent
parent
- 新的父級,如果要從父級中移除視圖,則為 null
public void changedUpdate(DocumentEvent e, Shape a, ViewFactory f)
View
中的 changedUpdate
e
- 發自關聯文檔的更改資訊a
- 視圖的當前分派f
- 視圖有子級時用於重建的處理器 View#changedUpdatepublic void paint(Graphics g, Shape a)
View
中的 paint
g
- 要使用的呈現表面a
- 分派的要在其中呈現的區域View.paint(java.awt.Graphics, java.awt.Shape)
public float getPreferredSpan(int axis)
View
中的 getPreferredSpan
axis
- 可以是 X_AXIS,也可以是 Y_AXIS
View.getPreferredSpan(int)
public float getAlignment(int axis)
View
中的 getAlignment
axis
- 可以是 X_AXIS,也可以是 Y_AXIS
public Shape modelToView(int pos, Shape a, Position.Bias b) throws BadLocationException
View
中的 modelToView
pos
- 要轉換的位置a
- 分派的要在其中呈現的區域b
- 當位置是兩個視圖的邊界時,該參數是離由偏移量表示的前一個字元或者下一個字元的偏差;b
將是這些值之一:
Position.Bias.Forward
Position.Bias.Backward
BadLocationException
- 如果給定位置在所關聯的文檔中不是一個有效位置View.modelToView(int, java.awt.Shape, javax.swing.text.Position.Bias)
public int viewToModel(float x, float y, Shape a, Position.Bias[] bias)
View
中的 viewToModel
x
- X 坐標y
- Y 坐標a
- 要在其中呈現的分派區域
View.viewToModel(float, float, java.awt.Shape, javax.swing.text.Position.Bias[])
public void setSize(float width, float height)
View
中的 setSize
width
- 寬度,其值 >= 0height
- 高度,其值 >= 0
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。