1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/mw/graphics/clock/displayaddition.h Wed Mar 31 12:33:34 2010 +0100
1.3 @@ -0,0 +1,68 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#ifndef DISPLAYADDITION_H
1.20 +#define DISPLAYADDITION_H
1.21 +// miscellaneous typedefs
1.22 +//
1.23 +/** @internalComponent
1.24 +WARNING: For internal use ONLY. Compatibility is not guaranteed in future releases.
1.25 +*/
1.26 +typedef TBuf8<1024> TConstructorBuf8;
1.27 +// implementation class
1.28 +
1.29 +//
1.30 +// miscellaneous enums
1.31 +//
1.32 +
1.33 +/** @internalComponent
1.34 +WARNING: For internal use ONLY. Compatibility is not guaranteed in future releases.
1.35 +*/
1.36 +enum TDisplayType // implementation class
1.37 + {
1.38 + EDisplayDigital,
1.39 + EDisplayAnalog
1.40 + };
1.41 +
1.42 +/** @internalComponent
1.43 +WARNING: For internal use ONLY. Compatibility is not guaranteed in future releases.
1.44 +*/
1.45 +enum TAnalogDisplayHandFeatureType // implementation class
1.46 + {
1.47 + EAnalogDisplayHandFeatureLine,
1.48 + EAnalogDisplayHandFeaturePolyLine,
1.49 + EAnalogDisplayHandFeatureCircle
1.50 + };
1.51 +
1.52 +//
1.53 +// display-addition class
1.54 +//
1.55 +
1.56 +class TDisplayAddition
1.57 +/** This class is used in the derivation of TAnalogDisplayHand and TDigitalDisplayTextSection.
1.58 +
1.59 +@internalComponent
1.60 +WARNING: For internal use ONLY. Compatibility is not guaranteed in future releases.
1.61 +*/
1.62 + {
1.63 +public:
1.64 + const TDesC8& Buf() const;
1.65 +protected:
1.66 + TConstructorBuf8 iBuf;
1.67 + };
1.68 +
1.69 +#endif // DISPLAYADDITION_H
1.70 +//
1.71 +