1 11 package org.eclipse.swt.internal.win32; 12 13 public abstract class NONCLIENTMETRICS { 14 public int cbSize; 15 public int iBorderWidth; 16 public int iScrollWidth; 17 public int iScrollHeight; 18 public int iCaptionWidth; 19 public int iCaptionHeight; 20 public int iSmCaptionWidth; 21 public int iSmCaptionHeight; 22 public int iMenuWidth; 23 public int iMenuHeight; 24 public static final int sizeof = OS.IsUnicode ? OS.NONCLIENTMETRICSW_sizeof () : OS.NONCLIENTMETRICSA_sizeof (); 25 } 26 27 | Popular Tags |