calendarui/caleneditor/inc/caleneditorreminderfield.h
author hgs
Mon, 28 Jun 2010 15:22:02 +0530
changeset 45 b6db4fd4947b
parent 23 fd30d51f876b
child 57 bb2d3e476f29
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:
* The header file for CalenEditorReminderField class.
*
*/

#ifndef CALENEDITORREMINDERFIELD_H
#define CALENEDITORREMINDERFIELD_H

// System Includes
#include <QObject>
#include <qglobal.h>

// User Includes
#include "caleneditor_p.h"

// FORWARD DECLARATIONS
class HbDataFormModelItem;
class HbDataForm;
class HbDataFormModelItem;
class HbDateTimePicker;
class CalenEditorDataHandler;

class CalenEditorReminderField : public QObject
{
	Q_OBJECT
	
public:
	CalenEditorReminderField(CalenEditorPrivate* calenEditor,
	                         HbDataForm* form, HbDataFormModel* model,
	                         QObject *parent = NULL);
	virtual ~CalenEditorReminderField();

public:
	void setReminderChoices();
	void addItemToModel();
	void removeItemFromModel();
	void populateReminderItem(bool newEntry);
	QModelIndex modelIndex();
	void setReminderOff();
	void setDefaultAlarmForAllDay();
	void updateReminderChoicesForAllDay(QDate repeatUntilDate);
	void insertReminderTimeField();
	void setDisplayTime();
	void removeReminderTimeField();
	bool isReminderFieldEnabled();
	int reminderItemsCount();
	int currentReminderIndex();
	void setCurrentIndex(int index);
	void disableReminderTimeField();
	bool isReminderTimeForAllDayAdded();
private slots:
	void handleReminderIndexChanged(int index);
	void launchReminderTimePicker();
	void setReminderTimeForAllDay();
private:
	CalenEditorPrivate* mCalenEditor;
	HbDataForm* mEditorForm;
	HbDataFormModel* mCalenEditorModel;
	HbDataFormModelItem* mReminderItem;
	HbDataFormModelItem *mCustomReminderTimeItem;
	HbDateTimePicker *mTimePicker;
	QTime mReminderTimeForAllDay;
	QHash<int, int> mReminderHash;
	bool mReminderTimeAdded;
};

#endif // CALENEDITORREMINDERFIELD_H

// End of file	--Don't remove this.