mylistboxdocument.h
来自「MyListBox Symbian 3rd custom control.」· C头文件 代码 · 共 44 行
H
44 行
// --------------------------------------------------------------------------
// MyListBoxDocument.h
//
// Copyright 2005, Antony Pranata
// http://www.antonypranata.com
//
// A document class for custom list box example.
// --------------------------------------------------------------------------
#ifndef MYLISTBOXDOCUMENT_H
#define MYLISTBOXDOCUMENT_H
// INCLUDES
#include <qikdocument.h>
// CONSTANTS
// FORWARD DECLARATIONS
class CEikAppUi;
// CLASS DECLARATION
/**
* CMyListBoxDocument application class.
*/
class CMyListBoxDocument : public CQikDocument
{
public: // Constructors and destructor
static CMyListBoxDocument* NewL(CEikApplication& aApp);
virtual ~CMyListBoxDocument();
private:
CMyListBoxDocument(CEikApplication& aApp);
void ConstructL();
private:
CEikAppUi* CreateAppUiL();
};
#endif // MYLISTBOXDOCUMENT_H
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?