s60testappui.h

来自「基于symbian s60 2nd的俄罗斯方块(注意:只能在2nd环境中工作)」· C头文件 代码 · 共 35 行

H
35
字号
#ifndef __S60TEST_APPUI_H__
#define __S60TEST_APPUI_H__

#include <aknappui.h>
#include "s60testengine.h"

class CS60TestDocument;

// Forward reference
class CS60TestAppView;

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

public: // from CAknAppUi
  void HandleCommandL(TInt aCommand);
  TKeyResponse HandleKeyEventL(const TKeyEvent& /*aKeyEvent*/,
    TEventCode /*aType*/);
  void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane *aMenuPane);

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


#endif

⌨️ 快捷键说明

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