Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 50a581a055e360f9f28ff47c95c2654881221a0f (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*****************************************************************************
 * Copyright (c) 2017 CEA LIST.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *      Thanh Liem PHAN (ALL4TEC) <thanhliem.phan@all4tec.net> - Bug 417095
 *****************************************************************************/
package org.eclipse.papyrus.infra.nattable.export.image;

/**
 * Enumeration that is used to configure the image format.
 */
public enum ImageFormat {
	BMP, JPG, JPEG, PNG;

	private static final String BMP_EXT = "BMP"; //$NON-NLS-1$

	private static final String JPG_EXT = "JPG"; //$NON-NLS-1$

	private static final String JPEG_EXT = "JPEG"; //$NON-NLS-1$

	private static final String PNG_EXT = "PNG"; //$NON-NLS-1$

	private static final String BMP_FILTER_NAME = "BMP files (*.bmp)"; //$NON-NLS-1$

	private static final String JPG_FILTER_NAME = "JPG files (*.jpg)"; //$NON-NLS-1$

	private static final String JPEG_FILTER_NAME = "JPEG files (*.jpeg)"; //$NON-NLS-1$

	private static final String PNG_FILTER_NAME = "PNG files (*.png)"; //$NON-NLS-1$

	private static final String BMP_FILTER_EXT = "*.bmp"; //$NON-NLS-1$

	private static final String JPG_FILTER_EXT = "*.jpg"; //$NON-NLS-1$

	private static final String JPEG_FILTER_EXT = "*.jpeg"; //$NON-NLS-1$

	private static final String PNG_FILTER_EXT = "*.png"; //$NON-NLS-1$

	public static final String DEFAULT_IMAGE_NAME = "table_export.png"; //$NON-NLS-1$

	/** The list of all image extensions. */
	public static final String[] IMAGE_EXTENSION_LIST = { PNG_EXT, BMP_EXT, JPG_EXT, JPEG_EXT };

	/** The list of all image filter names. */
	public static final String[] IMAGE_FILTER_NAME_LIST = { PNG_FILTER_NAME, BMP_FILTER_NAME, JPG_FILTER_NAME, JPEG_FILTER_NAME };

	/** The list of all image filter extensions. */
	public static final String[] IMAGE_FILTER_EXTENSION_LIST = { PNG_FILTER_EXT, BMP_FILTER_EXT, JPG_FILTER_EXT, JPEG_FILTER_EXT };

	/**
	 * Return the corresponding filter extension string for a given image format.
	 *
	 * @param imageFormat
	 *            The image format
	 * @return The image file extenstion filter string
	 */
	public static String getImageFilterExtension(final ImageFormat imageFormat) {
		switch (imageFormat) {
		case BMP:
			return BMP_FILTER_EXT;
		case JPG:
			return JPG_FILTER_EXT;
		case JPEG:
			return JPEG_FILTER_EXT;
		case PNG:
			return PNG_FILTER_EXT;
		default:
			return null;
		}
	}

	/**
	 * @return The default image format string
	 */
	public static String getDefaultImageExtension() {
		return PNG_EXT;
	}

}

Back to the top