diff -r 000000000000 -r f72a12da539e idlehomescreen/xmluirendering/renderingplugins/xntexteditorfactory/src/xntexteditor.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/idlehomescreen/xmluirendering/renderingplugins/xntexteditorfactory/src/xntexteditor.cpp Thu Dec 17 08:40:49 2009 +0200 @@ -0,0 +1,103 @@ +/* +* Copyright (c) 2005-2006 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: Implementation wrapper for CEikEdwin +* +*/ + +#include +#include +#include +#include "xncomponent.h" +#include "xntexteditor.h" +#include "xntexteditoradapter.h" + +// ============================ MEMBER FUNCTIONS =============================== + +// ----------------------------------------------------------------------------- +// CXnTextEditor::NewL +// Symbian static 1st phase constructor +// ----------------------------------------------------------------------------- +// +CXnTextEditor* CXnTextEditor::NewL() + { + CXnTextEditor* self = new( ELeave ) CXnTextEditor; + + CleanupStack::PushL( self ); + self->ConstructL(); + CleanupStack::Pop(); + + return self; + } + +// ----------------------------------------------------------------------------- +// CXnTextEditor::ConstructL +// Symbian 2nd phase constructor can leave. +// ----------------------------------------------------------------------------- +// +void CXnTextEditor::ConstructL() + { + CXnComponent::ConstructL(); + } + +// ----------------------------------------------------------------------------- +// CXnTextEditor::ConstructL +// C++ default constructor +// ----------------------------------------------------------------------------- +// +CXnTextEditor::CXnTextEditor() + { + } + +// ----------------------------------------------------------------------------- +// CXnTextEditor::ConstructL +// C++ destructor +// ----------------------------------------------------------------------------- +// +CXnTextEditor::~CXnTextEditor() + { + } + +// --------------------------------------------------------- +// CXnTextEditor::SetTextL +// --------------------------------------------------------- +// +void CXnTextEditor::SetTextL(const TDesC& aText) + { + (static_cast(ControlAdapter()))->SetTextL(aText); + } + +// --------------------------------------------------------- +// CXnTextEditor::Text +// --------------------------------------------------------- +// +const HBufC* CXnTextEditor::Text() + { + return (static_cast(ControlAdapter()))->Text(); + } + +// --------------------------------------------------------- +// --------------------------------------------------------- +XnComponentInterface::MXnComponentInterface* CXnTextEditor::MakeInterfaceL(const TDesC8& aType) + { + if( aType != XnTextEditorInterface::KType ) + { + return NULL; + } + + XnTextEditorInterface::MXnTextEditorInterface* editorIf = static_cast< XnTextEditorInterface::MXnTextEditorInterface* >( this ); + + return editorIf; + } + +// End of file