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

x33g5p2x  于2022-01-29 转载在 其他  
字(6.6k)|赞(0)|评价(0)|浏览(232)

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

Table.getFont介绍

暂无

代码示例

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

@Override
public Font getFont () {
  return table.getFont();
}
/**

代码示例来源:origin: org.eclipse.swt.cocoa.macosx/x86_64

public Font getFont () {
  return table.getFont();
}
/**

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

@Override
public Font getFont () {
  return table.getFont();
}
/**

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

@Override
public Font getFont () {
  return table.getFont();
}
/**

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

@Override
public Font getFont () {
  return table.getFont();
}
/**

代码示例来源:origin: org.eclipse.scout.sdk.s2e/org.eclipse.scout.sdk.s2e.nls

public Font getFont() {
 return m_table.getFont();
}

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

/**
 * Returns the font that the receiver will use to paint textual information for this item.
 *
 * @return the receiver's font
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 *
 * @since 3.0
 */
public Font getFont () {
  checkWidget ();
  if (!parent.checkData (this, true)) error (SWT.ERROR_WIDGET_DISPOSED);
  return font != null ? font : parent.getFont ();
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

/**
 * Returns the font that the receiver will use to paint textual information for this item.
 *
 * @return the receiver's font
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 *
 * @since 3.0
 */
public Font getFont () {
  checkWidget ();
  if (!parent.checkData (this)) error (SWT.ERROR_WIDGET_DISPOSED);
  return font != null ? font : parent.getFont ();
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

/**
 * Returns the font that the receiver will use to paint textual information for this item.
 *
 * @return the receiver's font
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 *
 * @since 3.0
 */
public Font getFont () {
  checkWidget ();
  if (!parent.checkData (this)) error (SWT.ERROR_WIDGET_DISPOSED);
  return font != null ? font : parent.getFont ();
}

代码示例来源:origin: org.eclipse.swt.cocoa.macosx/x86_64

/**
 * Returns the font that the receiver will use to paint textual information for this item.
 *
 * @return the receiver's font
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 *
 * @since 3.0
 */
public Font getFont () {
  checkWidget ();
  if (!parent.checkData (this)) error (SWT.ERROR_WIDGET_DISPOSED);
  return font != null ? font : parent.getFont ();
}

代码示例来源:origin: org.eclipse.rap/org.eclipse.rap.rwt

final int getPackWidth( int index ) {
 BoxDimensions cellPadding = parent.getCellPadding();
 return
   getImageWidth( index )
  + getSpacing( index )
  + getTextWidth( index, parent.getFont() )
  + cellPadding.left
  + cellPadding.right;
}

代码示例来源:origin: org.eclipse.swt.cocoa.macosx/x86_64

void setItemHeight (Image image, NSFont font, boolean set) {
  if (font == null) font = getFont ().handle;
  double /*float*/ ascent = font.ascender ();
  double /*float*/ descent = -font.descender () + font.leading ();
  int height = (int)Math.ceil (ascent + descent) + 1;
  Rectangle bounds = image != null ? image.getBounds () : imageBounds;
  if (bounds != null) {
    imageBounds = bounds;
    height = Math.max (height, bounds.height);
  }
  NSTableView widget = (NSTableView)view;
  if (set || widget.rowHeight () < height) {
    widget.setRowHeight (height);
  }
}

代码示例来源:origin: org.eclipse.xtext/ui

public static int getTableHeightHint(Table table, int rows) {
  if (table.getFont().equals(JFaceResources.getDefaultFont()))
    table.setFont(JFaceResources.getDialogFont());
  int result = table.getItemHeight() * rows + table.getHeaderHeight();
  if (table.getLinesVisible())
    result += table.getGridLineWidth() * (rows - 1);
  return result;
}

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.ui

public static int getTableHeightHint(Table table, int rows) {
  if (table.getFont().equals(JFaceResources.getDefaultFont()))
    table.setFont(JFaceResources.getDialogFont());
  int result= table.getItemHeight() * rows + table.getHeaderHeight();
  if (table.getLinesVisible())
    result+= table.getGridLineWidth() * (rows - 1);
  return result;
}

代码示例来源:origin: org.eclipse/org.eclipse.jdt.ui

public static int getTableHeightHint(Table table, int rows) {
  if (table.getFont().equals(JFaceResources.getDefaultFont()))
    table.setFont(JFaceResources.getDialogFont());
  int result= table.getItemHeight() * rows + table.getHeaderHeight();
  if (table.getLinesVisible())
    result+= table.getGridLineWidth() * (rows - 1);
  return result;		
}

代码示例来源:origin: org.eclipse/org.eclipse.search

public static int getTableHeightHint(Table table, int rows) {
  if (table.getFont().equals(JFaceResources.getDefaultFont()))
    table.setFont(JFaceResources.getDialogFont());
  int result= table.getItemHeight() * rows + table.getHeaderHeight();
  if (table.getLinesVisible())
    result+= table.getGridLineWidth() * (rows - 1);
  return result;		
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.search

public static int getTableHeightHint(Table table, int rows) {
  if (table.getFont().equals(JFaceResources.getDefaultFont()))
    table.setFont(JFaceResources.getDialogFont());
  int result= table.getItemHeight() * rows + table.getHeaderHeight();
  if (table.getLinesVisible())
    result+= table.getGridLineWidth() * (rows - 1);
  return result;
}

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.ui

public static int getTableHeightHint(Table table, int rows) {
  if (table.getFont().equals(JFaceResources.getDefaultFont()))
    table.setFont(JFaceResources.getDialogFont());
  int result= table.getItemHeight() * rows + table.getHeaderHeight();
  if (table.getLinesVisible())
    result+= table.getGridLineWidth() * (rows - 1);
  return result;
}

代码示例来源:origin: oyse/yedit

public static int getTableHeightHint(Table table, int rows) {
  if (table.getFont().equals(JFaceResources.getDefaultFont()))
    table.setFont(JFaceResources.getDialogFont());
  int result= table.getItemHeight() * rows + table.getHeaderHeight();
  if (table.getLinesVisible())
    result+= table.getGridLineWidth() * (rows - 1);
  return result;      
}

代码示例来源:origin: org.eclipse/org.eclipse.datatools.sqltools.common.ui

public static int getTableHeightHint(Table table, int rows)
{
  if (table.getFont().equals(JFaceResources.getDefaultFont()))
  {
    table.setFont(JFaceResources.getDialogFont());
  }
  int result = table.getItemHeight() * rows + table.getHeaderHeight();
  if (table.getLinesVisible())
  {
    result += table.getGridLineWidth() * (rows - 1);
  }
  return result;
}

相关文章

Table类方法