meetingrequest/mrversit2/inc/cesmricalrulesegment.h
changeset 0 8466d47a6819
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/meetingrequest/mrversit2/inc/cesmricalrulesegment.h	Thu Dec 17 08:39:21 2009 +0200
@@ -0,0 +1,112 @@
+/*
+* Copyright (c) 2005 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:  Holds the definition of CESMRICalRuleSegment.
+*
+*
+*/
+
+
+#ifndef CESMRICALRULESEGMENT_H
+#define CESMRICALRULESEGMENT_H
+
+// System includes
+#include <e32base.h>	// CBase
+
+// Forward class declarations
+class CESMRICalValue;
+
+/**
+Class representing a recurrence rule value segment.
+@publishedPartner
+*/
+class CESMRICalRuleSegment : public CBase
+	{
+public:	// Enumerations.
+	enum TSegmentType
+		{
+		/** A frequency (FREQ) segment.*/
+		ESegFreq,
+		/** An UNTIL segment.*/
+		ESegUntil,
+		/** A COUNT segment.*/
+		ESegCount,
+		/** An INTERVAL segment.*/
+		ESegInterval,
+		/** A BYSECOND segment.*/
+		ESegBySecond,
+		/** A BYMINUTE segment.*/
+		ESegByMinute,
+		/** A BYHOUR segment.*/
+		ESegByHour,
+		/** A BYDAY segment.*/
+		ESegByDay,
+		/** A BYMONTHDAY segment.*/
+		ESegByMonthDay,
+		/** A BYYEARDAY segment.*/
+		ESegByYearDay,
+		/** A BYWEEKNO segment.*/
+		ESegByWeekNo,
+		/** A BYMONTH segment.*/
+		ESegByMonth,
+		/** A BYSETPOS segment.*/
+		ESegByPos,
+		/** A WKST segment.*/
+		ESegWkSt,
+		/** An X-name extension segment.*/
+		ESegExtension
+		};
+
+	enum TFreq
+		{
+		/** Frequency in seconds.*/
+		EFreqSecondly,
+		/** Frequency in minutes.*/
+		EFreqMinutely,
+		/** Frequency in hours.*/
+		EFreqHourly,
+		/** Frequency in days.*/
+		EFreqDaily,
+		/** Frequency in weeks.*/
+		EFreqWeekly,
+		/** Frequency in months.*/
+		EFreqMonthly,
+		/** Frequency in years.*/
+		EFreqYearly
+		};
+
+public:	// Construction/destruction.
+	static CESMRICalRuleSegment* NewL(const TDesC& aSource);
+	static CESMRICalRuleSegment* NewLC(const TDesC& aSource);
+	~CESMRICalRuleSegment();
+
+public:	// Methods.
+	IMPORT_C const TDesC& TypeName() const;
+	IMPORT_C const RPointerArray<CESMRICalValue>& Values() const;
+	IMPORT_C TSegmentType Type() const;
+	IMPORT_C TFreq FreqL() const;
+
+private:	// Construction.
+	CESMRICalRuleSegment();
+	void ConstructL(const TDesC& aSource);
+	void SetTypeL(const TDesC& aType);
+
+private:	// Attributes.
+	TSegmentType iType;
+	HBufC* iTypeString;
+	RPointerArray<CESMRICalValue> iValues;
+	};
+
+#endif	// CESMRICALRULESEGMENT_H
+
+// End of File