1 11 package org.eclipse.swt.widgets; 12 13 14 import org.eclipse.swt.graphics.*; 15 16 24 public abstract class Layout { 25 26 58 protected abstract Point computeSize (Composite composite, int wHint, int hHint, boolean flushCache); 59 60 70 protected boolean flushCache (Control control) { 71 return false; 72 } 73 74 102 protected abstract void layout (Composite composite, boolean flushCache); 103 } 104 | Popular Tags |