本文整理匯總了Java中javax.swing.AbstractButton.getRolloverIcon方法的典型用法代碼示例。如果您正苦於以下問題:Java AbstractButton.getRolloverIcon方法的具體用法?Java AbstractButton.getRolloverIcon怎麽用?Java AbstractButton.getRolloverIcon使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.swing.AbstractButton
的用法示例。
在下文中一共展示了AbstractButton.getRolloverIcon方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: paintIcon
import javax.swing.AbstractButton; //導入方法依賴的package包/類
@Override
protected void paintIcon(Graphics g, JComponent c, Rectangle iconRect)
{
AbstractButton b = (AbstractButton) c;
ButtonModel model = b.getModel();
Icon icon = b.getIcon();
Icon tmpIcon = null;
if( icon == null )
{
return;
}
if( !model.isEnabled() )
{
if( model.isSelected() )
{
tmpIcon = b.getDisabledSelectedIcon();
}
else
{
tmpIcon = b.getDisabledIcon();
}
}
else if( model.isPressed() && model.isArmed() )
{
tmpIcon = b.getPressedIcon();
if( tmpIcon != null )
{
// revert back to 0 offset
clearTextShiftOffset();
}
}
else if( b.isRolloverEnabled() && model.isRollover() )
{
if( model.isSelected() )
{
tmpIcon = b.getRolloverSelectedIcon();
}
else
{
tmpIcon = b.getRolloverIcon();
}
}
else if( model.isSelected() )
{
tmpIcon = b.getSelectedIcon();
}
if( tmpIcon != null )
{
icon = tmpIcon;
}
if( model.isPressed() && model.isArmed() )
{
icon.paintIcon(c, g, iconRect.x + getTextShiftOffset(), iconRect.y + getTextShiftOffset());
}
else
{
icon.paintIcon(c, g, iconRect.x, iconRect.y);
}
}