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

📄 snowcontainer.h

📁 series 60 自带的一个三维程序
💻 H
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */

#ifndef SNOWCONTAINER_H
#define SNOWCONTAINER_H

// INCLUDES
#include <coecntrl.h>
#include <GLES\egl.h>
#include "snow.h"
   
// CLASS DECLARATION

/**
*  CSnowContainer  container control class.
*  
*/
class CSnowContainer : public CCoeControl, MCoeControlObserver
    {
    public: // Constructors and destructor
        
        /**
        * EPOC default constructor.
        * @param aRect Frame rectangle for container.
        */
        void ConstructL(const TRect& aRect);

        /**
        * Destructor.
        */
        virtual ~CSnowContainer();

    public: // New functions

     /* Callback function for animating the rotating object.
     * Uses CPeriodic active object.
     */
    static TInt DrawCallBack( TAny* aInstance );

    private: // Functions from base classes

       /**
        * From CoeControl,SizeChanged.
        */
        void SizeChanged();

       /**
        * From CoeControl,CountComponentControls.
        */
        TInt CountComponentControls() const;

       /**
        * From CCoeControl,ComponentControl.
        */
        CCoeControl* ComponentControl(TInt aIndex) const;

       /**
        * From CCoeControl,Draw.
        */
        void Draw(const TRect& aRect) const;

       /**
        * From MCoeControlObserver, HandleControlEventL
        */
        // event handling section
        // e.g Listbox events
        void HandleControlEventL(CCoeControl* aControl,TCoeEvent aEventType);
        
    private: //data
        
        EGLDisplay  iEglDisplay;  // The display where the graphics are drawn
        EGLContext  iEglContext;  // The rendering context
        EGLSurface  iEglSurface;  // Window where the graphics are blitted  
        
        CPeriodic*  iPeriodic;    // Active object for animation

    public:  //data
        
        TInt iFrame;               // Framecounter variable
        CSnow* iSnow;
    };

#endif

// End of File

⌨️ 快捷键说明

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