2001-11-07 23:29:04 +03:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2001-11-07 22:18:46 +03:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
2001-11-07 23:29:04 +03:00
|
|
|
* The Original Code is OEone Calendar Code, released October 31st, 2001.
|
2001-11-07 22:18:46 +03:00
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* OEone Corporation.
|
2001-11-07 23:29:04 +03:00
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2001-11-07 22:18:46 +03:00
|
|
|
*
|
2001-11-07 23:29:04 +03:00
|
|
|
* Contributor(s): Mostafa Hosseini <mostafah@oeone.com>
|
2002-07-09 18:21:56 +04:00
|
|
|
* ArentJan Banck <ajbanck@planet.nl>
|
2001-11-07 22:18:46 +03:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
2001-11-07 23:29:04 +03:00
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2003-10-25 00:40:32 +04:00
|
|
|
|
|
|
|
/* Header file for oeICalEventImpl.cpp containing its CID and CONTRACTID.*/
|
|
|
|
|
2002-04-05 02:41:14 +04:00
|
|
|
#ifndef _OEICALEVENTIMPL_H_
|
|
|
|
#define _OEICALEVENTIMPL_H_
|
2001-11-07 22:18:46 +03:00
|
|
|
|
|
|
|
#include "oeIICal.h"
|
2001-12-21 01:16:08 +03:00
|
|
|
#include "oeDateTimeImpl.h"
|
|
|
|
#include "nsISimpleEnumerator.h"
|
|
|
|
#include "nsISupportsPrimitives.h"
|
|
|
|
#include "nsSupportsPrimitives.h"
|
2002-07-03 20:18:36 +04:00
|
|
|
#include "nsISupportsArray.h"
|
2002-07-11 01:24:08 +04:00
|
|
|
#include "nsString.h"
|
2003-02-14 21:05:46 +03:00
|
|
|
#include "nsVoidArray.h"
|
2001-12-21 01:16:08 +03:00
|
|
|
|
2001-11-07 22:18:46 +03:00
|
|
|
extern "C" {
|
|
|
|
#include "ical.h"
|
|
|
|
}
|
|
|
|
|
|
|
|
#define OE_ICALEVENT_CID \
|
|
|
|
{ 0x31bda500, 0xee5e, 0x4a4a, { 0x9a, 0xb4, 0x7b, 0x4b, 0x3e, 0x87, 0x40, 0x05 } }
|
|
|
|
|
|
|
|
#define OE_ICALEVENT_CONTRACTID "@mozilla.org/icalevent;1"
|
|
|
|
|
2002-07-15 20:20:29 +04:00
|
|
|
#define ICALEVENT_VERSION "2.0"
|
|
|
|
#define ICALEVENT_PRODID "-//Mozilla.org/NONSGML Mozilla Calendar V1.0//EN"
|
|
|
|
|
2002-08-22 18:44:01 +04:00
|
|
|
/* event enumerator */
|
|
|
|
class
|
|
|
|
oeEventEnumerator : public nsISimpleEnumerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
oeEventEnumerator();
|
|
|
|
virtual ~oeEventEnumerator();
|
|
|
|
|
|
|
|
// nsISupports interface
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsISimpleEnumerator interface
|
|
|
|
NS_DECL_NSISIMPLEENUMERATOR
|
|
|
|
|
|
|
|
NS_IMETHOD AddEvent( nsISupports *event );
|
|
|
|
|
|
|
|
private:
|
|
|
|
PRUint32 mCurrentIndex;
|
2003-02-14 21:05:46 +03:00
|
|
|
nsCOMPtr<nsISupportsArray> mEventVector;
|
2002-08-22 18:44:01 +04:00
|
|
|
};
|
|
|
|
|
2001-12-27 18:44:00 +03:00
|
|
|
class
|
2001-12-21 01:16:08 +03:00
|
|
|
oeDateEnumerator : public nsISimpleEnumerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
oeDateEnumerator();
|
|
|
|
virtual ~oeDateEnumerator();
|
|
|
|
|
|
|
|
// nsISupports interface
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsISimpleEnumerator interface
|
|
|
|
NS_DECL_NSISIMPLEENUMERATOR
|
|
|
|
|
|
|
|
NS_IMETHOD AddDate( PRTime date );
|
|
|
|
|
|
|
|
private:
|
2003-02-14 21:05:46 +03:00
|
|
|
PRInt32 mCurrentIndex;
|
|
|
|
nsVoidArray mDateVector;
|
2001-12-21 01:16:08 +03:00
|
|
|
};
|
2001-11-07 22:18:46 +03:00
|
|
|
|
|
|
|
/* oeIcalEvent Header file */
|
|
|
|
class oeICalEventImpl : public oeIICalEvent
|
|
|
|
{
|
|
|
|
public:
|
2002-04-05 02:41:14 +04:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_OEIICALEVENT
|
|
|
|
oeICalEventImpl();
|
|
|
|
virtual ~oeICalEventImpl();
|
|
|
|
/* additional members */
|
2002-04-09 01:40:09 +04:00
|
|
|
bool ParseIcalComponent( icalcomponent *vcalendar );
|
2002-04-05 02:41:14 +04:00
|
|
|
icalcomponent *AsIcalComponent();
|
|
|
|
icaltimetype GetNextAlarmTime( icaltimetype begin );
|
|
|
|
bool matchId( const char *id );
|
2002-10-30 18:55:02 +03:00
|
|
|
icaltimetype GetNextRecurrence( icaltimetype begin, bool *isbeginning );
|
2002-05-22 18:01:38 +04:00
|
|
|
icaltimetype GetPreviousOccurrence( icaltimetype beforethis );
|
2002-08-22 18:44:01 +04:00
|
|
|
NS_IMETHODIMP SetParent( oeIICal *parent );
|
2002-09-06 19:23:00 +04:00
|
|
|
icaltimetype CalculateEventTime( icaltimetype alarmtime );
|
2002-12-06 23:31:20 +03:00
|
|
|
void ChopAndAddEventToEnum( struct icaltimetype startdate, nsISimpleEnumerator **eventlist,
|
|
|
|
bool isallday, bool isbeginning );
|
2003-08-15 22:08:48 +04:00
|
|
|
void SetType( Componenttype type );
|
|
|
|
|
2001-12-21 01:16:08 +03:00
|
|
|
private:
|
2003-08-15 22:08:48 +04:00
|
|
|
Componenttype m_type;
|
2002-04-05 02:41:14 +04:00
|
|
|
char *m_id;
|
2002-03-02 01:07:45 +03:00
|
|
|
char *m_syncid;
|
2002-07-11 01:24:08 +04:00
|
|
|
nsCString m_title;
|
2002-08-13 21:15:49 +04:00
|
|
|
nsCString m_description;
|
|
|
|
nsCString m_location;
|
|
|
|
nsCString m_category;
|
|
|
|
nsCString m_url;
|
2002-07-09 18:21:56 +04:00
|
|
|
short m_priority;
|
|
|
|
eventMethodProperty m_method;
|
|
|
|
eventStatusProperty m_status;
|
2001-12-21 01:16:08 +03:00
|
|
|
bool m_isprivate;
|
|
|
|
bool m_allday;
|
|
|
|
bool m_hasalarm;
|
|
|
|
unsigned long m_alarmlength;
|
2003-08-22 17:27:20 +04:00
|
|
|
icalparameter_related m_alarmtriggerrelation;
|
2001-12-21 01:16:08 +03:00
|
|
|
char *m_alarmunits;
|
|
|
|
char *m_alarmemail;
|
|
|
|
char *m_inviteemail;
|
|
|
|
short m_recurtype;
|
|
|
|
unsigned long m_recurinterval;
|
2002-12-05 21:10:57 +03:00
|
|
|
unsigned long m_recurcount;
|
2001-12-21 01:16:08 +03:00
|
|
|
bool m_recur;
|
|
|
|
bool m_recurforever;
|
|
|
|
char *m_recurunits;
|
|
|
|
short m_recurweekdays;
|
|
|
|
short m_recurweeknumber;
|
2002-10-21 20:03:26 +04:00
|
|
|
icaldurationtype m_duration;
|
2001-12-21 01:16:08 +03:00
|
|
|
oeDateTimeImpl *m_start;
|
|
|
|
oeDateTimeImpl *m_end;
|
2002-07-09 18:21:56 +04:00
|
|
|
oeDateTimeImpl *m_stamp;
|
2001-12-21 01:16:08 +03:00
|
|
|
oeDateTimeImpl *m_recurend;
|
|
|
|
icaltimetype m_lastalarmack;
|
2004-02-13 01:42:32 +03:00
|
|
|
icaltimetype m_lastmodified;
|
2003-02-14 21:05:46 +03:00
|
|
|
nsVoidArray m_exceptiondates;
|
|
|
|
nsVoidArray m_snoozetimes;
|
2001-12-21 21:05:13 +03:00
|
|
|
icaltimetype CalculateAlarmTime( icaltimetype date );
|
2001-12-21 01:16:08 +03:00
|
|
|
bool IsExcepted( PRTime date );
|
2003-08-22 17:27:20 +04:00
|
|
|
icaldurationtype GetLength();
|
2002-07-03 20:18:36 +04:00
|
|
|
nsCOMPtr<nsISupportsArray> m_attachments;
|
2002-07-11 17:33:42 +04:00
|
|
|
nsCOMPtr<nsISupportsArray> m_contacts;
|
2002-08-22 18:44:01 +04:00
|
|
|
oeIICal *m_calendar;
|
2001-11-07 22:18:46 +03:00
|
|
|
};
|
|
|
|
|
2002-05-22 18:01:38 +04:00
|
|
|
/*******************************************************************************************/
|
|
|
|
#define OE_ICALEVENTDISPLAY_CONTRACTID "@mozilla.org/icaleventdisplay;1"
|
|
|
|
|
|
|
|
class oeICalEventDisplayImpl : public oeIICalEventDisplay
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_FORWARD_OEIICALEVENT(mEvent->)
|
|
|
|
NS_DECL_OEIICALEVENTDISPLAY
|
|
|
|
oeICalEventDisplayImpl( oeIICalEvent *event );
|
|
|
|
virtual ~oeICalEventDisplayImpl();
|
|
|
|
private:
|
|
|
|
icaltimetype m_displaydate;
|
2002-10-22 21:33:05 +04:00
|
|
|
icaltimetype m_displaydateend;
|
2002-05-22 18:01:38 +04:00
|
|
|
nsCOMPtr<oeIICalEvent> mEvent;
|
|
|
|
};
|
|
|
|
|
2002-04-05 02:41:14 +04:00
|
|
|
#endif
|