AOLabTextFlashAppUi.h
上传用户:laixiong
上传日期:2007-03-11
资源大小:2994k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. // Copyright (c) 2006 Nokia Corporation.
  2. #ifndef __AOLABTEXTFLASHAPPUI_h__
  3. #define __AOLABTEXTFLASHAPPUI_h__
  4. #include <aknappui.h>
  5. class CAOLabTextFlashContainer;
  6. // CAOLabTextFlashAppUi application UI class.
  7. // Interacts with the user through the UI and request 
  8. // message processing from the handler class
  9. class CAOLabTextFlashAppUi : public CAknAppUi
  10.     {
  11.     public: // Constructors and destructor
  12.         void ConstructL();
  13.         CAOLabTextFlashAppUi();
  14.         virtual ~CAOLabTextFlashAppUi();
  15.     private:  // Functions from base classes
  16.         // From CEikAppUi
  17.         void HandleCommandL( TInt aCommand );
  18. // From MEikStatusPaneObserver
  19. void HandleStatusPaneSizeChange();
  20. void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);
  21.         
  22.     private: // Data
  23.         CAOLabTextFlashContainer* iAppContainer; 
  24.     };
  25. #endif // __AOLABTEXTFLASHAPPUI_h__
  26. // End of File