calendarui/caleneditor/inc/caleneditor.h
changeset 57 bb2d3e476f29
parent 55 2c54b51f39c4
child 63 a3cb48f6c889
--- a/calendarui/caleneditor/inc/caleneditor.h	Mon Jul 26 13:54:38 2010 +0530
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,86 +0,0 @@
-/*
-* Copyright (c) 2009 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 CalenEditor class.
-*
-*/
-
-#ifndef CALENEDITOR_H
-#define CALENEDITOR_H
-
-// System includes
-#include <QObject>
-#include <qglobal.h>
-#include <hbview.h>
-
-// Forward declarations
-class QFile;
-class QString;
-class QDateTime;
-class AgendaUtil;
-class AgendaEntry;
-class CalenEditorPrivate;
-
-#ifdef CALENEDITOR_LIB
-#   define CALENEDITOR_EXPORT Q_DECL_EXPORT
-#else
-#   define CALENEDITOR_EXPORT Q_DECL_IMPORT
-#endif
-
-class CalenEditor : public QObject //HbView
-{
-	Q_OBJECT
-
-public:
-	enum CreateType{
-		TypeAppointment = 0,
-		// TODO: Need to add more types
-		TypeUnKnown = -1
-	};
-	
-	CALENEDITOR_EXPORT explicit CalenEditor(QObject *parent = 0);
-	CALENEDITOR_EXPORT explicit CalenEditor(AgendaUtil *agendaUtil, QObject *parent = 0);
-	CALENEDITOR_EXPORT virtual ~CalenEditor();
-	CALENEDITOR_EXPORT void edit(const QFile &handle, bool launchCalendar);
-	CALENEDITOR_EXPORT void edit(AgendaEntry entry, bool launchCalendar);
-	CALENEDITOR_EXPORT void edit(ulong id, bool launchCalendar);
-	CALENEDITOR_EXPORT void create(QDateTime newEntryDateTime,
-	            bool launchCalendar,
-	            CalenEditor::CreateType type = TypeAppointment);
-	CALENEDITOR_EXPORT void create(AgendaEntry entry,
-	            bool launchCalendar,
-	            CalenEditor::CreateType type = TypeAppointment);
-    /**
-    * This Function saves the entries
-    * should only calls after edit or create function has called 
-    */
-	CALENEDITOR_EXPORT void saveAndCloseEditor();
-
-signals:
-	void entrySaved();
-	void dialogClosed();
-	void calendarLaunchFailed(int error);
-
-private:
-#ifdef TESTCALENEDITOR
-	friend class TestCalenEditor;
-#endif
-	CalenEditorPrivate *d_ptr;
-	Q_DECLARE_PRIVATE_D(d_ptr, CalenEditor)
-	Q_DISABLE_COPY(CalenEditor)
-};
-
-#endif // CALENEDITOR_H
-
-// End of file	--Don't remove this.