📄 blinklabel.h
字号:
/*
* ============================================================================
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -