diff -r 000000000000 -r f72a12da539e idlehomescreen/xmluirendering/renderingplugins/xnpopupfactory/src/xnpopup.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/idlehomescreen/xmluirendering/renderingplugins/xnpopupfactory/src/xnpopup.cpp Thu Dec 17 08:40:49 2009 +0200 @@ -0,0 +1,108 @@ +/* +* Copyright (c) 2002-2004 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 for a popup +* +*/ + + +#include +#include +#include + +#include "xnpopup.h" +#include "xnpopupadapter.h" + +// ============================ MEMBER FUNCTIONS =============================== + + + + +// ----------------------------------------------------------------------------- +// CXnPopup::NewL +// Symbian static 1st phase constructor +// ----------------------------------------------------------------------------- +// +CXnPopup* CXnPopup::NewL() + { + CXnPopup* self = new( ELeave ) CXnPopup; + + CleanupStack::PushL( self ); + self->ConstructL(); + CleanupStack::Pop(); + + return self; + } + +// ----------------------------------------------------------------------------- +// CXnPopup::ConstructL +// Symbian 2nd phase constructor can leave. +// ----------------------------------------------------------------------------- +// +void CXnPopup::ConstructL() + { + CXnComponent::ConstructL(); + } + +// ----------------------------------------------------------------------------- +// CXnPopup::ConstructL +// C++ default constructor +// ----------------------------------------------------------------------------- +// +CXnPopup::CXnPopup() + { + } + +// ----------------------------------------------------------------------------- +// CXnPopup::ConstructL +// C++ destructor +// ----------------------------------------------------------------------------- +// +CXnPopup::~CXnPopup() + { + } + + +// ----------------------------------------------------------------------------- +// CXnPopup::ShowPopup +// Shows the popup +// ----------------------------------------------------------------------------- +void CXnPopup::ShowPopupL(const TRect& aContainerRect) + { + static_cast(ControlAdapter())->ShowPopupL(aContainerRect); + } +void CXnPopup::ShowPopupL(const TRect& aContainerRect, TTimeIntervalMicroSeconds32 aShowDelay, TTimeIntervalMicroSeconds32 aDisplayTime) + { + static_cast(ControlAdapter())->ShowPopupL(aContainerRect, aShowDelay, aDisplayTime); + } + +// ----------------------------------------------------------------------------- +// CXnPopup::HidePopup +// Hides the popup +// ----------------------------------------------------------------------------- +void CXnPopup::HidePopupL() + { + static_cast(ControlAdapter())->HidePopupL(); + } +// ----------------------------------------------------------------------------- +// CXnPopup::MakeInterfaceL +// ----------------------------------------------------------------------------- +XnComponentInterface::MXnComponentInterface* CXnPopup::MakeInterfaceL(const TDesC8& aType) + { + if (aType != XnPopupInterface::KType) + { + return NULL; + } + XnPopupInterface::MXnPopupInterface* popup = static_cast(this); + return popup; + }