本文整理了Java中org.eclipse.swt.widgets.Spinner.computeTrim()
方法的一些代码示例,展示了Spinner.computeTrim()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Spinner.computeTrim()
方法的具体详情如下:
包路径:org.eclipse.swt.widgets.Spinner
类名称:Spinner
方法名:computeTrim
暂无
代码示例来源:origin: org.eclipse.rap/org.eclipse.rap.rwt
height = hHint;
Rectangle trim = computeTrim( 0, 0, width, height );
if( hHint == SWT.DEFAULT ) {
BoxDimensions border = getBorder();
代码示例来源:origin: org.eclipse.swt.cocoa.macosx/x86_64
public Point computeSize (int wHint, int hHint, boolean changed) {
checkWidget ();
double /*float*/ width = 0, height = 0;
String string = Double.toString (buttonView.maxValue ());
Font font = Font.cocoa_new(display, textView.font ());
NSAttributedString str = parent.createString(string, font, null, 0, false, true, false);
NSSize size = str.size ();
str.release ();
width = (float)/*64*/size.width;
height = (float)/*64*/size.height;
if (wHint != SWT.DEFAULT) width = wHint;
if (hHint != SWT.DEFAULT) height = hHint;
Rectangle trim = computeTrim (0, 0, (int)Math.ceil (width), (int)Math.ceil (height));
if (hHint == SWT.DEFAULT) {
size = buttonView.cell ().cellSize ();
trim.height = Math.max (trim.height, (int)size.height);
}
return new Point (trim.width, trim.height);
}
public Rectangle computeTrim (int x, int y, int width, int height) {
内容来源于网络,如有侵权,请联系作者删除!