calendarui/views/inc/calenweekdata.h
branchRCL_3
changeset 66 bd7edf625bdd
parent 0 f979ecb2b13e
equal deleted inserted replaced
65:12af337248b1 66:bd7edf625bdd
       
     1 /*
       
     2 * Copyright (c) 2002 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:  Week view hour's data definition
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef     CALENWEEKDATA_H
       
    20 #define     CALENWEEKDATA_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include "calenweekhour.h"
       
    24 
       
    25 #include <calenconstants.h>
       
    26 #include <calinstance.h>
       
    27 #include <e32base.h>
       
    28 
       
    29 //  DATA TYPES
       
    30 
       
    31 NONSHARABLE_STRUCT( SDisplayData )
       
    32     {
       
    33     TBuf<10> iHourDes;  // 10 should be sufficient for all locales...
       
    34     TCalenWeekHour iHourData[KCalenDaysInWeek];
       
    35     };
       
    36 
       
    37 // ListBox cell order
       
    38 enum TWeekLBCellOrder
       
    39     {
       
    40     ECalenWeekHour,
       
    41     ECalenWeekFirstDay,
       
    42     ECalenWeekSecondDay,
       
    43     ECalenWeekThirdDay,
       
    44     ECalenWeekForthDay,
       
    45     ECalenWeekFifthDay,
       
    46     ECalenWeekSixthDay,
       
    47     ECalenWeekSeventhDay
       
    48     };
       
    49 
       
    50 #endif      //  CALENWEEKDATA_H
       
    51 
       
    52 
       
    53 // End of File