⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iapconnectconninfocontainer.h

📁 这是一个手机编程s60 基于c++的关于手机连接internet的数据库协议
💻 H
字号:
/*
* ============================================================================
*  Name     : CIAPConnectContainer from IAPConnectContainer.h
*  Part of  : Internet Access Points Example v2.0
*  Description:
*     Declares container control for application.
*  Created  : 01.09.2006 by Forum Nokia
*  Version  : 2.0
*  Copyright: Forum Nokia
* ============================================================================
*/

#ifndef IAPCONNECT_CONNINFOCONTAINER_H
#define IAPCONNECT_CONNINFOCONTAINER_H

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

// CLASS DECLARATION

/**
*  CIAPConnectConnInfoContainer container control class.
*  
*/
class CIAPConnectConnInfoContainer : public CCoeControl
    {
    public: // Constructors and destructor
        
        /**
        * EPOC default constructor.
        * @param aRect Frame rectangle for container.
        */
        void ConstructL(const TRect& aRect);

        /**
        * Destructor.
        */
        ~CIAPConnectConnInfoContainer();
        
    public: // New functions
		void ShowInfoL(const TDesC& aInfoText);
        void AppendInfoL(const TDesC& aInfoText);
        void ClearInfoL();
	
    private: 
	// New functions

	// Functions from base classes

       /**
        * From CoeControl,SizeChanged.
        */
        void SizeChanged();


       /**
        * From CoeControl,CountComponentControls.
        */
        TInt CountComponentControls() const;

       /**
        * From CCoeControl,ComponentControl.
        */
        CCoeControl* ComponentControl(TInt aIndex) const;

       /**
        * From CCoeControl,Draw.
        */
        void Draw(const TRect& aRect) const;

		/**
        * From CCoeControl,OfferKeyEventL.
        */
		TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
      
    private: //data
        
		CEikRichTextEditor* iRtEd; // Rich Text Editor
    };

#endif

// End of File

⌨️ 快捷键说明

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