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

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

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

Table.defaultFont介绍

暂无

代码示例

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

@Override
void createWidget (int index) {
  super.createWidget (index);
  items = new TableItem [4];
  columns = new TableColumn [4];
  itemCount = columnCount = 0;
  // In GTK 3 font description is inherited from parent widget which is not how SWT has always worked,
  // reset to default font to get the usual behavior
  if (OS.GTK3) {
    setFontDescription(defaultFont().handle);
  }
}

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

@Override
void createWidget (int index) {
  super.createWidget (index);
  items = new TableItem [4];
  columns = new TableColumn [4];
  itemCount = columnCount = 0;
  // In GTK 3 font description is inherited from parent widget which is not how SWT has always worked,
  // reset to default font to get the usual behavior
  if (OS.GTK3) {
    setFontDescription(defaultFont().handle);
  }
}

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

@Override
void createWidget (int index) {
  super.createWidget (index);
  items = new TableItem [4];
  columns = new TableColumn [4];
  itemCount = columnCount = 0;
  // In GTK 3 font description is inherited from parent widget which is not how SWT has always worked,
  // reset to default font to get the usual behavior
  if (OS.GTK3) {
    setFontDescription(defaultFont().handle);
  }
}

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

if (font == null) font = this.font;
if (font == null) font = parent.font;
if (font == null) font = parent.defaultFont ();
NSCell cell = parent.dataCell;
cell.setImage (null);

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

if (font == null) font = this.font;
if (font == null) font = parent.font;
if (font == null) font = parent.defaultFont();
String text = index == 0 ? this.text : (strings == null ? "" : strings [index]);
Image image = index == 0 ? this.image : (images == null ? null : images [index]);

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

if (font == null) font = item.font;
if (font == null) font = this.font;
if (font == null) font = defaultFont ();
if (font.extraTraits != 0) {
  NSMutableDictionary dict = ((NSMutableDictionary)new NSMutableDictionary().alloc()).initWithCapacity(5);

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

OS.FillRect (memDC, rect, hBrush);
OS.DeleteObject (hBrush);
int /*long*/ oldFont = OS.SelectObject (hDC, defaultFont ());
TEXTMETRIC tm = OS.IsUnicode ? (TEXTMETRIC) new TEXTMETRICW () : new TEXTMETRICA ();
OS.GetTextMetrics (hDC, tm);

相关文章

微信公众号

最新文章

更多

Table类方法