1 12 package org.eclipse.swt.internal.gtk; 13 14 15 public class GdkGeometry { 16 public int min_width; 17 public int min_height; 18 public int max_width; 19 public int max_height; 20 public int base_width; 21 public int base_height; 22 public int width_inc; 23 public int height_inc; 24 public double min_aspect; 25 public double max_aspect; 26 public int win_gravity; 27 public static final int sizeof = OS.GdkGeometry_sizeof(); 28 } 29 | Popular Tags |