?? oandxdocument.h
字號:
// Copyright (c) 2004 - 2006, Symbian Software Ltd. All rights reserved.
#ifndef OANDX_DOCUMENT_H
#define OANDX_DOCUMENT_H
#include <eikapp.h>
#include <akndoc.h>
class COandXAppUi;
class COandXDocument : public CAknDocument
/**
Standard document class creates the application's UI,
and stores and restores the game state.
*/
{
public:
static COandXDocument* NewL(CEikApplication& aApp);
virtual ~COandXDocument();
private:
COandXDocument(CEikApplication& aApp);
public:
// implement CEikDocument
virtual CEikAppUi* CreateAppUiL();
private:
COandXAppUi* iAppUi;
};
#endif // OANDX_DOCUMENT_H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -