Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d82af09b64e2b0c5aec41f003d5853ef5d542d73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*******************************************************************************
 * Copyright (c) 2004, 2008 John Krasnay and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     John Krasnay - initial API and implementation
 *******************************************************************************/
package org.eclipse.vex.core.internal.core;

/**
 * Represents a device that can display graphics. This class is subclassed for each target system.
 */
public abstract class DisplayDevice {

	public static final DisplayDevice NULL = new DisplayDevice() {
		@Override
		public int getHorizontalPPI() {
			return 0;
		}

		@Override
		public int getVerticalPPI() {
			return 0;
		}
	};

	/**
	 * Class constructor.
	 */
	public DisplayDevice() {
	}

	/**
	 * Returns the current display device.
	 */
	public static DisplayDevice getCurrent() {
		return current;
	}

	/**
	 * Returns the horizontal resolution of the device, in pixels-per-inch.
	 */
	public abstract int getHorizontalPPI();

	/**
	 * Returns the horizontal resolution of the device, in pixels-per-inch.
	 */
	public abstract int getVerticalPPI();

	/**
	 * Sets the current display device. This is typically called by the platform-specific widget;
	 * 
	 * @param current
	 *            The device to use as the current device.
	 */
	public static void setCurrent(final DisplayDevice current) {
		DisplayDevice.current = current;
	}

	// ======================================================= PRIVATE

	private static DisplayDevice current = NULL;
}

Back to the top