import org.eclipse.swt.widgets.Display; public class DisplayBounds{ public static void main(String[] args) { Display display = new Display(); System.out.println("Display Bounds=" + display.getBounds() + " Display ClientArea=" + display.getClientArea()); display.dispose(); } }
17.3.Display | ||||
17.3.1. | Using Display Class | |||
17.3.2. | Get the bounds and client area of a display | |||
17.3.3. | Causes the system hardware to emit a short sound if it supports this capability | |||
17.3.4. | Returns the button dismissal alignment | |||
17.3.5. | Get the longest duration in milliseconds between two mouse button clicks that will be deemed a double-click. | |||
17.3.6. | Returns the maximum allowed depth of icons on the display. | |||
17.3.7. | To find the primary monitor, call getPrimaryMonitor. | |||
17.3.8. | Get color for the given constant | |||
17.3.9. | SWT Event Handling with Displays |