本文整理汇总了Java中sun.swing.plaf.synth.SynthIcon.getIconHeight方法的典型用法代码示例。如果您正苦于以下问题:Java SynthIcon.getIconHeight方法的具体用法?Java SynthIcon.getIconHeight怎么用?Java SynthIcon.getIconHeight使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sun.swing.plaf.synth.SynthIcon
的用法示例。
在下文中一共展示了SynthIcon.getIconHeight方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: drawCentered
import sun.swing.plaf.synth.SynthIcon; //导入方法依赖的package包/类
/**
* {@inheritDoc}
*/
@Override
protected void drawCentered(Component c, Graphics graphics, Icon icon,
int x, int y) {
int w = SynthIcon.getIconWidth(icon, paintContext);
int h = SynthIcon.getIconHeight(icon, paintContext);
SynthIcon.paintIcon(icon, paintContext, graphics,
findCenteredX(x, w),
y - h/2, w, h);
}
示例2: getIconHeight
import sun.swing.plaf.synth.SynthIcon; //导入方法依赖的package包/类
public int getIconHeight(SynthContext context) {
int height;
if (context == null) {
context = getContext(tree);
height = SynthIcon.getIconHeight(expandedIcon, context);
context.dispose();
}
else {
height = SynthIcon.getIconHeight(expandedIcon, context);
}
return height;
}
示例3: drawCentered
import sun.swing.plaf.synth.SynthIcon; //导入方法依赖的package包/类
/**
* @inheritDoc
*/
@Override
protected void drawCentered(Component c, Graphics graphics, Icon icon, int x, int y) {
int w = SynthIcon.getIconWidth(icon, paintContext);
int h = SynthIcon.getIconHeight(icon, paintContext);
SynthIcon.paintIcon(icon, paintContext, graphics, findCenteredX(x, w), y - h / 2, w, h);
}
示例4: getIconHeight
import sun.swing.plaf.synth.SynthIcon; //导入方法依赖的package包/类
public int getIconHeight(SynthContext context) {
int height;
if (context == null) {
context = getContext(tree);
height = SynthIcon.getIconHeight(expandedIcon, context);
((SeaGlassContext)context).dispose();
} else {
height = SynthIcon.getIconHeight(expandedIcon, context);
}
return height;
}
示例5: drawCentered
import sun.swing.plaf.synth.SynthIcon; //导入方法依赖的package包/类
/**
* @inheritDoc
*/
@Override
protected void drawCentered(Component c, Graphics graphics, Icon icon,
int x, int y) {
int w = SynthIcon.getIconWidth(icon, paintContext);
int h = SynthIcon.getIconHeight(icon, paintContext);
SynthIcon.paintIcon(icon, paintContext, graphics,
findCenteredX(x, w),
y - h/2, w, h);
}