author | mickeyl <mickeyl> | 2004-11-16 19:14:18 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-11-16 19:14:18 (UTC) |
commit | ea3945a9bd8f9830f70b1efa133f9df13b19362f (patch) (side-by-side diff) | |
tree | f2ea22cc50e9aa8aa73ee7dea148f41c563c9666 /libopie/pim/orecur.h | |
parent | 1c6f490e8541626f68422e0a3a7c7281d7f5b7d3 (diff) | |
download | opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.zip opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.gz opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.bz2 |
libopie1 goes into unsupported
-rw-r--r-- | libopie/pim/orecur.h | 107 |
1 files changed, 0 insertions, 107 deletions
diff --git a/libopie/pim/orecur.h b/libopie/pim/orecur.h deleted file mode 100644 index d7ecd90..0000000 --- a/libopie/pim/orecur.h +++ b/dev/null @@ -1,107 +0,0 @@ -/* - * GPL from TT - */ - -#ifndef OPIE_RECUR_H -#define OPIE_RECUR_H - -#include <sys/types.h> - -#include <qdatetime.h> -#include <qvaluelist.h> -#include <qmap.h> - - -/** - * Class to handle Recurrencies.. - */ - -class ORecur { -public: - typedef QValueList<QDate> ExceptionList; - enum RepeatType{ NoRepeat = -1, Daily, Weekly, MonthlyDay, - MonthlyDate, Yearly }; - enum Days { MON = 0x01, TUE = 0x02, WED = 0x04, THU = 0x08, - FRI = 0x10, SAT = 0x20, SUN = 0x40 }; - enum Fields{ RType = 0, RWeekdays, RPosition, RFreq, RHasEndDate, - EndDate, Created, Exceptions }; - - ORecur(); - ORecur( const QMap<int, QString>& map ); - ORecur( const ORecur& ); - ~ORecur(); - - ORecur &operator=( const ORecur& ); - bool operator==(const ORecur& )const; - - bool doesRecur()const; - /* if it recurrs on that day */ - bool doesRecur( const QDate& ); - RepeatType type()const; - int frequency()const; - int position()const; - char days()const; - bool hasEndDate()const; - QDate start()const; - QDate endDate()const; - QDateTime createdDateTime()const; - /** - * starting on monday=0, sunday=6 - * for convience - */ - bool repeatOnWeekDay( int day )const; - - /** - * FromWhereToStart is not included!!! - */ - bool nextOcurrence( const QDate& FromWhereToStart, QDate &recurDate ); - - /** - * The module this ORecur belongs to - */ - QString service()const; - - /* - * reference to the exception list - */ - ExceptionList &exceptions(); - - /** - * the current repetition - */ - int repetition()const; - - void setType( const RepeatType& ); - void setFrequency( int freq ); - void setPosition( int pos ); - void setDays( char c); - void setEndDate( const QDate& dt ); - void setStart( const QDate& dt ); - void setCreatedDateTime( const QDateTime& ); - void setHasEndDate( bool b ); - void setRepitition(int ); - - void setService( const QString& ser ); - - QMap<int, QString> toMap() const; - void fromMap( const QMap<int, QString>& map ); - - /* almost internal */ - QString toString()const; -private: - bool p_nextOccurrence( const QDate& from, QDate& next ); - void deref(); - inline void checkOrModify(); - - /* Converts rType to String */ - QString rTypeString() const; - /* Returns a map to convert Stringname for RType to RepeatType */ - QMap<QString, RepeatType> rTypeValueConvertMap() const; - - class Data; - Data* data; - class ORecurPrivate; - ORecurPrivate *d; -}; - -#endif |