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

📄 bitmapappui.h

📁 series60 应用程序开发的源代码 series60 应用程序开发的源代码
💻 H
字号:
#ifndef BITMAPAPPUI_H
#define BITMAPAPPUI_H

// INCLUDES

// System includes
#include <aknviewappui.h>    // CAknViewAppUi

// User includes
#include "Bitmap.hrh"    // TBitampViewNumber

// FORWARD DECLARATIONS
class CAknNavigationControlContainer;
class CAknNavigationDecorator;
class CAknTabGroup;
class CBitmapDrawView;
class CBitmapBitBltView;
class CBitmapBitBltMaskView;


// CLASS DECLARATION

/**
 *
 * @class    CBitmapAppUi BitmapAppUi.h 
 * @brief    This is the application UI class the Bitmap example
 *
 * Copyright (c) EMCC Software Ltd 2003
 * @version    1.0
 * 
 */

class CBitmapAppUi : public CAknViewAppUi
{
public: // Constructor and destructor

    void ConstructL();
    ~CBitmapAppUi();

private: // from CEikAppUi
    
    void HandleCommandL(TInt aCommand);
    
private: // from CCoeAppUi

    virtual TKeyResponse HandleKeyEventL(
                const TKeyEvent& aKeyEvent,TEventCode aType);

private: // data
    
    CBitmapDrawView* iDrawView;    // Not owned by this class.
    CBitmapBitBltView* iBitBltView;    // Not owned by this class.
    CBitmapBitBltMaskView* iBitBltMaskView;    // Not owned by this class.
    CAknNavigationControlContainer* iNaviPane;
    CAknTabGroup* iTabGroup;
    CAknNavigationDecorator* iDecoratedTabGroup;

};

#endif    // #ifndef BITMAPAPPUI_H

// End of File

⌨️ 快捷键说明

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