1.1 --- a/epoc32/include/mw/eikbhelp.h Wed Mar 31 12:27:01 2010 +0100
1.2 +++ b/epoc32/include/mw/eikbhelp.h Wed Mar 31 12:33:34 2010 +0100
1.3 @@ -1,9 +1,9 @@
1.4 // Copyright (c) 2000-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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.8 +// under the terms of "Eclipse Public License v1.0"
1.9 // which accompanies this distribution, and is available
1.10 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.11 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.12 //
1.13 // Initial Contributors:
1.14 // Nokia Corporation - initial contribution.
1.15 @@ -18,29 +18,9 @@
1.16
1.17 #include <coemain.h>
1.18
1.19 -const TUid KEikBubbleHelpUid={0x10008E48};
1.20 -
1.21 -class CCoeControl;
1.22 -
1.23 -/**
1.24 -@publishedPartner
1.25 -@deprecated
1.26 -*/
1.27 -class MEikTriggeredHelp
1.28 - {
1.29 -// The MEikTriggeredHelp class defines an interface for UI classes
1.30 -// to implement triggered, transient help message display.
1.31 -public:
1.32 - virtual void TriggerHelp(const TDesC& aDes,const TRect& aRect,TInt aHandle)=0;
1.33 - virtual void CancelHelp()=0;
1.34 - virtual void CancelHelpTrigger()=0;
1.35 - virtual TBool IsDisplayingHelp(TInt aHandle)=0;
1.36 - virtual void Release()=0;
1.37 -protected:
1.38 - IMPORT_C virtual void MEikTriggeredHelp_Reserved_1();
1.39 - IMPORT_C virtual void MEikTriggeredHelp_Reserved_2();
1.40 - };
1.41 -
1.42 +#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
1.43 +#include <uikon/eikmischelp.h>
1.44 +#endif
1.45
1.46 /** Provides the static functions that control bubble help.
1.47
1.48 @@ -58,35 +38,4 @@
1.49 IMPORT_C static TBool IsDisplaying(TInt aHandle);
1.50 };
1.51
1.52 -
1.53 -/**
1.54 -@publishedPartner
1.55 -@deprecated
1.56 -*/
1.57 -class CEikBubbleHelp : public CCoeStatic
1.58 -// The CEikBubbleHelp class implements global static storage and access to the object providing bubble help
1.59 -// for the application.
1.60 - {
1.61 - ~CEikBubbleHelp();
1.62 -public:
1.63 - IMPORT_C static void SetTriggeredHelpL(MEikTriggeredHelp* aTriggeredHelp);
1.64 -public:
1.65 - static void Trigger(const TDesC& aDes,const TRect& aRect,TInt aHandle=-1);
1.66 - static void Cancel();
1.67 - static void CancelTrigger();
1.68 - static TBool IsDisplaying(TInt aHandle);
1.69 -private:
1.70 - inline CEikBubbleHelp();
1.71 - inline static CEikBubbleHelp* Self();
1.72 -private:
1.73 - MEikTriggeredHelp* iHelp;
1.74 - };
1.75 -
1.76 -inline CEikBubbleHelp::CEikBubbleHelp()
1.77 - : CCoeStatic(KEikBubbleHelpUid)
1.78 - {}
1.79 -
1.80 -inline CEikBubbleHelp* CEikBubbleHelp::Self()
1.81 - {return STATIC_CAST(CEikBubbleHelp*,CCoeEnv::Static(KEikBubbleHelpUid));}
1.82 -
1.83 #endif