blinklabel.h

来自「《基于Symbian OS的手机开发与应用实践》这本书的配套源码。」· C头文件 代码 · 共 54 行

H
54
字号
/*
* ============================================================================
*  Name     : CBlinkLabel from BlinkLabel.h
*  Part of  : Blink
*  Created  : 05.02.2006 by ToBeReplacedByAuthor
*  Description:
*     Declares blink label control
*  Version  :
*  Copyright: ToBeReplacedByCopyright
* ============================================================================
*/

#ifndef BLINKLABEL_H
#define BLINKLABEL_H

// INCLUDES
#include <eiklabel.h>  // for example label control

// FORWARD DECLARATIONS
class CPeriodic;

// CLASS DECLARATION

/**
*  CBlinkLabel  container control class.
*  
*/
class CBlinkLabel : public CEikLabel
    {
    public: // Constructors and destructor
        /**
        * Destructor.
        */
        ~CBlinkLabel();

    public: // New functions
        void SetBlinkL(TBool aBlink);
        TBool Blink();

    public: // Functions from base classes

    private: // New functions
        static TInt Tick(TAny* aObject); // directly called
        void DoTick(); // indirectly called

    private: //data
        CPeriodic* iPeriodic;

    };

#endif

// End of File

⌨️ 快捷键说明

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