uiacceltk/hitchcock/coretoolkit/inc/HuiS60TextStyle.h
changeset 0 15bf7259bb7c
equal deleted inserted replaced
-1:000000000000 0:15bf7259bb7c
       
     1 /*
       
     2 * Copyright (c) 2007 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:   S60 text style encapsulates a S60 - specific unique text style 
       
    15 *                in Hitchcock UI Toolkit usage.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef __THUIS60TEXTSTYLE_H__
       
    22 #define __THUIS60TEXTSTYLE_H__
       
    23 
       
    24 #include <e32base.h>
       
    25 #include <uiacceltk/HuiFont.h>
       
    26 #include <uiacceltk/huitextstyle.h>
       
    27 
       
    28 /**
       
    29  * THuis60TextStyle presents a S60 specific text style. It implements handling and
       
    30  * rendering of Series 60 specific text styles.
       
    31  */
       
    32 class THuiS60TextStyle: public THuiTextStyle 
       
    33 {
       
    34 public:
       
    35     /* Constructors and destructor. */
       
    36 
       
    37     /** @beginAPI */
       
    38 
       
    39     /**
       
    40      * Default constructor. Create a new S60 specific text style.
       
    41      *
       
    42      * @param aParent   A handle id set into the THuiFont by the Texture manager or skin
       
    43      * @param aFontSpec Symbian OS Font Specification to store
       
    44      */
       
    45     IMPORT_C THuiS60TextStyle(TInt aFontStyleId, TInt aParentId);
       
    46 
       
    47     /** @endAPI */
       
    48     
       
    49     void Init();
       
    50     
       
    51 private:
       
    52 
       
    53 };
       
    54 
       
    55 #endif  //__THUIS60TEXTSTYLE_H__