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

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

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

Composite.forceResize介绍

暂无

代码示例

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

@Override
Rectangle getClientAreaInPixels () {
  checkWidget();
  if ((state & CANVAS) != 0) {
    if ((state & ZERO_WIDTH) != 0 && (state & ZERO_HEIGHT) != 0) {
      return new Rectangle (0, 0, 0, 0);
    }
    forceResize ();
    int /*long*/ clientHandle = clientHandle ();
    GtkAllocation allocation = new GtkAllocation();
    OS.gtk_widget_get_allocation (clientHandle, allocation);
    int width = (state & ZERO_WIDTH) != 0 ? 0 : allocation.width;
    int height = (state & ZERO_HEIGHT) != 0 ? 0 : allocation.height;
    return new Rectangle (0, 0, width, height);
  }
  return super.getClientAreaInPixels();
}

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

@Override
Rectangle getClientAreaInPixels () {
  checkWidget();
  if ((state & CANVAS) != 0) {
    if ((state & ZERO_WIDTH) != 0 && (state & ZERO_HEIGHT) != 0) {
      return new Rectangle (0, 0, 0, 0);
    }
    forceResize ();
    long /*int*/ clientHandle = clientHandle ();
    GtkAllocation allocation = new GtkAllocation();
    OS.gtk_widget_get_allocation (clientHandle, allocation);
    int width = (state & ZERO_WIDTH) != 0 ? 0 : allocation.width;
    int height = (state & ZERO_HEIGHT) != 0 ? 0 : allocation.height;
    return new Rectangle (0, 0, width, height);
  }
  return super.getClientAreaInPixels();
}

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

@Override
Rectangle getClientAreaInPixels () {
  checkWidget();
  if ((state & CANVAS) != 0) {
    if ((state & ZERO_WIDTH) != 0 && (state & ZERO_HEIGHT) != 0) {
      return new Rectangle (0, 0, 0, 0);
    }
    forceResize ();
    int /*long*/ clientHandle = clientHandle ();
    GtkAllocation allocation = new GtkAllocation();
    OS.gtk_widget_get_allocation (clientHandle, allocation);
    int width = (state & ZERO_WIDTH) != 0 ? 0 : allocation.width;
    int height = (state & ZERO_HEIGHT) != 0 ? 0 : allocation.height;
    return new Rectangle (0, 0, width, height);
  }
  return super.getClientAreaInPixels();
}

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

if (result != null) return result;
if ((state & CANVAS) != 0) {
  forceResize ();
  int nSavedDC = OS.SaveDC (wParam);
  RECT rect = new RECT ();

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

int index = indexOf (sortColumn);
if (index != -1) {
  parent.forceResize ();
  int clrSortBk = getSortColumnPixel ();
  RECT columnRect = new RECT (), headerRect = new RECT ();

相关文章

Composite类方法