cscoredialog.h

来自「symbian 的一个 二维飞行游戏 源码 及相关技术文章」· C头文件 代码 · 共 45 行

H
45
字号
// Copyright 2002 Kenneth Guy,
// 
// CScoreDialog.h
//

#ifndef _CSCOREDIALOG_H_
#define _CSCOREDIALOG_H_

/** \file CScoreDialog.h 
    defines class CScoreDialog */


#include <eikappui.h>
#include <eikapp.h>
#include <eikdoc.h>
#include <eikenv.h>
#include <uikon.hrh>
#include <eikmfne.h>
#include <eikdialg.h>
#include <eikon.hrh>
#include <eikon.hrh>
#include <eikdialg.h>

#include <Game.rsg>
#include "Game.hrh"

#include "CHighScores.h"

/** High score enter name dialog. */

class CScoreDialog : public CEikDialog {	
public:
  static void RunDlgLD(CHighScores &aHighScores,TInt aScore);

private:
  CScoreDialog(CHighScores &aHighScores, TInt aScore);
  TBool OkToExitL(TInt aKeycode); 

private:
  CHighScores &iHighScores; ///< High score table
  TInt         iScore; ///< Players score
};

#endif

⌨️ 快捷键说明

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