examples/ForumNokia/Symbian_OS_Basics_Lab_Exercises_v3_1/Lab_04309.cb1/starter/inc/AOLabTextFlashAppUi.h

00001 // Copyright (c) 2006 Nokia Corporation.
00002 
00003 #ifndef __AOLABTEXTFLASHAPPUI_h__
00004 #define __AOLABTEXTFLASHAPPUI_h__
00005 
00006 #include <aknappui.h>
00007 
00008 class CAOLabTextFlashContainer;
00009 
00010 // CAOLabTextFlashAppUi application UI class.
00011 // Interacts with the user through the UI and request 
00012 // message processing from the handler class
00013 class CAOLabTextFlashAppUi : public CAknAppUi
00014     {
00015     public: // Constructors and destructor
00016 
00017         void ConstructL();
00018         CAOLabTextFlashAppUi();
00019         virtual ~CAOLabTextFlashAppUi();
00020 
00021     private:  // Functions from base classes
00022 
00023         // From CEikAppUi
00024         void HandleCommandL( TInt aCommand );
00025 
00026                 // From MEikStatusPaneObserver
00027                 void HandleStatusPaneSizeChange();
00028                 
00029                 void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);
00030         
00031     private: // Data
00032 
00033         CAOLabTextFlashContainer* iAppContainer; 
00034     };
00035 
00036 #endif // __AOLABTEXTFLASHAPPUI_h__
00037 
00038 // End of File

Generated by  doxygen 1.6.2