00001 /* 00002 * ============================================================================ 00003 * Name : aknpopupnotify.h 00004 * Part of : UI Framework Core / AVKON Notifiers Client 00005 * Description : Class definition of AVKON pop-up notifier. 00006 * Version : %version: tr1s60#6 % 00007 * 00008 * Copyright © 2002-2007 Nokia. All rights reserved. 00009 * This material, including documentation and any related computer 00010 * programs, is protected by copyright controlled by Nokia. All 00011 * rights are reserved. Copying, including reproducing, storing, 00012 * adapting or translating, any or all of this material requires the 00013 * prior written consent of Nokia. This material also contains 00014 * confidential information which may not be disclosed to others 00015 * without the prior written consent of Nokia. 00016 * ============================================================================ 00017 */ 00018 #ifndef C_AKNPOPUPNOTIFY_H 00019 #define C_AKNPOPUPNOTIFY_H 00020 00021 #include <aknnotify.h> 00022 00028 NONSHARABLE_CLASS(CAknPopupNotify) : public CAknNotifyBase 00029 { 00030 public: 00034 IMPORT_C static CAknPopupNotify* NewL(); 00035 00039 IMPORT_C static CAknPopupNotify* NewLC(); 00040 00044 IMPORT_C ~CAknPopupNotify(); 00045 00049 IMPORT_C void PopupMessageL(const TDesC& aMessage); 00050 00051 private: 00055 CAknPopupNotify(); 00056 00060 void ConstructL(); 00061 00062 private: 00066 IMPORT_C void CAknNotifyBase_Reserved(); 00067 }; 00068 00069 // C_AKNPOPUPNOTIFY_H 00070 #endif