aknexeditorcapability.h
来自「国内著名嵌入式培训机构内部资料,内含一些实例代码,包括技术专题书籍」· C头文件 代码 · 共 84 行
H
84 行
/* Copyright (c) 2004, Nokia. All rights reserved */
#ifndef __AKNEXEDITORCAPABILITY_H__
#define __AKNEXEDITORCAPABILITY_H__
// INCLUDES
#include <eikmfne.h>
/**
* CTestEikMfneIntPositive
*/
class CTestEikMfneIntPositive : public CEikMfne
{
public:
/**
* CTestEikMfneIntPositive
* Constructor.
*/
CTestEikMfneIntPositive();
/**
* ~CTestEikMfneIntPositive
* Destructor.
*/
~CTestEikMfneIntPositive();
/**
* InputCapabilities
*/
virtual TCoeInputCapabilities InputCapabilities() const;
};
/**
* CTestEikMfneIntNegative
*/
class CTestEikMfneIntNegative : public CEikMfne
{
public:
/**
* CTestEikMfneIntNegative
* Constructor
*/
CTestEikMfneIntNegative();
/**
* ~CTestEikMfneIntNegative
* Destructor
*/
~CTestEikMfneIntNegative();
/**
* InputCapabilities
*/
virtual TCoeInputCapabilities InputCapabilities() const;
};
/**
* CTestEikMfneIntBoth
*/
class CTestEikMfneIntBoth : public CEikMfne
{
public:
/**
* CTestEikMfneIntBoth
* Constructor
*/
CTestEikMfneIntBoth();
/**
* ~CTestEikMfneIntBoth
* Destructor
*/
~CTestEikMfneIntBoth();
/**
* InputCapabilities
*/
virtual TCoeInputCapabilities InputCapabilities() const;
};
#endif // __AKNEXEDITORCAPABILITY_H__
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?