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

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

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

Spinner.setFontDescription介绍

暂无

代码示例

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

@Override
void createHandle (int index) {
  state |= HANDLE | MENU;
  fixedHandle = OS.g_object_new (display.gtk_fixed_get_type (), 0);
  if (fixedHandle == 0) error (SWT.ERROR_NO_HANDLES);
  OS.gtk_widget_set_has_window (fixedHandle, true);
  int /*long*/ adjustment = OS.gtk_adjustment_new (0, 0, 100, 1, 10, 0);
  if (adjustment == 0) error (SWT.ERROR_NO_HANDLES);
  handle = OS.gtk_spin_button_new (adjustment, climbRate, 0);
  if (handle == 0) error (SWT.ERROR_NO_HANDLES);
  OS.gtk_container_add (fixedHandle, handle);
  OS.gtk_editable_set_editable (handle, (style & SWT.READ_ONLY) == 0);
  if (OS.GTK_VERSION <= OS.VERSION(3, 20, 0)) {
    OS.gtk_entry_set_has_frame (handle, (style & SWT.BORDER) != 0);
  }
  OS.gtk_spin_button_set_wrap (handle, (style & SWT.WRAP) != 0);
  if (OS.GTK3) {
    imContext = OS.imContextLast();
  }
  // 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.s390x

@Override
void createHandle (int index) {
  state |= HANDLE | MENU;
  fixedHandle = OS.g_object_new (display.gtk_fixed_get_type (), 0);
  if (fixedHandle == 0) error (SWT.ERROR_NO_HANDLES);
  OS.gtk_widget_set_has_window (fixedHandle, true);
  long /*int*/ adjustment = OS.gtk_adjustment_new (0, 0, 100, 1, 10, 0);
  if (adjustment == 0) error (SWT.ERROR_NO_HANDLES);
  handle = OS.gtk_spin_button_new (adjustment, climbRate, 0);
  if (handle == 0) error (SWT.ERROR_NO_HANDLES);
  OS.gtk_container_add (fixedHandle, handle);
  OS.gtk_editable_set_editable (handle, (style & SWT.READ_ONLY) == 0);
  if (OS.GTK_VERSION <= OS.VERSION(3, 20, 0)) {
    OS.gtk_entry_set_has_frame (handle, (style & SWT.BORDER) != 0);
  }
  OS.gtk_spin_button_set_wrap (handle, (style & SWT.WRAP) != 0);
  if (OS.GTK3) {
    imContext = OS.imContextLast();
  }
  // 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 createHandle (int index) {
  state |= HANDLE | MENU;
  fixedHandle = OS.g_object_new (display.gtk_fixed_get_type (), 0);
  if (fixedHandle == 0) error (SWT.ERROR_NO_HANDLES);
  OS.gtk_widget_set_has_window (fixedHandle, true);
  int /*long*/ adjustment = OS.gtk_adjustment_new (0, 0, 100, 1, 10, 0);
  if (adjustment == 0) error (SWT.ERROR_NO_HANDLES);
  handle = OS.gtk_spin_button_new (adjustment, climbRate, 0);
  if (handle == 0) error (SWT.ERROR_NO_HANDLES);
  OS.gtk_container_add (fixedHandle, handle);
  OS.gtk_editable_set_editable (handle, (style & SWT.READ_ONLY) == 0);
  if (OS.GTK_VERSION <= OS.VERSION(3, 20, 0)) {
    OS.gtk_entry_set_has_frame (handle, (style & SWT.BORDER) != 0);
  }
  OS.gtk_spin_button_set_wrap (handle, (style & SWT.WRAP) != 0);
  if (OS.GTK3) {
    imContext = OS.imContextLast();
  }
  // 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);
  }
}

相关文章