shapessplashcontainer.h

来自「series60 应用程序开发的源代码 series60 应用程序开发的源代码」· C头文件 代码 · 共 36 行

H
36
字号
#ifndef SHAPESSPLASHCONTAINER_H
#define SHAPESSPLASHCONTAINER_H

// INCLUDES
#include <coecntrl.h>    // CCoeControl

// FORWARD DECLARATIONS

/**
 *
 * @class    CShapesSplashContainer ShapesSplashContainer.h 
 * @brief    The control which displays the splash view/instructions for 
 * use of the Shapes application
 * Copyright (c) EMCC Software Ltd 2003
 * @version    1.0
 * 
 */
class CShapesSplashContainer : public CCoeControl
{
public:    // Construction and destruction
    static CShapesSplashContainer* NewL(const TRect& aRect);
    static CShapesSplashContainer* NewLC(const TRect& aRect);
    ~CShapesSplashContainer();

private:    // From CCoeControl
    void Draw(const TRect& aRect) const;

private:    // Construction.
    CShapesSplashContainer();
    void ConstructL(const TRect& aRect);
};

#endif    // SHAPESSPLASHCONTAINER_H

// End of File

⌨️ 快捷键说明

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