lafagnosticuifoundation/clockanim/src/displayaddition.h
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef DISPLAYADDITION_H
       
    17 #define DISPLAYADDITION_H
       
    18 // miscellaneous typedefs
       
    19 //
       
    20 /** @internalComponent
       
    21 WARNING: For internal use ONLY. Compatibility is not guaranteed in future releases.
       
    22 */
       
    23 typedef TBuf8<1024> TConstructorBuf8; 
       
    24 // implementation class
       
    25 
       
    26 //
       
    27 // miscellaneous enums
       
    28 //
       
    29 
       
    30 /** @internalComponent
       
    31 WARNING: For internal use ONLY. Compatibility is not guaranteed in future releases.
       
    32 */
       
    33 enum TDisplayType // implementation class
       
    34 	{
       
    35 	EDisplayDigital,
       
    36 	EDisplayAnalog
       
    37 	};
       
    38 
       
    39 /** @internalComponent
       
    40 WARNING: For internal use ONLY. Compatibility is not guaranteed in future releases.
       
    41 */
       
    42 enum TAnalogDisplayHandFeatureType // implementation class
       
    43 	{
       
    44 	EAnalogDisplayHandFeatureLine,
       
    45 	EAnalogDisplayHandFeaturePolyLine,
       
    46 	EAnalogDisplayHandFeatureCircle
       
    47 	};
       
    48 
       
    49 //
       
    50 // display-addition class
       
    51 //
       
    52 
       
    53 class TDisplayAddition
       
    54 /** This class is used in the derivation of TAnalogDisplayHand and TDigitalDisplayTextSection. 
       
    55 
       
    56 @internalComponent
       
    57 WARNING: For internal use ONLY. Compatibility is not guaranteed in future releases.
       
    58 */
       
    59 	{
       
    60 public:
       
    61 	const TDesC8& Buf() const;
       
    62 protected:
       
    63 	TConstructorBuf8 iBuf;
       
    64 	};
       
    65 
       
    66 #endif // DISPLAYADDITION_H
       
    67 //
       
    68