tempcontainer.h
来自「symbian有关文件操作的一个很好的例子」· C头文件 代码 · 共 47 行
H
47 行
#ifndef __TempCONTAINER_H__
#define __TempCONTAINER_H__
// INCLUDES
#include <aknview.h>
class CAddressCenter;
class CTempContainer : public CCoeControl
{
public: // Constructors and destructor
CTempContainer();
virtual ~CTempContainer();
void ConstructL(const TRect& aRect);
TKeyResponse OfferKeyEventL( const TKeyEvent& aKeyEvent, TEventCode aType );
void SetAddress(CAddressCenter* aAddressCenter);
private: // Functions from base classes
void SizeChanged();
TInt CountComponentControls() const;
CCoeControl* ComponentControl( TInt aIndex ) const;
void Draw( const TRect& aRect ) const;
CAddressCenter* m_pAddressCenter;
};
#endif // __TempCONTAINER_H__
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?