ldleniefeilongviewone.h

来自「symbian 视图切换源代码,很有学习价值」· C头文件 代码 · 共 47 行

H
47
字号
/* Copyright (c) 2008, NieFeiLong. All rights reserved */

#ifndef __LDLENIEFEILONG_VIEWONE_H__
#define __LDLENIEFEILONG_VIEWONE_H__


#include <aknview.h>

const TUid KViewOneId = {1};

class CLDLENieFeiLongContainerOne;

class CLDLENieFeiLongViewOne: public CAknView
    {
public:

    static CLDLENieFeiLongViewOne* NewL();

    static CLDLENieFeiLongViewOne* NewLC();
	

    ~CLDLENieFeiLongViewOne();

public: // from CAknView

    TUid Id() const;

    void HandleCommandL(TInt aCommand);

    void DoActivateL(const TVwsViewId& aPrevViewId,
                   TUid aCustomMessageId,
                   const TDesC8& aCustomMessage);

    void DoDeactivate();

    void ConstructL();

private:

	/*! @var iContainer container for this view */
    CLDLENieFeiLongContainerOne* iContainer;

    };


#endif // __LDLENIEFEILONG_VIEWONE_H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?