noughtsandcrossessettingsview.h
来自「symbian s60 3rd 一个电脑作图」· C头文件 代码 · 共 96 行
H
96 行
/* Copyright (c) 2005, Nokia. All rights reserved */
#ifndef __NOUGHTSANDCROSSESSETTINGSVIEW_H__
#define __NOUGHTSANDCROSSESSETTINGSVIEW_H__
// INCLUDES
#include <aknview.h>
// FORWARD DECLARATIONS
class CNoughtsAndCrossesSettingListbox;
// CLASS DECLARATION
/**
* CNoughtsAndCrossesSettingsView view class.
*
*/
class CNoughtsAndCrossesSettingsView : public CAknView
{
public:
/**
* NewL.
* Two-phased constructor.
* Construct a CNoughtsAndCrossesSettingsView using two phase construction,
* and return a pointer to the created object
* @return A pointer to the created instance of CNoughtsAndCrossesSettingsView
*/
static CNoughtsAndCrossesSettingsView* NewL();
/**
* ~CNoughtsAndCrossesView
* Virtual Destructor.
*/
virtual ~CNoughtsAndCrossesSettingsView();
public: // Functions from base classes
/**
* From CAknView, Id.
* Returns the ID of view.
* @return The ID of view.
*/
virtual TUid Id() const;
/**
* From CAknView, HandleCommandL.
* Handles the commands.
* @param aCommand Command to be handled.
*/
virtual void HandleCommandL (TInt aCommand);
private: // Functions from base classes
/**
* From CAknView, DoActivateL.
* Creates the Container class object.
* @param aPrevViewId Specified TVwsViewId.
* @param aCustomMessageId Specified TUid.
* @param aCustomMessage Specified custom message.
*/
virtual void DoActivateL (const TVwsViewId& aPrevViewId,
TUid aCustomMessageId, const TDesC8& aCustomMessage);
/**
* From CAknView, DoDeactivate.
* Deletes the Container class object.
*/
virtual void DoDeactivate();
private:
/**
* CNoughtsAndCrossesSettingsView.
* C++ default constructor.
*/
CNoughtsAndCrossesSettingsView();
/**
* ConstructL.
* 2nd phase constructor.
*/
void ConstructL();
private: // Data
CNoughtsAndCrossesSettingListbox* iListBox;
};
#endif // __NOUGHTSANDCROSSESSETTINGSVIEW_H__
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?