⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eggclockappui.h

📁 symbian s60环境一个鸡蛋型图像钟表源代码
💻 H
字号:
/*
============================================================================
 Name        : EggClockAppUi.h
 Author      : Michele Berionne
 Version     :
 Copyright   : 
 Description : Main application UI class (controller)
============================================================================
*/

#ifndef __EGGCLOCKAPPUI_H__
#define __EGGCLOCKAPPUI_H__

// INCLUDES
#include <aknappui.h>

// FORWARD DECLARATIONS
class CEggClockAppView;

class CEggClockAppUi : public CAknAppUi
{
  public: // Constructors and destructor
    void ConstructL();
    CEggClockAppUi();
    virtual ~CEggClockAppUi();

  private:  // Functions from base classes
    void HandleCommandL( TInt aCommand );
    void HandleWsEventL(const TWsEvent& aEvent, CCoeControl* aDestination);
    TKeyResponse HandleKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
    void HandleStatusPaneSizeChange();
    void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);
  
  private: // New methods
    MDesCArray* CreateNotificationArrayL() const;    

  private: // Data
    CEggClockAppView* m_pAppContainer;
};

#endif // __EGGCLOCKAPPUI_H__

// End of File

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -