Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
2 * Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Intermediate class for defining data shared between numeric
19 #if !defined(__AKNNUMED_H_)
29 * Intermediate class for defining data shared between numeric edwins
31 * @since Series 60 0.9
33 class CAknNumericEdwin : public CEikEdwin
39 IMPORT_C virtual ~CAknNumericEdwin();
43 * Indicates a validiton status for values read from the control.
46 enum TValidationStatus
48 EValueValid = KErrNone,/**< Read value is valid. */
49 EValueTooSmall, /**< Read value is smaller than the minimum value. */
50 EValueTooLarge, /**< Read value is larger than the maximum value. */
51 EValueNotParsed, /**< Read value can not be parsed. */
52 EEmpty /**< The control is empty. */
56 IMPORT_C void HandlePointerEventL(const TPointerEvent& aPointerEvent);
60 * Maps a key event so that any numeric character is mapped to the correct
61 * digit type that this editor is using.
62 * @since Series 60 2.0
63 * @param aKeyEvent The key event to modify.
64 * @param aType The type to modify.
65 * @param aDigitType The digit type to map all numeric characters to.
67 IMPORT_C void MapKeyEvent(
69 TEventCode& /*aType*/,
70 TDigitType aDigitType) const;
77 IMPORT_C void* ExtensionInterface( TUid aInterface );
78 private: // from CEikEdwin
79 IMPORT_C virtual void Reserved_3();
81 TInt iSpare; // Needs at least some data