Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Calendar / EventAlarm.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17
18 #ifndef _EVENT_ALARM_H_
19 #define _EVENT_ALARM_H_
20
21 #include <vector>
22 #include <ctime>
23 #include <string>
24 #include <dpl/shared_ptr.h>
25 #include "CalendarEvent.h"
26 #include "API/TimeUtil/DurationProperties.h"
27
28 namespace TizenApis {
29 namespace Api {
30 namespace Calendar {
31
32 class EventAlarm
33 {
34   public:
35     EventAlarm();
36     virtual ~EventAlarm();
37
38     std::time_t getAbsoluteDate() const;
39     void setAbsoluteDate(const std::time_t &value);
40
41     TizenApis::Api::TimeUtil::DurationProperties getDuration() const;
42     void setDuration(TizenApis::Api::TimeUtil::DurationProperties value);
43
44     std::vector<CalendarEvent::EventAlarmType> getMethods() const;
45     void setMethods(const std::vector<CalendarEvent::EventAlarmType> &value);
46
47     std::string getTimeZone() const;
48     void setTimeZone(const std::string &value);
49
50     std::string getDescription() const;
51     void setDescription(const std::string &value);
52
53   protected:
54     std::time_t m_absoluteDate;
55     TizenApis::Api::TimeUtil::DurationProperties m_duration;
56     std::vector<CalendarEvent::EventAlarmType> m_methods;
57     std::string m_description;
58     std::string m_timeZone;
59 };
60
61 typedef DPL::SharedPtr<EventAlarm> EventAlarmPtr;
62 typedef std::vector<EventAlarmPtr> EventAlarmList;
63 typedef DPL::SharedPtr<EventAlarmList> EventAlarmListPtr;
64
65 }
66 }
67 }
68
69 #endif /* _EVENT_ALARM_H_ */