-rw-r--r-- | libkcal/freebusy.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/libkcal/freebusy.h b/libkcal/freebusy.h index d741c72..bd14cb7 100644 --- a/libkcal/freebusy.h +++ b/libkcal/freebusy.h | |||
@@ -1,73 +1,75 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkcal. | 2 | This file is part of libkcal. |
3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This library is free software; you can redistribute it and/or | 5 | This library is free software; you can redistribute it and/or |
6 | modify it under the terms of the GNU Library General Public | 6 | modify it under the terms of the GNU Library General Public |
7 | License as published by the Free Software Foundation; either | 7 | License as published by the Free Software Foundation; either |
8 | version 2 of the License, or (at your option) any later version. | 8 | version 2 of the License, or (at your option) any later version. |
9 | 9 | ||
10 | This library is distributed in the hope that it will be useful, | 10 | This library is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | Library General Public License for more details. | 13 | Library General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU Library General Public License | 15 | You should have received a copy of the GNU Library General Public License |
16 | along with this library; see the file COPYING.LIB. If not, write to | 16 | along with this library; see the file COPYING.LIB. If not, write to |
17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
18 | Boston, MA 02111-1307, USA. | 18 | Boston, MA 02111-1307, USA. |
19 | */ | 19 | */ |
20 | #ifndef KCAL_FREEBUSY_H | 20 | #ifndef KCAL_FREEBUSY_H |
21 | #define KCAL_FREEBUSY_H | 21 | #define KCAL_FREEBUSY_H |
22 | // | 22 | // |
23 | // FreeBusy - information about free/busy times | 23 | // FreeBusy - information about free/busy times |
24 | // | 24 | // |
25 | 25 | ||
26 | #include <qdatetime.h> | 26 | #include <qdatetime.h> |
27 | #include <qvaluelist.h> | 27 | #include <q3valuelist.h> |
28 | #include <qptrlist.h> | 28 | #include <q3ptrlist.h> |
29 | //Added by qt3to4: | ||
30 | #include <Q3CString> | ||
29 | 31 | ||
30 | #include "period.h" | 32 | #include "period.h" |
31 | #include "calendar.h" | 33 | #include "calendar.h" |
32 | 34 | ||
33 | #include "incidencebase.h" | 35 | #include "incidencebase.h" |
34 | 36 | ||
35 | namespace KCal { | 37 | namespace KCal { |
36 | 38 | ||
37 | /** | 39 | /** |
38 | This class provides information about free/busy time of a calendar user. | 40 | This class provides information about free/busy time of a calendar user. |
39 | */ | 41 | */ |
40 | class FreeBusy : public IncidenceBase | 42 | class FreeBusy : public IncidenceBase |
41 | { | 43 | { |
42 | public: | 44 | public: |
43 | FreeBusy(); | 45 | FreeBusy(); |
44 | FreeBusy(const QDateTime &start, const QDateTime &end); | 46 | FreeBusy(const QDateTime &start, const QDateTime &end); |
45 | FreeBusy(Calendar *calendar, const QDateTime &start, const QDateTime &end); | 47 | FreeBusy(Calendar *calendar, const QDateTime &start, const QDateTime &end); |
46 | FreeBusy(QValueList<Period> busyPeriods); | 48 | FreeBusy(Q3ValueList<Period> busyPeriods); |
47 | 49 | ||
48 | ~FreeBusy(); | 50 | ~FreeBusy(); |
49 | 51 | ||
50 | QCString type() const { return "FreeBusy"; } | 52 | Q3CString type() const { return "FreeBusy"; } |
51 | IncTypeID typeID() const { return freebusyID; } | 53 | IncTypeID typeID() const { return freebusyID; } |
52 | 54 | ||
53 | virtual QDateTime dtEnd() const; | 55 | virtual QDateTime dtEnd() const; |
54 | bool setDtEnd( const QDateTime &end ); | 56 | bool setDtEnd( const QDateTime &end ); |
55 | 57 | ||
56 | QValueList<Period> busyPeriods() const; | 58 | Q3ValueList<Period> busyPeriods() const; |
57 | 59 | ||
58 | void addPeriod(const QDateTime &start, const QDateTime &end); | 60 | void addPeriod(const QDateTime &start, const QDateTime &end); |
59 | void sortList(); | 61 | void sortList(); |
60 | 62 | ||
61 | private: | 63 | private: |
62 | 64 | ||
63 | //This is used for creating a freebusy object for the current user | 65 | //This is used for creating a freebusy object for the current user |
64 | bool addLocalPeriod(const QDateTime &start, const QDateTime &end); | 66 | bool addLocalPeriod(const QDateTime &start, const QDateTime &end); |
65 | 67 | ||
66 | QDateTime mDtEnd; | 68 | QDateTime mDtEnd; |
67 | QValueList<Period> mBusyPeriods; | 69 | Q3ValueList<Period> mBusyPeriods; |
68 | Calendar *mCalendar; | 70 | Calendar *mCalendar; |
69 | }; | 71 | }; |
70 | 72 | ||
71 | } | 73 | } |
72 | 74 | ||
73 | #endif | 75 | #endif |