00001 /* 00002 * ============================================================================== 00003 * Name : AknToolbarObserver.h 00004 * Part of : EikStd 00005 * Interface : UI Framework APIs 00006 * Description : Observer for avkon toolbar 00007 * Version : 1.0 00008 * 00009 * Copyright (c) 2005 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 00021 00022 #ifndef __AKNTOOLBAROBSERVER_H__ 00023 #define __AKNTOOLBAROBSERVER_H__ 00024 00025 // INCLUDES 00026 #include <e32def.h> 00027 00028 // FORWARD DECLARATIONS 00029 class CAknToolbar; 00030 00031 // CLASS DECLARATION 00032 00039 class MAknToolbarObserver 00040 { 00041 public: 00048 IMPORT_C virtual void DynInitToolbarL( TInt aResourceId, 00049 CAknToolbar* aToolbar ); 00050 00055 virtual void OfferToolbarEventL( TInt aCommand ) = 0; 00056 00057 protected: 00058 IMPORT_C virtual TInt MAknToolbarObserver_Reserved_1(); 00059 IMPORT_C virtual TInt MAknToolbarObserver_Reserved_2(); 00060 }; 00061 00062 #endif // __AKNTOOLBAROBSERVER_H__ 00063 00064 // end of file