fontsupport/fontutils/rom/fonts_variant.iby
author William Roberts <williamr@symbian.org>
Tue, 23 Mar 2010 16:09:27 +0000
branchSymbian3_Theme
changeset 35 838be9535c06
parent 2 abcbdabaa4c5
child 36 3cfc3bd625af
child 99 e871a07c0ce0
permissions -rw-r--r--
Start integration branch for Symbian^3 Theme The theme has been built using Carbide.ui on S60 5th Edition using the N97 plugin The source code in sf/mw/uiresources/skins/Symbian/srcdata was used to generate the installable SIS file which lives in the group directory, but the aim here is to build the theme for delivery in the ROM (preferrably as the default theme). Running "sbs -b bld.inf -c winscw" should build cleanly and deliver a matched set of files which then show up in the Settings | Themes | General list. Attempting to install it produces "Theme Corrupted".

/*
* 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: 
*
*/

#ifndef FONTS_VARIANT_IBY
#define FONTS_VARIANT_IBY

#ifdef __HINDI_ROM_CONTENT
// Shaper needs to be included for proper looking Indic
 #include <iculayoutengine.iby>
#endif

// Rasteriser always included
ECOM_PLUGIN(ityperast.dll, ityperast.RSC)

// Include proper font set based on configuration
#ifdef __CHINESE
 #ifdef FF_LINKED_FONTS_CHINESE
  // Do not include S60 fonts if product fonts flag is set
  #ifndef FF_PRODUCT_FONTS
   data=ABI_DIR\BUILD_DIR\s60snr.ttf          resource\Fonts\s60snr.ttf
   data=ABI_DIR\BUILD_DIR\s60ssb.ttf          resource\Fonts\s60ssb.ttf
   data=ABI_DIR\BUILD_DIR\s60tsb.ttf          resource\Fonts\s60tsb.ttf
  #endif
 #endif

 #ifdef __CHINESE_PRC_FONTS

  #ifdef FF_CHINESE_FONTS_HIRES

   // HiRes fonts only used in high resolutions
   #if defined(__LAYOUT_360_640_TOUCH) || defined(__LAYOUT_640_360_TOUCH) \
   || defined(__LAYOUT_320_480) || defined(__LAYOUT_320_480_TOUCH) \
   || defined(__LAYOUT_480_320) || defined(__LAYOUT_480_320_TOUCH) \
   || defined(__LAYOUT_480_640) || defined(__LAYOUT_480_640_TOUCH) \
   || defined(__LAYOUT_640_480) || defined(__LAYOUT_640_480_TOUCH) \
   || defined (FF_LAYOUT_480_640_VGA3) || defined (FF_LAYOUT_640_480_VGA3)

    // Reso OK, include HiRes font
    data=ABI_DIR\BUILD_DIR\S60SC_C.ttf        resource\Fonts\S60SC_C.ttf
   #else
    // Invalid configuration: HiRes fonts enabled in low or unknown resolution device
    #error "Feature configuration error: Chinese HiRes fonts not supported in this resolution!"
   #endif

  #else  // Not FF_CHINESE_FONTS_HIRES - use regular stroke
    data=ABI_DIR\BUILD_DIR\S60SC.ccc          resource\Fonts\S60SC.ccc
  #endif

 #endif //__CHINESE_PRC_FONTS

 #ifdef __CHINESE_TAIWAN_HK_FONTS

  #ifdef FF_CHINESE_FONTS_HIRES

   // HiRes fonts only used in high resolutions
   #if defined(__LAYOUT_360_640_TOUCH) || defined(__LAYOUT_640_360_TOUCH) \
    || defined(__LAYOUT_320_480) || defined(__LAYOUT_320_480_TOUCH) \
    || defined(__LAYOUT_480_320) || defined(__LAYOUT_480_320_TOUCH) \
    || defined(__LAYOUT_480_640) || defined(__LAYOUT_480_640_TOUCH) \
    || defined(__LAYOUT_640_480) || defined(__LAYOUT_640_480_TOUCH) \
    || defined (FF_LAYOUT_480_640_VGA3) || defined (FF_LAYOUT_640_480_VGA3)

    // Reso OK, include HiRes font
    data=ABI_DIR\BUILD_DIR\S60TCHK_C.ttf      resource\Fonts\S60TCHK_C.ttf
   #else
    // Invalid configuration: HiRes fonts enabled in low or unknown resolution device
    #error "Feature configuration error: Chinese HiRes fonts not supported in this resolution!"
   #endif

  #else  // Not FF_CHINESE_FONTS_HIRES - use regular stroke
    data=ABI_DIR\BUILD_DIR\S60TCHK.ccc        resource\Fonts\S60TCHK.ccc
  #endif

 #endif //__CHINESE_TAIWAN_HK_FONTS

#elif defined(__JAPANESE)

 data=ABI_DIR\BUILD_DIR\HeiseiGothS60.ttf     resource\Fonts\HeiseiGothS60.ttf
	
#elif defined(__LOCALES_65_IBY__)

 data=ABI_DIR\BUILD_DIR\Series60Korean.ttf    resource\Fonts\Series60Korean.ttf

#else  // Must be western
 // Do not include S60 fonts if product fonts flag is set
 #ifndef FF_PRODUCT_FONTS
  data=ABI_DIR\BUILD_DIR\s60snr.ttf           resource\Fonts\s60snr.ttf
  data=ABI_DIR\BUILD_DIR\s60ssb.ttf           resource\Fonts\s60ssb.ttf
  data=ABI_DIR\BUILD_DIR\s60tsb.ttf           resource\Fonts\s60tsb.ttf
 #endif

#endif //__CHINESE

// Digi font available in all variants
data=ABI_DIR\BUILD_DIR\S60ZDIGI.ttf           resource\Fonts\S60ZDIGI.ttf

#endif // FONTS_VARIANT_IBY