opponentformform.h
来自「series60 应用程序开发的源代码 series60 应用程序开发的源代码」· C头文件 代码 · 共 56 行
H
56 行
#ifndef OPPONENTFORMFORM_H
#define OPPONENTFORMFORM_H
// INCLUDES
// System includes
#include <aknform.h> // CAknForm
// User includes
#include "OpponentFormOpponent.h" // TOpponentFormOpponent
// CLASS DECLARATION
/**
*
* @class COpponentFormForm OpponentFormForm.h
* @brief This is the Form class for a form example based on the
* standard Symbian OS architecture.
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class COpponentFormForm : public CAknForm
{
public: // Constructor
static COpponentFormForm* NewL(TOpponentFormOpponent& aOpponent);
private: // from CAknForm
void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);
TBool SaveFormDataL();
void DoNotSaveFormDataL();
void PreLayoutDynInitL();
private: // Constructor
COpponentFormForm (TOpponentFormOpponent& aOpponent) : iOpponent(aOpponent){};
private: // members
void LoadFormValuesFromDataL();
private: //data
TOpponentFormOpponent& iOpponent;
};
#endif // #ifndef OPPONENTFORMFORM_H
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?