⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 s60testappui.h

📁 使用symbian的s60实现的小游戏俄罗斯方块(第而步)
💻 H
字号:
#ifndef __S60TEST_APPUI_H__
#define __S60TEST_APPUI_H__

#include <aknappui.h>

class CS60TestDocument;

// Forward reference
class CS60TestAppView;

class CS60TestAppUi : public CAknAppUi
{
public:
  void ConstructL();
  CS60TestAppUi(CS60TestDocument *aDoc);
  ~CS60TestAppUi();

public: // from CAknAppUi
  void HandleCommandL(TInt aCommand);

private:
  CS60TestAppView *iAppView;
  CS60TestDocument *iDoc;
};


#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -