alarmui/alarmalertwidget/alarmalertinterface/src/alarmalertwrapper.cpp
author hgs
Mon, 28 Jun 2010 15:22:02 +0530
changeset 45 b6db4fd4947b
parent 18 c198609911f9
child 55 2c54b51f39c4
permissions -rw-r--r--
201025

/*
* 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: 
*
*/
// alarmalertwrapper.h

// User includes
#include "alarmalertwrapper.h"
#include "alarmalertwidget.h"

// ---------------------------------------------------------
// AlarmAlert::AlarmAlert
// rest of the details are commented in the header
// ---------------------------------------------------------
//
EXPORT_C AlarmAlert::AlarmAlert(AlarmAlertObserver *observer)
{
	// Construct the client interface
    mAlarmWidget = new AlarmAlertWidget(observer);
}

// ---------------------------------------------------------
// AlarmAlert::~AlarmAlert
// rest of the details are commented in the header
// ---------------------------------------------------------
//
EXPORT_C AlarmAlert::~AlarmAlert()
{
    // Cleanup
	if (mAlarmWidget) {
		delete mAlarmWidget;
	}
}

// ---------------------------------------------------------
// AlarmAlert::showAlarmAlert
// rest of the details are commented in the header
// ---------------------------------------------------------
//
EXPORT_C bool AlarmAlert::showAlarmAlert(SAlarmInfo *alarmInfo)
{
    // Forward the call to the client
	return mAlarmWidget->showAlarmDialog(alarmInfo);
}

// ---------------------------------------------------------
// AlarmAlert::dismissAlarmAlert
// rest of the details are commented in the header
// ---------------------------------------------------------
//
EXPORT_C void AlarmAlert::dismissAlarmAlert()
{
    // Forward the call to the client
	mAlarmWidget->dismissAlarmDialog();
}

// ---------------------------------------------------------
// AlarmAlert::updateAlarmAlert
// rest of the details are commented in the header
// ---------------------------------------------------------
//
EXPORT_C bool AlarmAlert::updateAlarmAlert(SAlarmInfo *alarmInfo)
{
    // Forward the call to the client
	return mAlarmWidget->updateAlarmDialog(alarmInfo);
}