settingsdialog.cpp

来自「基于symbian的收发SMS、MMS消息」· C++ 代码 · 共 38 行

CPP
38
字号
/*
* ============================================================================
*  Name     : CSettingsDialog from SettingsDialog.cpp
*  Part of  : EmailExample
*  Created  : 09/11/2003 by Forum Nokia
*  Implementation notes:
*		Dialog which implements custom choicelist
*
*  Version  : 1.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#include "SettingsDialog.h"
#include "eikdialg.h"
#include "EmailExample.hrh"
#include "eikchlst.h"

CSettingsDialog::CSettingsDialog()
	{
	}

void CSettingsDialog::PreLayoutDynInitL()
	{
	CCoeControl* myControlPtr =		this->Control(EChoiceListEditor1);
	CEikChoiceList* myChoiceList =	static_cast<CEikChoiceList*>(myControlPtr);
	myChoiceList->SetCurrentItem( iEngine->iProtocolType );
	}

TBool CSettingsDialog::OkToExitL(TInt /*aKeycode*/)
	{
	CCoeControl* myControlPtr =		this->Control(EChoiceListEditor1);
	CEikChoiceList* myChoiceList =	static_cast<CEikChoiceList*>(myControlPtr);
	iEngine->iSettingProtocolType = myChoiceList->CurrentItem();
	return ETrue;
	}

⌨️ 快捷键说明

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