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