本文整理汇总了Java中org.apache.harmony.awt.state.TextComponentState.getInsets方法的典型用法代码示例。如果您正苦于以下问题:Java TextComponentState.getInsets方法的具体用法?Java TextComponentState.getInsets怎么用?Java TextComponentState.getInsets使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.harmony.awt.state.TextComponentState
的用法示例。
在下文中一共展示了TextComponentState.getInsets方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: fill
import org.apache.harmony.awt.state.TextComponentState; //导入方法依赖的package包/类
private static void fill(TextComponentState s, Color c, WinThemeGraphics wgr) {
Dimension size = s.getSize();
Rectangle client = s.getClient();
Insets ins = s.getInsets();
int x = client.x + client.width;
int y = client.y + client.height;
int w = size.width - x;
int h = size.height - y;
wgr.fillBackground(client, c, true);
// fill areas outside of client area &&
// scrollbars
wgr.fillBackground(x, y, w, h, c, true);
wgr.fillBackground(0, size.height - ins.bottom,
size.width, ins.bottom, c, true);
wgr.fillBackground(size.width - ins.right, 0,
ins.right, size.height, c, true);
}