taskmanagerconnform.h

来自「c++下s60终端对终端传输协议」· C头文件 代码 · 共 75 行

H
75
字号
/*
* ============================================================================
*  Name     : CTaskManagerConnForm from TaskManagerConnForm.h
*  Part of  : TaskManager
*  Created  : 03/13/2005 by Forum Nokia
*  Version  : 1.2
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef TASKMANAGERCONNFORM_H
#define TASKMANAGERCONNFORM_H

// INCLUDE FILES
#include <AknDialog.h>
#include <e32base.h>

// FORWARD DECLARATIONS
class TTaskManagerConnInfo;
class CTaskManagerSettingsItemList;

// CLASS DECLARATION

/**
* A form class for querying the connection settings from the user.
*
*/
class CTaskManagerConnForm : public CAknDialog
	{
public: // New functions

	/**
	* Runs and destroys the form.
	* @param aConnInfo is where the connections setting defined by the user are set.
	* @return ETrue if OK was pressed, EFalse if not.
	*/
	static TBool RunDlgLD( TTaskManagerConnInfo& aConnInfo );
	
	
private: // Functions from base classes

	/**
	* From CAknDialog
	*/
	TBool OkToExitL( TInt aButtonId );

	/**
	* From CEikDialog
	*/	
	SEikControlInfo CreateCustomControlL(TInt aControlType);
	
	/**
	* From CEikDialog
	*/
	CTaskManagerConnForm::TFormControlTypes ConvertCustomControlTypeToBaseControlType(TInt aControlType) const;

private:
	
	/**
	* Symbian OS Default constructor.
	*/
	CTaskManagerConnForm( TTaskManagerConnInfo& aConnInfo );

private: // Data members

	TTaskManagerConnInfo& iConnInfo;
	CTaskManagerSettingsItemList* iSettings;
	
	};
	
#endif

// End of file

⌨️ 快捷键说明

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