Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117880988
kolabtodo.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
3 KB
Referenced Files
None
Subscribers
None
kolabtodo.h
View Options
/*
* Copyright (C) 2011 Christian Mollekopf <mollekopf@kolabsys.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef KOLAB_TODO_H
#define KOLAB_TODO_H
#include
<string>
#include
<vector>
#include
<boost/scoped_ptr.hpp>
#include
"kolabcontainers.h"
namespace
Kolab
{
class
Todo
{
public
:
Todo
();
~
Todo
();
Todo
(
const
Todo
&
);
void
operator
=
(
const
Todo
&
);
void
setUid
(
const
std
::
string
&
);
std
::
string
uid
()
const
;
void
setCreated
(
const
DateTime
&
);
DateTime
created
()
const
;
void
setLastModified
(
const
DateTime
&
);
DateTime
lastModified
()
const
;
void
setSequence
(
int
);
int
sequence
()
const
;
void
setClassification
(
Classification
);
Classification
classification
()
const
;
void
setCategories
(
const
std
::
vector
<
std
::
string
>
&
);
void
addCategory
(
const
std
::
string
&
);
std
::
vector
<
std
::
string
>
categories
()
const
;
void
setStart
(
const
DateTime
&
);
DateTime
start
()
const
;
void
setDue
(
const
DateTime
&
);
DateTime
due
()
const
;
void
setRecurrenceRule
(
const
RecurrenceRule
&
);
RecurrenceRule
recurrenceRule
()
const
;
void
setRecurrenceDates
(
const
std
::
vector
<
DateTime
>
&
);
void
addRecurrenceDate
(
const
DateTime
&
);
std
::
vector
<
DateTime
>
recurrenceDates
()
const
;
void
setExceptionDates
(
const
std
::
vector
<
DateTime
>
&
);
void
addExceptionDate
(
const
DateTime
&
);
std
::
vector
<
DateTime
>
exceptionDates
()
const
;
void
setRecurrenceID
(
const
DateTime
&
,
bool
thisandfuture
);
DateTime
recurrenceID
()
const
;
bool
thisAndFuture
()
const
;
void
setSummary
(
const
std
::
string
&
);
std
::
string
summary
()
const
;
void
setDescription
(
const
std
::
string
&
);
std
::
string
description
()
const
;
void
setPriority
(
int
);
int
priority
()
const
;
void
setStatus
(
Status
);
Status
status
()
const
;
void
setPercentComplete
(
int
);
int
percentComplete
()
const
;
void
setLocation
(
const
std
::
string
&
);
std
::
string
location
()
const
;
void
setOrganizer
(
const
std
::
string
&
email
,
const
std
::
string
&
name
);
std
::
string
organizerEmail
()
const
;
std
::
string
organizerName
()
const
;
void
setAttendees
(
const
std
::
vector
<
Attendee
>
&
);
std
::
vector
<
Attendee
>
attendees
()
const
;
void
setAttachments
(
const
std
::
vector
<
Attachment
>
&
);
std
::
vector
<
Attachment
>
attachments
()
const
;
void
setCustomProperties
(
const
std
::
vector
<
CustomProperty
>
&
);
std
::
vector
<
CustomProperty
>
customProperties
()
const
;
private
:
struct
Private
;
boost
::
scoped_ptr
<
Private
>
d
;
};
}
#endif
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Sun, Apr 5, 11:37 PM (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18830377
Default Alt Text
kolabtodo.h (3 KB)
Attached To
Mode
rLKX libkolabxml
Attached
Detach File
Event Timeline