00001 00002 /* 00003 * ============================================================================ 00004 * Name : akntitlepaneobserver.h 00005 * Part of : AVKON 00006 * 00007 * Description: 00008 * Interface class for titlepane. This observer is used 00009 * by applications to observe when title pane has been actioned. 00010 * 00011 * Version: 00012 * 00013 * Copyright © 2005 Nokia Corporation. 00014 * This material, including documentation and any related 00015 * computer programs, is protected by copyright controlled by 00016 * Nokia Corporation. All rights are reserved. Copying, 00017 * including reproducing, storing, adapting or translating, any 00018 * or all of this material requires the prior written consent of 00019 * Nokia Corporation. This material also contains confidential 00020 * information which may not be disclosed to others without the 00021 * prior written consent of Nokia Corporation. 00022 * ============================================================================ 00023 */ 00024 00025 #ifndef AKNTITLEPANEOBSERVER_H 00026 #define AKNTITLEPANEOBSERVER_H 00027 00028 #include <e32base.h> 00029 00030 class MAknTitlePaneObserver 00031 { 00032 public: 00033 enum TAknTitlePaneEvents 00034 { 00035 EAknTitlePaneTapped 00036 }; 00037 00038 public: 00044 virtual void HandleTitlePaneEventL( TInt aEventID ) = 0; 00045 }; 00046 00047 #endif // AKNTITLEPANEOBSERVER_H