public class BasicProgressBarUI extends ProgressBarUI
修飾子と型 | クラスと説明 |
---|---|
class |
BasicProgressBarUI.ChangeHandler
このクラスは、「protected」内部クラスとして扱うようにしてください。
|
修飾子と型 | フィールドと説明 |
---|---|
protected Rectangle |
boxRect
ペイントされる (getBox によって返された) バウンシングボックスの位置とサイズを保持するために使用します。
|
protected ChangeListener |
changeListener |
protected JProgressBar |
progressBar |
コンストラクタと説明 |
---|
BasicProgressBarUI() |
修飾子と型 | メソッドと説明 |
---|---|
static ComponentUI |
createUI(JComponent x) |
protected int |
getAmountFull(Insets b, int width, int height)
モデルから集めた完了パーセント情報に基づいて、塗りつぶすべき進捗バーの量を決定します。
|
protected int |
getAnimationIndex()
現在のアニメーションフレームのインデックスを取得します。
|
int |
getBaseline(JComponent c, int width, int height)
ベースラインを返します。
|
Component.BaselineResizeBehavior |
getBaselineResizeBehavior(JComponent c)
サイズの変化に合わせてコンポーネントのベースラインがどのように変化するかを示す列挙を返します。
|
protected Rectangle |
getBox(Rectangle r)
現在のアニメーションインデックス用にペイントされるバウンシングボックスの位置とサイズを
r に格納し、r を返します。 |
protected int |
getBoxLength(int availableLength, int otherDimension)
ペイントされる「バウンシングボックス」の長さを返します。
|
protected int |
getCellLength()
進捗バーにレンダリングされる個々のセルおよび単位の幅 (HORIZONTAL の場合) または高さ (VERTICAL の場合) を返します。
|
protected int |
getCellSpacing()
進捗バーにある各セルおよび単位の間隔を返します。
|
protected int |
getFrameCount()
不確定モードの JProgressBar で使用される完全なアニメーションループのためのフレーム数を返します。
|
Dimension |
getMaximumSize(JComponent c)
指定されたコンポーネントの、Look & Feel に適した最大サイズを返します。
|
Dimension |
getMinimumSize(JComponent c)
このコンポーネントの最小サイズは 10 です。
|
protected Dimension |
getPreferredInnerHorizontal() |
protected Dimension |
getPreferredInnerVertical() |
Dimension |
getPreferredSize(JComponent c)
指定されたコンポーネントの、Look & Feel に適した推奨サイズを返します。
|
protected Color |
getSelectionBackground()
selectionBackground は、進捗バーの塗りつぶされていない領域をペイントするときのテキストの色です。
|
protected Color |
getSelectionForeground()
selectionForeground は、進捗バーの塗りつぶされた領域をペイントするときのテキストの色です。
|
protected Point |
getStringPlacement(Graphics g, String progressString, int x, int y, int width, int height)
進捗文字列のペイント位置を指定します。
|
protected void |
incrementAnimationIndex()
現在のアニメーションフレームのインデックスを次の有効値に設定します (進捗バーが再ペイントされます)。
|
protected void |
installDefaults() |
protected void |
installListeners() |
void |
installUI(JComponent c)
指定されたコンポーネントを Look & Feel に応じて適切に構成します。
|
void |
paint(Graphics g, JComponent c)
ペイントを 2 つのメソッド paintDeterminate または paintIndeterminate のどちらかに委譲します。
|
protected void |
paintDeterminate(Graphics g, JComponent c)
ほぼすべての確定モードのリニアな進捗バーで正しく動作する、汎用の paint メソッドです。
|
protected void |
paintIndeterminate(Graphics g, JComponent c)
すべてのリニアなバウンシングボックス進捗バーで正しく動作する、汎用の paint メソッドです。
|
protected void |
paintString(Graphics g, int x, int y, int width, int height, int amountFull, Insets b) |
protected void |
setAnimationIndex(int newValue)
現在のアニメーションフレームのインデックスを指定された値に設定し、進捗バーをペイントし直すよう要求します。
|
protected void |
setCellLength(int cellLen) |
protected void |
setCellSpacing(int cellSpace) |
protected void |
startAnimationTimer()
アニメーションスレッドを起動します (必要に応じて作成して初期化します)。
|
protected void |
stopAnimationTimer()
アニメーションスレッドを停止します。
|
protected void |
uninstallDefaults() |
protected void |
uninstallListeners()
このオブジェクトがインストールしたすべてのリスナーを削除します。
|
void |
uninstallUI(JComponent c)
installUI 時に、指定されたコンポーネントに対して行われた構成を取り消します。 |
contains, getAccessibleChild, getAccessibleChildrenCount, update
protected JProgressBar progressBar
protected ChangeListener changeListener
protected Rectangle boxRect
public static ComponentUI createUI(JComponent x)
public void installUI(JComponent c)
ComponentUI
ComponentUI
インスタンスが、指定されたコンポーネントの UI 委譲としてインストールされているときに呼び出されます。このメソッドは、次を含む Look & Feel 用のコンポーネントを完全に構成するべきです。
LayoutManager
をインストールする。
PropertyChangeListener
を作成してコンポーネントにインストールする。
installUI
、クラス: ComponentUI
c
- UI 委譲がインストールされるコンポーネントComponentUI.uninstallUI(javax.swing.JComponent)
, JComponent.setUI(javax.swing.plaf.ComponentUI)
, JComponent.updateUI()
public void uninstallUI(JComponent c)
ComponentUI
installUI
時に、指定されたコンポーネントに対して行われた構成を取り消します。このメソッドは、この UIComponent
インスタンスが、指定されたコンポーネントの UI 委譲として削除されているときに呼び出されます。このメソッドは、installUI
によって実行された構成を元に戻すべきです。この場合、JComponent
インスタンスをクリーンな状態 (余分なリスナーや、Look & Feel 固有のプロパティーオブジェクトが残らないように) にするよう十分注意してください。手順には次のものが含まれるべきです。
uninstallUI
、クラス: ComponentUI
c
- この UI 委譲が削除されるコンポーネント。この引数は通常無視されるが、UI オブジェクトがステートレスで、複数のコンポーネントで共有されている場合は使用されることがあるComponentUI.installUI(javax.swing.JComponent)
, JComponent.updateUI()
protected void installDefaults()
protected void uninstallDefaults()
protected void installListeners()
protected void startAnimationTimer()
stopAnimationTimer()
protected void stopAnimationTimer()
startAnimationTimer()
protected void uninstallListeners()
public int getBaseline(JComponent c, int width, int height)
getBaseline
、クラス: ComponentUI
c
- ベースラインが要求される JComponent
width
- ベースラインを取得する幅height
- ベースラインを取得する高さNullPointerException
- c
が null
である場合IllegalArgumentException
- 幅または高さが 0 より小さい場合JComponent.getBaseline(int, int)
public Component.BaselineResizeBehavior getBaselineResizeBehavior(JComponent c)
getBaselineResizeBehavior
、クラス: ComponentUI
c
- ベースラインのサイズ変更の動作を返す JComponent
NullPointerException
- c
が null
である場合JComponent.getBaseline(int, int)
protected Dimension getPreferredInnerHorizontal()
protected Dimension getPreferredInnerVertical()
protected Color getSelectionForeground()
protected Color getSelectionBackground()
protected int getCellLength()
setCellLength(int)
, JProgressBar.isStringPainted()
protected void setCellLength(int cellLen)
protected int getCellSpacing()
setCellSpacing(int)
, JProgressBar.isStringPainted()
protected void setCellSpacing(int cellSpace)
protected int getAmountFull(Insets b, int width, int height)
public void paint(Graphics g, JComponent c)
paint
、クラス: ComponentUI
g
- ペイント対象の Graphics
コンテキストc
- ペイントされるコンポーネント。この引数は通常無視されるが、UI オブジェクトがステートレスで、複数のコンポーネントで共有されている場合は使用されることがあるComponentUI.update(java.awt.Graphics, javax.swing.JComponent)
protected Rectangle getBox(Rectangle r)
r
に格納し、r
を返します。paintIndeterminate
のこのクラスの実装で実行されるペイントに追加するサブクラスは - たとえば、バウンシングボックスの周りにアウトラインを描画するために - このメソッドを使用してペイントされたばかりのバウンシングボックスの位置を取得できます。このメソッドをオーバーライドすることにより、paintIndeterminate
を実装し直さなくても、バウンシングボックスのサイズと位置を完全に制御できます。r
- 変更される Rectangle のインスタンス、null
も可null
。そうでない場合は渡された矩形 (null 以外の場合)、または新しい矩形setAnimationIndex(int)
protected int getBoxLength(int availableLength, int otherDimension)
paintIndeterminate
のデフォルト実装によって呼び出されます。例:
boxRect.width = getBoxLength(componentInnards.width, componentInnards.height);
availableLength
- 入っていくバウンシングボックスに利用できるスペースの量。たとえば、水平方向の進捗バーでは、進捗バーの内部の幅 (コンポーネント幅からボーダーを引いた値)otherDimension
- 水平方向の進捗バーでは、進捗バーの内部の高さ。この値は、戻り値を制限または決定するために使用できるavailableLength
以下である必要があるSwingUtilities.calculateInnerArea(javax.swing.JComponent, java.awt.Rectangle)
protected void paintIndeterminate(Graphics g, JComponent c)
paintDeterminate(java.awt.Graphics, javax.swing.JComponent)
protected void paintDeterminate(Graphics g, JComponent c)
paintIndeterminate(java.awt.Graphics, javax.swing.JComponent)
protected void paintString(Graphics g, int x, int y, int width, int height, int amountFull, Insets b)
protected Point getStringPlacement(Graphics g, String progressString, int x, int y, int width, int height)
public Dimension getPreferredSize(JComponent c)
ComponentUI
null
が返された場合、適切なサイズは代わりにコンポーネントのレイアウトマネージャーによって計算されます (これは、特定のレイアウトマネージャーをインストールしてあるコンポーネントの場合に推奨する方法です)。このメソッドのデフォルト実装は null
を返します。getPreferredSize
、クラス: ComponentUI
c
- 推奨サイズが照会されるコンポーネント。この引数は通常無視されるが、UI オブジェクトがステートレスで、複数のコンポーネントで共有されている場合は使用されることがあるJComponent.getPreferredSize()
, LayoutManager.preferredLayoutSize(java.awt.Container)
public Dimension getMinimumSize(JComponent c)
getMinimumSize
、クラス: ComponentUI
c
- 最小サイズが照会されるコンポーネント。この引数は通常無視されるが、UI オブジェクトがステートレスで、複数のコンポーネントで共有されている場合は使用されることがあるDimension
オブジェクトまたは null
JComponent.getMinimumSize()
, LayoutManager.minimumLayoutSize(java.awt.Container)
, ComponentUI.getPreferredSize(javax.swing.JComponent)
public Dimension getMaximumSize(JComponent c)
ComponentUI
null
が返された場合、最大サイズは代わりにコンポーネントのレイアウトマネージャーによって計算されます (これは、特定のレイアウトマネージャーをインストールしてあるコンポーネントの場合に推奨する方法です)。このメソッドのデフォルト実装は getPreferredSize
を呼び出して、その値を返します。getMaximumSize
、クラス: ComponentUI
c
- 最大サイズが照会されるコンポーネント。この引数は通常無視されるが、UI オブジェクトがステートレスで、複数のコンポーネントで共有されている場合は使用されることがあるDimension
オブジェクトまたは null
JComponent.getMaximumSize()
, LayoutManager2.maximumLayoutSize(java.awt.Container)
protected int getAnimationIndex()
protected final int getFrameCount()
protected void setAnimationIndex(int newValue)
repaint
メソッドの起動方法を変更する必要がある場合があります。newValue
- 新しいアニメーションインデックス。この値はチェックされないincrementAnimationIndex()
protected void incrementAnimationIndex()
setAnimationIndex(int)
バグまたは機能を送信
詳細な API リファレンスおよび開発者ドキュメントについては、Java SE のドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.