JavaTM Platform
Standard Ed. 6

javax.swing.border
クラス BevelBorder

java.lang.Object
  上位を拡張 javax.swing.border.AbstractBorder
      上位を拡張 javax.swing.border.BevelBorder
すべての実装されたインタフェース:
Serializable, Border
直系の既知のサブクラス:
BorderUIResource.BevelBorderUIResource, SoftBevelBorder

public class BevelBorder
extends AbstractBorder

単純な 2 ラインの斜影ボーダーを実装するクラスです。

警告: このクラスの直列化されたオブジェクトは、今後の Swing リリースと互換ではなくなる予定です。現在の直列化のサポートは、短期間の運用や、同じバージョンの Swing を実行するアプリケーション間の RMI に適しています。JDK Version 1.4 以降、すべての JavaBeans の長期間の運用サポートは、java.beans パッケージに追加されています。詳細は、XMLEncoder を参照してください。


フィールドの概要
protected  int bevelType
           
protected  Color highlightInner
           
protected  Color highlightOuter
           
static int LOWERED
          くぼみ斜影のタイプです。
static int RAISED
          浮き出し斜影のタイプです。
protected  Color shadowInner
           
protected  Color shadowOuter
           
 
コンストラクタの概要
BevelBorder(int bevelType)
          指定されたタイプの斜影ボーダーを作成します。
BevelBorder(int bevelType, Color highlight, Color shadow)
          斜影ボーダーを、指定されたタイプ、ハイライトおよび陰影のカラーで作成します。
BevelBorder(int bevelType, Color highlightOuterColor, Color highlightInnerColor, Color shadowOuterColor, Color shadowInnerColor)
          斜影ボーダーを、指定されたタイプ、ハイライトおよび陰影のカラーで作成します。
 
メソッドの概要
 int getBevelType()
          斜影ボーダーのタイプを返します。
 Insets getBorderInsets(Component c)
          ボーダーのインセットの値を返します。
 Insets getBorderInsets(Component c, Insets insets)
          insets パラメータを、この Border の現在の Insets で初期化し直します。
 Color getHighlightInnerColor()
          斜影ボーダーの内側ハイライトのカラーを返します。
 Color getHighlightInnerColor(Component c)
          指定されたコンポーネントに描画されたときに斜影ボーダーの内側ハイライトのカラーを返します。
 Color getHighlightOuterColor()
          斜影ボーダーの外側ハイライトのカラーを返します。
 Color getHighlightOuterColor(Component c)
          指定されたコンポーネントに描画されたときに斜影ボーダーの外側ハイライトのカラーを返します。
 Color getShadowInnerColor()
          斜影ボーダーの内側陰影のカラーを返します。
 Color getShadowInnerColor(Component c)
          指定されたコンポーネントに描画されたときに斜影ボーダーの内側陰影のカラーを返します。
 Color getShadowOuterColor()
          斜影ボーダーの外側陰影のカラーを返します。
 Color getShadowOuterColor(Component c)
          指定されたコンポーネントに描画されたときに斜影ボーダーの外側陰影のカラーを返します。
 boolean isBorderOpaque()
          ボーダーが不透明かどうかを返します。
 void paintBorder(Component c, Graphics g, int x, int y, int width, int height)
          指定されたコンポーネントのボーダーを、指定された位置およびサイズでペイントします。
protected  void paintLoweredBevel(Component c, Graphics g, int x, int y, int width, int height)
           
protected  void paintRaisedBevel(Component c, Graphics g, int x, int y, int width, int height)
           
 
クラス javax.swing.border.AbstractBorder から継承されたメソッド
getBaseline, getBaselineResizeBehavior, getInteriorRectangle, getInteriorRectangle
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

RAISED

public static final int RAISED
浮き出し斜影のタイプです。

関連項目:
定数フィールド値

LOWERED

public static final int LOWERED
くぼみ斜影のタイプです。

関連項目:
定数フィールド値

bevelType

protected int bevelType

highlightOuter

protected Color highlightOuter

highlightInner

protected Color highlightInner

shadowInner

protected Color shadowInner

shadowOuter

protected Color shadowOuter
コンストラクタの詳細

BevelBorder

public BevelBorder(int bevelType)
指定されたタイプの斜影ボーダーを作成します。ボーダーのカラーは、paintBorder メソッドに渡されるコンポーネントのバックグラウンドカラーから派生します。

パラメータ:
bevelType - ボーダーの斜影のタイプ

BevelBorder

public BevelBorder(int bevelType,
                   Color highlight,
                   Color shadow)
斜影ボーダーを、指定されたタイプ、ハイライトおよび陰影のカラーで作成します。

パラメータ:
bevelType - ボーダーの斜影のタイプ
highlight - 斜影のハイライトに使うカラー
shadow - 斜影の陰影に使うカラー

BevelBorder

public BevelBorder(int bevelType,
                   Color highlightOuterColor,
                   Color highlightInnerColor,
                   Color shadowOuterColor,
                   Color shadowInnerColor)
斜影ボーダーを、指定されたタイプ、ハイライトおよび陰影のカラーで作成します。

注:陰影の内側および外側の色は、くぼみ斜影ボーダーに合わせて切り替えられます。

パラメータ:
bevelType - ボーダーの斜影のタイプ
highlightOuterColor - 斜影の外側ハイライトに使うカラー
highlightInnerColor - 斜影の内側ハイライトに使うカラー
shadowOuterColor - 斜影の外側陰影に使うカラー
shadowInnerColor - 斜影の内側陰影に使うカラー
メソッドの詳細

paintBorder

public void paintBorder(Component c,
                        Graphics g,
                        int x,
                        int y,
                        int width,
                        int height)
指定されたコンポーネントのボーダーを、指定された位置およびサイズでペイントします。

定義:
インタフェース Border 内の paintBorder
オーバーライド:
クラス AbstractBorder 内の paintBorder
パラメータ:
c - このボーダーがペイントされるコンポーネント
g - ペイントのグラフィックス
x - ペイントされたボーダーの x 座標
y - ペイントされたボーダーの y 座標
width - ペイントされたボーダーの幅
height - ペイントされたボーダーの高さ

getBorderInsets

public Insets getBorderInsets(Component c)
ボーダーのインセットの値を返します。

定義:
インタフェース Border 内の getBorderInsets
オーバーライド:
クラス AbstractBorder 内の getBorderInsets
パラメータ:
c - このボーダーのインセットの値を適用するコンポーネント
戻り値:
0 に初期化される新しい Insets オブジェクト

getBorderInsets

public Insets getBorderInsets(Component c,
                              Insets insets)
insets パラメータを、この Border の現在の Insets で初期化し直します。

オーバーライド:
クラス AbstractBorder 内の getBorderInsets
パラメータ:
c - このボーダーのインセットの値を適用するコンポーネント
insets - 初期化し直されるオブジェクト
戻り値:
insets オブジェクト

getHighlightOuterColor

public Color getHighlightOuterColor(Component c)
指定されたコンポーネントに描画されたときに斜影ボーダーの外側ハイライトのカラーを返します。インスタンス生成時にハイライトのカラーが指定されていない場合は、指定したコンポーネントのバックグラウンドカラーからハイライトのカラーが派生します。

パラメータ:
c - ハイライトが派生するコンポーネント
導入されたバージョン:
1.3

getHighlightInnerColor

public Color getHighlightInnerColor(Component c)
指定されたコンポーネントに描画されたときに斜影ボーダーの内側ハイライトのカラーを返します。インスタンス生成時にハイライトのカラーが指定されていない場合は、指定したコンポーネントのバックグラウンドカラーからハイライトのカラーが派生します。

パラメータ:
c - ハイライトが派生するコンポーネント
導入されたバージョン:
1.3

getShadowInnerColor

public Color getShadowInnerColor(Component c)
指定されたコンポーネントに描画されたときに斜影ボーダーの内側陰影のカラーを返します。インスタンス生成時に陰影のカラーが指定されていない場合は、指定したコンポーネントのバックグラウンドカラーから陰影のカラーが派生します。

パラメータ:
c - 陰影が派生するコンポーネント
導入されたバージョン:
1.3

getShadowOuterColor

public Color getShadowOuterColor(Component c)
指定されたコンポーネントに描画されたときに斜影ボーダーの外側陰影のカラーを返します。インスタンス生成時に陰影のカラーが指定されていない場合は、指定したコンポーネントのバックグラウンドカラーから陰影のカラーが派生します。

パラメータ:
c - 陰影が派生するコンポーネント
導入されたバージョン:
1.3

getHighlightOuterColor

public Color getHighlightOuterColor()
斜影ボーダーの外側ハイライトのカラーを返します。インスタンス生成時にハイライトのカラーが指定されていない場合は、null を返します。

導入されたバージョン:
1.3

getHighlightInnerColor

public Color getHighlightInnerColor()
斜影ボーダーの内側ハイライトのカラーを返します。インスタンス生成時にハイライトのカラーが指定されていない場合は、null を返します。

導入されたバージョン:
1.3

getShadowInnerColor

public Color getShadowInnerColor()
斜影ボーダーの内側陰影のカラーを返します。インスタンス生成時に陰影のカラーが指定されていない場合は、null を返します。

導入されたバージョン:
1.3

getShadowOuterColor

public Color getShadowOuterColor()
斜影ボーダーの外側陰影のカラーを返します。インスタンス生成時に陰影のカラーが指定されていない場合は、null を返します。

導入されたバージョン:
1.3

getBevelType

public int getBevelType()
斜影ボーダーのタイプを返します。


isBorderOpaque

public boolean isBorderOpaque()
ボーダーが不透明かどうかを返します。

定義:
インタフェース Border 内の isBorderOpaque
オーバーライド:
クラス AbstractBorder 内の isBorderOpaque
戻り値:
false

paintRaisedBevel

protected void paintRaisedBevel(Component c,
                                Graphics g,
                                int x,
                                int y,
                                int width,
                                int height)

paintLoweredBevel

protected void paintLoweredBevel(Component c,
                                 Graphics g,
                                 int x,
                                 int y,
                                 int width,
                                 int height)

JavaTM Platform
Standard Ed. 6

バグの報告と機能のリクエスト
さらに詳しい API リファレンスおよび開発者ドキュメントについては、Java SE 開発者用ドキュメントを参照してください。開発者向けの詳細な解説、概念の概要、用語の定義、バグの回避策、およびコード実例が含まれています。

Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Documentation Redistribution Policy も参照してください。