📄 aknexlistflagtestview.h
字号:
/* Copyright (c) 2005, Nokia. All rights reserved */
#ifndef __AKNEXLISTFLAGTESTVIEW_H__
#define __AKNEXLISTFLAGTESTVIEW_H__
// INCLUDES
#include "AknExListBaseView.h"
// FORWARD DECLARATIONS
class CAknExListFlagTestContainer;
// CLASS DECLARATION
/**
* CAknExListFlagTestView view class.
*/
class CAknExListFlagTestView : public CAknExListBaseView
{
public: // Constructors and destructor
/**
* CAknExListFlagTestView
* Default constructor.
*/
CAknExListFlagTestView();
/**
* ConstructL
* Symbian constructor.
*/
void ConstructL();
/**
* ~CAknExListFlagTestView
* Destructor.
*/
virtual ~CAknExListFlagTestView();
public: // New functions
/**
* OutlineId
* Returns current outline ID.
* @return outline ID.
*/
TInt OutlineId() const;
public: // From CAknView
/**
* From CAknView, Id.
* Returns the ID of view.
* @return The ID of view.
*/
TUid Id() const;
private: // New functions
/**
* SetTitlePaneL
* Sets text of title pane.
* @param aOutlineId The ID of outline to displayed next.
*/
void SetTitlePaneL( const TInt aOutlineId );
private: // From AknExListBaseView
/**
* DisplayListBoxL
* Displays the listbox by outline ID.
* @param aOutlineId the ID of outline to displayed next.
*/
void DisplayListBoxL( const TInt aOutlineId );
private: //From CAknView
/**
* From CAknView, DoActivateL.
* Creates the Container class object.
* @param aPrevViewId aPrevViewId is not used.
* @param aCustomMessageId aCustomMessageId is not used.
* @param aCustomMessage aCustomMessage is not used.
*/
void DoActivateL(
const TVwsViewId& aPrevViewId,
TUid aCustomMessageId,
const TDesC8& aCustomMessage );
/**
* From CAknView, DoDeactivate.
* Deletes the Container class object.
*/
void DoDeactivate();
private: // Data
/**
* iContainer
* Owned by CAknExListFlagTestView object.
*/
CAknExListFlagTestContainer* iContainer;
};
#endif // __AKNEXLISTFLAGTESTVIEW_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -