📄 noughtsandcrossessettingsview.h
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -