📄 oandxdocument.h
字号:
// Copyright (c) 2004, Symbian Software Ltd. All rights reserved.
#ifndef __OANDX_DOCUMENT_H__
#define __OANDX_DOCUMENT_H__
#include <akndoc.h>
class COandXAppUi;
class CEikApplication;
class COandXDocument : public CAknDocument
{
public:
static COandXDocument* NewL(CEikApplication& aApp);
static COandXDocument* NewLC(CEikApplication& aApp);
~COandXDocument();
private:
void ConstructL();
COandXDocument(CEikApplication& aApp);
public: // From CAknDocument
CEikAppUi* CreateAppUiL();
// Restore CEikDocument's implementation of OpenFileL()
CFileStore* OpenFileL(TBool aDoOpen,const TDesC& aFilename,RFs& aFs);
public: // From CEikDocument
void StoreL(CStreamStore& aStore,CStreamDictionary& aStreamDic) const;
void RestoreL(const CStreamStore& aStore,const CStreamDictionary& aStreamDic);
private:
COandXAppUi* iAppUi;
};
#endif // __OANDX_DOCUMENT_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -