aknpopupfader.h

Go to the documentation of this file.
00001 /*
00002 * ============================================================================
00003 *  Name     : AknPopupFader.h
00004 *  Part of  : Avkon
00005 *
00006 *  Description:
00007 *  Version:
00008 *
00009 *  Copyright © 2002 Nokia Corporation.
00010 *  This material, including documentation and any related 
00011 *  computer programs, is protected by copyright controlled by 
00012 *  Nokia Corporation. All rights are reserved. Copying, 
00013 *  including reproducing, storing,  adapting or translating, any 
00014 *  or all of this material requires the prior written consent of 
00015 *  Nokia Corporation. This material also contains confidential 
00016 *  information which may not be disclosed to others without the 
00017 *  prior written consent of Nokia Corporation.
00018 * ============================================================================
00019 */
00020 // AknPopupFader.h
00021 //
00022 // Copyright (c) 1997-2001 Symbian Ltd.  All rights reserved.
00023 //
00024 
00025 #if !defined(__AKNPOPUPFADER_H__)
00026 #define __AKNPOPUPFADER_H__
00027 
00028 #include <e32base.h>
00029 
00030 class CCoeControl;
00031 
00034 class MAknFadedComponent
00035         {
00036 public:
00039         IMPORT_C virtual TInt CountFadedComponents();
00042         IMPORT_C virtual CCoeControl* FadedComponent(TInt aIndex);
00043         };
00044 
00047 class TAknPopupFader
00048         {
00049 public:
00055         IMPORT_C void FadeBehindPopup(MAknFadedComponent* aComponent, CCoeControl* aParent, TBool aFade);
00056 
00057 public: // internal
00058         static void CreateStaticL();
00059 
00060 private:
00061         void FadeBehindPopupL(MAknFadedComponent* aComponent, CCoeControl* aParent, TBool aFade);
00062 
00063 private:
00064         TBool iBackgroundFaded; // unused
00065         };
00066 
00067 
00068 #endif

Copyright © Nokia Corporation 2001-2008
Back to top