622994357deed29fd66d62ce5bdadc0230992e68
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Calendar / JSCalendarEvent.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 _JS_CALENDAR_EVENT_H_
19 #define _JS_CALENDAR_EVENT_H_
20
21 #include <JavaScriptCore/JavaScript.h>
22 #include <API/Calendar/CalendarEvent.h>
23 #include <CommonsJavaScript/PrivateObject.h>
24
25 namespace TizenApis {
26 namespace Tizen1_0 {
27 namespace Calendar {
28
29 #define TIZEN_CALENDAR_EVENT_ID "id"
30 #define TIZEN_CALENDAR_EVENT_LAST_MODIFICATION_DATE "lastModificationDate"
31 #define TIZEN_CALENDAR_EVENT_IS_DETACHED "isDetached"
32
33 typedef WrtDeviceApis::CommonsJavaScript::PrivateObject<TizenApis::Api::Calendar::CalendarEventPtr,
34         WrtDeviceApis::CommonsJavaScript::NoOwnership> CalendarEventPrivObject;
35
36 class JSCalendarEvent
37 {
38   public:
39
40     static const JSClassDefinition* getClassInfo();
41
42     static const JSClassRef getClassRef();
43
44     static TizenApis::Api::Calendar::CalendarEventPtr getPrivateObject(JSObjectRef object);
45
46     static void setPrivateObject(const TizenApis::Api::Calendar::CalendarEventPtr &event,
47             JSContextRef ctx,
48             const JSObjectRef object);
49
50     static bool validate(JSContextRef ctx,
51             const JSObjectRef object,
52             JSValueRef* exception);
53
54   private:
55     /**
56      * This member variable contains the values which has to be passed when
57      * the this class is embedded into JS Engine.
58      */
59     static JSClassDefinition m_classInfo;
60
61     /**
62      * This structure describes a statically declared function property.
63      */
64     static JSStaticFunction m_function[];
65
66     /**
67      * This member variable contains the initialization values for the
68      * properties of this class. The values are given according to the
69      * data structure JSPropertySpec.
70      */
71     static JSStaticValue m_property[];
72
73     static JSClassRef m_jsClassRef;
74
75     /**
76      * The callback invoked when an object is first created.
77      */
78     static void initialize(JSContextRef context,
79             JSObjectRef object);
80
81     /**
82      * The callback invoked when an object is finalized.
83      */
84     static void finalize(JSObjectRef object);
85
86     /**
87      * Getters and setters for properties
88      */
89     static JSValueRef getPropertyId(JSContextRef context,
90             JSObjectRef object,
91             JSStringRef propertyName,
92             JSValueRef* exception);
93     static JSValueRef getPropertyLastModificationDate(JSContextRef context,
94             JSObjectRef object,
95             JSStringRef propertyName,
96             JSValueRef* exception);
97     static JSValueRef getPropertyIsDetached(JSContextRef context,
98             JSObjectRef object,
99             JSStringRef propertyName,
100             JSValueRef* exception);
101 };
102
103 }
104 }
105 }
106
107 #endif /* _JS_CALENDAR_EVENT_H_ */