org.eclipse.swt.widgets.Spinner.computeTrim()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.2k)|赞(0)|评价(0)|浏览(117)

本文整理了Java中org.eclipse.swt.widgets.Spinner.computeTrim()方法的一些代码示例,展示了Spinner.computeTrim()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Spinner.computeTrim()方法的具体详情如下:
包路径:org.eclipse.swt.widgets.Spinner
类名称:Spinner
方法名:computeTrim

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) {

相关文章