diff -r 63be7eb3fc78 -r f28ada11abbf wlanutilities/eapwizard/src/eapwizardpageusernamepassword.cpp --- a/wlanutilities/eapwizard/src/eapwizardpageusernamepassword.cpp Tue Aug 31 16:18:40 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,228 +0,0 @@ -/* - * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). - * All rights reserved. - * This component and the accompanying materials are made available - * under the terms of "Eclipse Public License v1.0" - * which accompanies this distribution, and is available - * at the URL "http://www.eclipse.org/legal/epl-v10.html". - * - * Initial Contributors: - * Nokia Corporation - initial contribution. - * - * Contributors: - * - * Description: - * EAP Wizard Page: Common Username & password query. - * - */ - -// System includes -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -// User includes -#include "wlanwizardhelper.h" -#include "eapwizardpageusernamepassword.h" -#include "eapwizard_p.h" -#include "OstTraceDefinitions.h" -#ifdef OST_TRACE_COMPILER_IN_USE -#include "eapwizardpageusernamepasswordTraces.h" -#endif - - -/*! - \class EapWizardPageUsernamePassword - \brief Implements EAP wizard page: Generic Username & Password page - */ - -// External function prototypes - -// Local constants - -// ======== LOCAL FUNCTIONS ======== - -// ======== MEMBER FUNCTIONS ======== - - -/*! - Constructor. - - @param [in] parent Pointer to EAP Wizard private implementation. - */ -EapWizardPageUsernamePassword::EapWizardPageUsernamePassword( - EapWizardPrivate* parent) : - EapWizardPage(parent), - mDocumentLoader(NULL), - mValidatorUsername(NULL), - mValidatorPassword(NULL), - mWidget(NULL), - mEditUsername(NULL), - mEditPassword(NULL), - mTitleUsername(NULL), - mTitlePassword(NULL) -{ - OstTraceFunctionEntry0( EAPWIZARDPAGEUSERNAMEPASSWORD_EAPWIZARDPAGEUSERNAMEPASSWORD_ENTRY ); - OstTraceFunctionExit0( EAPWIZARDPAGEUSERNAMEPASSWORD_EAPWIZARDPAGEUSERNAMEPASSWORD_EXIT ); -} - -/*! - Destructor. - */ -EapWizardPageUsernamePassword::~EapWizardPageUsernamePassword() -{ - OstTraceFunctionEntry0( DUP1_EAPWIZARDPAGEUSERNAMEPASSWORD_EAPWIZARDPAGEUSERNAMEPASSWORD_ENTRY ); - OstTraceFunctionExit0( DUP1_EAPWIZARDPAGEUSERNAMEPASSWORD_EAPWIZARDPAGEUSERNAMEPASSWORD_EXIT ); -} - -/*! - See WlanWizardPage. - */ -HbWidget* EapWizardPageUsernamePassword::initializePage() -{ - OstTraceFunctionEntry0( EAPWIZARDPAGEUSERNAMEPASSWORD_INITIALIZEPAGE_ENTRY ); - if (!mWidget) { - bool ok = true; - mDocumentLoader.reset( - new HbDocumentLoader(mWizard->wizardHelper()->mainWindow())); - mDocumentLoader->load(":/docml/occ_eap_wizard_05_07.docml", &ok); - Q_ASSERT(ok); - loadDocmlSection(mWizard->wizardHelper()->mainWindow()->orientation()); - - mWidget = qobject_cast (mDocumentLoader->findWidget("view")); - Q_ASSERT(mWidget); - - mTitleUsername = qobject_cast (mDocumentLoader->findWidget("setlabel_55")); - Q_ASSERT(mTitleUsername); - - mTitlePassword = qobject_cast (mDocumentLoader->findWidget("setlabel_56")); - Q_ASSERT(mTitlePassword); - - mEditUsername = qobject_cast (mDocumentLoader->findWidget("lineEditUsername")); - Q_ASSERT(mEditUsername); - - mEditPassword = qobject_cast (mDocumentLoader->findWidget("lineEditPassword")); - Q_ASSERT(mEditPassword); - - mTitlePassword->setPlainText(hbTrId("txt_occ_setlabel_eap_password")); - - ok = connect( - mWizard->wizardHelper()->mainWindow(), - SIGNAL(orientationChanged(Qt::Orientation)), - this, - SLOT(loadDocmlSection(Qt::Orientation))); - Q_ASSERT(ok); - - ok = connect( - mEditUsername, SIGNAL(textChanged(const QString &)), - this, SLOT(textChanged(const QString &))); - Q_ASSERT(ok); - - ok = connect( - mEditPassword, SIGNAL(textChanged(const QString &)), - this, SLOT(textChanged(const QString &))); - Q_ASSERT(ok); - } - - int eapType = mWizard->configurations(EapWizardPrivate::OuterType).toInt(); - - if (eapType != EapQtPluginHandle::PluginLeap) { - eapType = mWizard->configurations(EapWizardPrivate::InnerType).toInt(); - } - - EapQtPluginHandle plugin(static_cast(eapType)); - - mValidatorUsername.reset( - mWizard->eapConfigurationInterface()->validatorEap( - plugin.type(), - EapQtConfig::Username)); - Q_ASSERT(mValidatorUsername.data()); - mValidatorUsername->updateEditor(mEditUsername); - - mValidatorPassword.reset( - mWizard->eapConfigurationInterface()->validatorEap( - plugin.type(), - EapQtConfig::Password)); - Q_ASSERT(mValidatorPassword.data()); - mValidatorPassword->updateEditor(mEditPassword); - - mTitleUsername->setPlainText( - HbParameterLengthLimiter("txt_occ_setlabel_user_name_for_1").arg( - mWizard->eapTypeToString(eapType))); - - OstTraceFunctionExit0( EAPWIZARDPAGEUSERNAMEPASSWORD_INITIALIZEPAGE_EXIT ); - return mWidget; -} - -/*! - Loads the required orientation of docml. - - @param [in] orientation Orientation to be loaded. - */ -void EapWizardPageUsernamePassword::loadDocmlSection(Qt::Orientation orientation) -{ - OstTraceFunctionEntry0( EAPWIZARDPAGEUSERNAMEPASSWORD_LOADDOCMLSECTION_ENTRY ); - EapWizardPage::loadDocmlSection( - mDocumentLoader.data(), - orientation, - ":/docml/occ_eap_wizard_05_07.docml", - "portrait_section", - "landscape_section"); - OstTraceFunctionExit0( EAPWIZARDPAGEUSERNAMEPASSWORD_LOADDOCMLSECTION_EXIT ); -} - -/*! - See WlanWizardPage. - - Validates the content of the page. - - @return true if content is valid. - */ -bool EapWizardPageUsernamePassword::showPage() -{ - OstTraceFunctionEntry0( EAPWIZARDPAGEUSERNAMEPASSWORD_SHOWPAGE_ENTRY ); - bool valid = false; - if (mValidatorUsername->validate(mEditUsername->text()) == - EapQtValidator::StatusOk && - mValidatorPassword->validate(mEditPassword->text()) == - EapQtValidator::StatusOk) { - valid = true; - } - OstTraceFunctionExit0( EAPWIZARDPAGEUSERNAMEPASSWORD_SHOWPAGE_EXIT ); - return valid; -} - -/*! - See WlanWizardPage. - - @return next wizard page: EapWizardPage::PageProcessSettings - */ -int EapWizardPageUsernamePassword::nextId() const -{ - OstTraceFunctionEntry0( EAPWIZARDPAGEUSERNAMEPASSWORD_NEXTID_ENTRY ); - mWizard->setConfigurations(EapWizardPrivate::Username, mEditUsername->text()); - mWizard->setConfigurations(EapWizardPrivate::Password, mEditPassword->text()); - OstTraceFunctionExit0( EAPWIZARDPAGEUSERNAMEPASSWORD_NEXTID_EXIT ); - return EapWizardPage::PageProcessSettings; -} - -/*! - Slot for textChanged() signal from HbLineEdit. - - @param [in] text NOT USED. - */ -void EapWizardPageUsernamePassword::textChanged(const QString & text ) -{ - OstTraceFunctionEntry0( EAPWIZARDPAGEUSERNAMEPASSWORD_TEXTCHANGED_ENTRY ); - Q_UNUSED(text); - mWizard->wizardHelper()->enableNextButton(showPage()); - OstTraceFunctionExit0( EAPWIZARDPAGEUSERNAMEPASSWORD_TEXTCHANGED_EXIT ); -}