emailuis/uicomponents/inc/fstextviewerskindata.h
branchRCL_3
changeset 25 3533d4323edc
parent 0 8466d47a6819
equal deleted inserted replaced
24:d189ee25cf9d 25:3533d4323edc
       
     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: This file defines class CFsTextViewerSkinData.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_FSTEXTVIEWERSKINDATA_H
       
    20 #define C_FSTEXTVIEWERSKINDATA_H
       
    21 
       
    22 #include <e32base.h>
       
    23 
       
    24 class CFsTextViewerSkinData : public CBase
       
    25     {
       
    26     public:
       
    27         static CFsTextViewerSkinData* NewL();
       
    28         ~CFsTextViewerSkinData();
       
    29 
       
    30     public:
       
    31         TRgb iCursorColor;
       
    32         TRgb iMarkedTextBg;
       
    33         TRgb iMarkedTextColor;
       
    34         TRgb iHotspotSelectedColor;
       
    35         TRgb iHotspotSelectedBg;
       
    36         TRgb iHotspotDimmedColor;
       
    37         TRgb iHotspotDimmedBg;
       
    38 
       
    39     private:
       
    40         CFsTextViewerSkinData();
       
    41         void ConstructL();
       
    42     };
       
    43 
       
    44 #endif //C_FSTEXTVIEWERSKINDATA_H