1.1 --- a/epoc32/include/mw/eikscbut.h Tue Nov 24 13:55:44 2009 +0000
1.2 +++ b/epoc32/include/mw/eikscbut.h Tue Mar 16 16:12:26 2010 +0000
1.3 @@ -1,1 +1,101 @@
1.4 -eikscbut.h
1.5 +/*
1.6 +* Copyright (c) 1997-1999 Nokia Corporation and/or its subsidiary(-ies).
1.7 +* All rights reserved.
1.8 +* This component and the accompanying materials are made available
1.9 +* 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
1.10 +* which accompanies this distribution, and is available
1.11 +* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.12 +*
1.13 +* Initial Contributors:
1.14 +* Nokia Corporation - initial contribution.
1.15 +*
1.16 +* Contributors:
1.17 +*
1.18 +* Description:
1.19 +*
1.20 +*/
1.21 +
1.22 +
1.23 +#if !defined(__EIKSCBUT_H__)
1.24 +#define __EIKSCBUT_H__
1.25 +
1.26 +#include <eikbutb.h>
1.27 +#include <lafpublc.h>
1.28 +
1.29 +/**
1.30 + * CEikScrollButton
1.31 + *
1.32 + * @deprecated Do not use
1.33 + */
1.34 +class CEikScrollButton : public CEikButtonBase
1.35 + {
1.36 +public:
1.37 + /** @deprecated */
1.38 + enum TType
1.39 + {
1.40 + ENudgeLeft=SLafScrollButton::ENudgeLeft, /** @deprecated */
1.41 + ENudgeUp=SLafScrollButton::ENudgeUp, /** @deprecated */
1.42 + ENudgeRight=SLafScrollButton::ENudgeRight, /** @deprecated */
1.43 + ENudgeDown=SLafScrollButton::ENudgeDown, /** @deprecated */
1.44 + EPageLeft=SLafScrollButton::EPageLeft, /** @deprecated */
1.45 + EPageUp=SLafScrollButton::EPageUp, /** @deprecated */
1.46 + EPageRight=SLafScrollButton::EPageRight, /** @deprecated */
1.47 + EPageDown=SLafScrollButton::EPageDown, /** @deprecated */
1.48 + EHome=SLafScrollButton::EHome, /** @deprecated */
1.49 + ETop=SLafScrollButton::ETop, /** @deprecated */
1.50 + EEnd=SLafScrollButton::EEnd, /** @deprecated */
1.51 + EBottom=SLafScrollButton::EBottom /** @deprecated */
1.52 + };
1.53 +
1.54 +public:
1.55 +
1.56 + /** @deprecated */
1.57 + enum TTypeOfScrollBar
1.58 + {
1.59 + ENormal =0x00, /** @deprecated */
1.60 + EArrowHead =0x01 /** @deprecated */
1.61 + };
1.62 +
1.63 +public: // class specific functions
1.64 +
1.65 + /** @deprecated */
1.66 + IMPORT_C ~CEikScrollButton();
1.67 +
1.68 + /** @deprecated */
1.69 + IMPORT_C CEikScrollButton(TType aType);
1.70 +
1.71 + /** @deprecated */
1.72 + IMPORT_C TType Type() const;
1.73 +
1.74 +public: // From CCoeControl
1.75 + IMPORT_C void HandlePointerEventL(const TPointerEvent& aPointerEvent);
1.76 +private:
1.77 + /**
1.78 + * From CAknControl
1.79 + */
1.80 + IMPORT_C void* ExtensionInterface( TUid aInterface );
1.81 +private:
1.82 + TInt iSpare;
1.83 + };
1.84 +
1.85 +
1.86 +/**
1.87 + * CEikArrowHeadScrollButton
1.88 + *
1.89 + * @deprecated Do not use
1.90 + */
1.91 +
1.92 +class CEikArrowHeadScrollButton : public CEikScrollButton
1.93 + {
1.94 +
1.95 +public:
1.96 +
1.97 + /** @deprecated */
1.98 + IMPORT_C static CEikArrowHeadScrollButton* NewL(const CCoeControl* aParent, TType aType);
1.99 +private:
1.100 + CEikArrowHeadScrollButton();
1.101 + };
1.102 +
1.103 +
1.104 +
1.105 +#endif