#include <app/vcal.h>
class CParserPropertyValueExtendedAlarm : public CParserTimePropertyValue |
Public Member Functions | |
---|---|
CParserPropertyValueExtendedAlarm(CVersitExtendedAlarm *) | |
~CParserPropertyValueExtendedAlarm() | |
virtual IMPORT_C void | ConvertAllDateTimesToUTCL(const TTimeIntervalSeconds &, const CVersitDaylight *) |
virtual IMPORT_C void | ConvertAllUTCDateTimesToMachineLocalL(const TTimeIntervalSeconds &) |
virtual IMPORT_C void | ExternalizeL(RWriteStream &, const Versit::TEncodingAndCharset &, TInt) |
virtual IMPORT_C TBool | IsAsciiCharacterSetSufficient() |
CVersitExtendedAlarm * | Value() |
An extended alarm property value parser for a vCalendar entity.
An alarm action can be attached with a vEvent or a vTodo. The value for the alarm action is stored as a CVersitExtendedAlarm object.
Note: The UID for an extended alarm property value is KVCalPropertyExtendedAlarmUid.
IMPORT_C | CParserPropertyValueExtendedAlarm | ( | CVersitExtendedAlarm * | aValue | ) |
Constructs a new extended alarm property value with a pointer to a CVersitExtendedAlarm.
Parameter | Description |
---|---|
aValue | Pointer to the alarm. The property value takes ownership of the pointer. |
IMPORT_C | ~CParserPropertyValueExtendedAlarm | ( | ) |
Frees all resources owned by the property value, prior to its destruction.
IMPORT_C void | ConvertAllDateTimesToUTCL | ( | const TTimeIntervalSeconds & | aIncrement, |
const CVersitDaylight * | aDaylight | |||
) | [virtual] |
Reimplemented from CParserTimePropertyValue::ConvertAllDateTimesToUTCL(const TTimeIntervalSeconds &,const CVersitDaylight *)
Converts the extended alarm time into universal time.
Deprecatedsince 9.1
Parameter | Description |
---|---|
aIncrement | A time interval in seconds which represents the negative of the time zone of the originating machine. For instance, if the time zone is +04:30, aIncrement should be set to -04:30. |
aDaylight | Pointer to the specification for daylight saving. If the alarm's time value is within the period for daylight saving, the value is modified by the daylight saving offset (which accounts for both the time zone and daylight saving rule). |
IMPORT_C void | ConvertAllUTCDateTimesToMachineLocalL | ( | const TTimeIntervalSeconds & | aIncrement | ) | [virtual] |
Reimplemented from CParserTimePropertyValue::ConvertAllUTCDateTimesToMachineLocalL(const TTimeIntervalSeconds &)
Converts the extended alarm time to machine-local time.
Deprecatedsince 9.1
Parameter | Description |
---|---|
aIncrement | A time interval which represents the number of seconds which is to be added to the date/time value. This should normally be the universal time offset for the machine's locale. |
IMPORT_C void | ExternalizeL | ( | RWriteStream & | aStream, |
const Versit::TEncodingAndCharset & | aEncodingCharset, | |||
TInt | aLengthOutput | |||
) | [virtual] |
Reimplemented from CParserPropertyValue::ExternalizeL(RWriteStream &,const Versit::TEncodingAndCharset &,TInt)
Externalises the extended alarm property value into aStream.
Parameter | Description |
---|---|
aStream | Stream to which the value should be externalised. |
aEncodingCharset | Contains the character set and encoding into which the property value should be converted. |
aLengthOutput | The amount of text that has been outputted on the line so far, which needs to be taken into account when calculating if and where any line break should occur. |
IMPORT_C TBool | IsAsciiCharacterSetSufficient | ( | ) | [virtual] |
Reimplemented from CParserPropertyValue::IsAsciiCharacterSetSufficient()
Tests whether the property value can be represented using the ASCII character set.
Returns: ETrue if the property value can be represented using the ASCII character set. If not, EFalse.
CVersitExtendedAlarm * | Value | ( | ) | const [inline] |
Gets a pointer to the extended alarm property value.
Returns: Pointer to the extended alarm property value.