htiextension/com.nokia.s60tools.hticonnection/src/com/nokia/s60tools/hticonnection/services/HTIServiceConstants.java
changeset 0 61163b28edca
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/htiextension/com.nokia.s60tools.hticonnection/src/com/nokia/s60tools/hticonnection/services/HTIServiceConstants.java	Tue Jan 12 13:17:53 2010 -0600
@@ -0,0 +1,78 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+
+package com.nokia.s60tools.hticonnection.services;
+
+/**
+ * This class contains constants that are needed for using services.
+ */
+public class HTIServiceConstants {
+
+	/**
+	 *  No color mode.
+	 */
+	public static final int COLOR_DEPTH_ENONE = 0;
+	/**
+	 * Gray two colors.
+	 */
+	public static final int COLOR_DEPTH_EGRAY2 = 1;
+	/**
+	 * Gray 4 colors.
+	 */
+	public static final int COLOR_DEPTH_EGRAY4 = 2;
+	/**
+	 * Gray 16 colors.
+	 */
+	public static final int COLOR_DEPTH_EGRAY16 = 3;
+	/**
+	 * Gray 256 color.
+	 */
+	public static final int COLOR_DEPTH_EGRAY256 = 4;
+	/**
+	 * 16 colors.
+	 */
+	public static final int COLOR_DEPTH_ECOLOR16 = 5;
+	/**
+	 * 256 colors.
+	 */
+	public static final int COLOR_DEPTH_ECOLOR256 = 6;
+	/**
+	 * 64k colors.
+	 */
+	public static final int COLOR_DEPTH_ECOLOR64K = 7;
+	/**
+	 * 16M colors.
+	 */
+	public static final int COLOR_DEPTH_ECOLOR16M = 8;
+	/**
+	 * RGB
+	 */
+	public static final int COLOR_DEPTH_ERGB = 9;
+	/**
+	 * 4k colors.
+	 */
+	public static final int COLOR_DEPTH_ECOLOR4K = 0xa;
+	/**
+	 * 16M colors.
+	 */
+	public static final int COLOR_DEPTH_ECOLOR16MU = 0xb;
+	/**
+	 * 16M colors.
+	 */
+	public static final int COLOR_DEPTH_ECOLOR16MA = 0xc;
+	
+}