?? numericeditorform.h
字號:
#ifndef NUMERICEDITORFORM_H
#define NUMERICEDITORFORM_H
// INCLUDES
// System includes
#include <aknform.h> // CAknForm
// User includes
#include "SynchToDoDb.h" // TNumericEditorEmployee
#include "ToDo.h"
// CLASS DECLARATION
/**
*
* @class CNumericEditorForm NumericEditorForm.h
* @brief This is the Form class for the NumericEditor form example based on the
* standard Symbian OS architecture.
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class CNumericEditorForm : public CAknForm
{
public: // Constructor
static CNumericEditorForm* NewL(CToDo& aToDo, TBool& aSaveState);
private: // from CAknForm
void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);
TBool SaveFormDataL();
void DoNotSaveFormDataL();
void PostLayoutDynInitL();
private: // Constructor
CNumericEditorForm (CToDo& aToDo, TBool& aSaveState);
private: // members
void LoadFormValuesFromDataL();
private: //data
/*TNumericEditorEmployee& iEmployee;*/
CToDo& iToDo;
TBool& iSaveState;//存盤還是不存
};
#endif // #ifndef NUMERICEDITORFORM_H
// End of File
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -