gfxtools/Color/src/strings.cpp
changeset 0 f58d6ec98e88
equal deleted inserted replaced
-1:000000000000 0:f58d6ec98e88
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 const char* gIntroText ="\
       
    18 /*\n\
       
    19 * ============================================================================\n\
       
    20 *  Name     : %s.h\n\
       
    21 *  Part of  : Palette\n\
       
    22 *\n\
       
    23 *  Description:\n\
       
    24 *       Provides the K%sColor256Util definition.\n\
       
    25 *\n\
       
    26 *  Version:\n\
       
    27 *\n\
       
    28 *  Copyright (C) 2002 Nokia Corporation.\n\
       
    29 *  This material, including documentation and any related\n\
       
    30 *  computer programs, is protected by copyright controlled by\n\
       
    31 *  Nokia Corporation. All rights are reserved. Copying,\n\
       
    32 *  including reproducing, storing,  adapting or translating, any \n\
       
    33 *  or all of this material requires the prior written consent of \n\
       
    34 *  Nokia Corporation. This material also contains confidential \n\
       
    35 *  information which may not be disclosed to others without the \n\
       
    36 *  prior written consent of Nokia Corporation.\n\
       
    37 *\n\
       
    38 * ============================================================================\n\
       
    39 */\n\
       
    40 \n\
       
    41 #if !defined(__%s_H__)\n\
       
    42 #define __%s_H__\n\
       
    43 \n\
       
    44 #include <gdi.h>\n\
       
    45 \n\
       
    46 \n\
       
    47 const TColor256Util K%sColor256Util =\n\
       
    48 	{\n\
       
    49 	// color256array\n\
       
    50 	{\n\
       
    51 ";
       
    52 
       
    53 
       
    54 const char* gMiddleText ="\
       
    55 	},\n\
       
    56 	//color256inverse\n\
       
    57 	{\n\
       
    58 ";
       
    59 
       
    60 
       
    61 const char* gEndText ="\
       
    62 	}\n\
       
    63 	};\n\
       
    64 \n\
       
    65 #endif\n\
       
    66 \n\
       
    67 // End of file\n\
       
    68 ";