navigationpanecontainer1.h

来自「series60 应用程序开发的源代码 series60 应用程序开发的源代码」· C头文件 代码 · 共 45 行

H
45
字号
#ifndef __NAVIGATIONPANE_CONTAINER1_H__
#define __NAVIGATIONPANE_CONTAINER1_H__

// INCLUDES
#include <coecntrl.h>    // CCoeControl

// FORWARD DECLARATIONS

// CLASS DECLARATION

/**
*
* @class    CNavigationPaneContainer1 NavigationPaneContainer1.h
* @brief    This is a container class for the NavigationPane example based on the
* Series 60 view switching architecture. It allows the user to change
* the visibility of the status pane.
*
* Copyright (c) EMCC Software Ltd 2003
* @version    1.0
*
*/
class CNavigationPaneContainer1 : public CCoeControl
{
public: // constructors and destructor

    static CNavigationPaneContainer1* NewL(const TRect& aRect);
    static CNavigationPaneContainer1* NewLC(const TRect& aRect);
    ~CNavigationPaneContainer1();

private: // constructor

    void ConstructL(const TRect& aRect);

private: // from CoeControl

    void Draw(const TRect& aRect) const;

private: // data

};

#endif    // __NAVIGATIONPANE_CONTAINER1_H__

// End of File

⌨️ 快捷键说明

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