Update change log and spec for wrt-plugins-tizen_0.4.46
[platform/framework/web/wrt-plugins-tizen.git] / src / Callhistory / JSCallHistoryEntry.h
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18
19 #ifndef TIZENAPIS_TIZEN_JS_CALLINFO_H_
20 #define TIZENAPIS_TIZEN_JS_CALLINFO_H_
21
22 #include <JavaScriptCore/JavaScript.h>
23 #include <CommonsJavaScript/PrivateObject.h>
24 #include "CallHistoryEntryProperties.h"
25
26 namespace DeviceAPI {
27 namespace CallHistory {
28
29 typedef WrtDeviceApis::CommonsJavaScript::PrivateObjectT<CallHistoryEntryPropertiesPtr>::Type JSCallHistoryEntryPriv;
30
31 class JSCallHistoryEntry
32 {
33 public:
34         static const JSClassDefinition* getClassInfo();
35
36         static const JSClassRef getClassRef();
37
38         static JSObjectRef createJSObject(JSContextRef context,
39                 const CallHistoryEntryProperties &entryInfo);
40
41         static CallHistoryEntryPropertiesPtr getCallHistoryEntry(JSContextRef context, JSValueRef value);
42
43 private:
44         static void initialize(JSContextRef context,
45                 JSObjectRef object);
46
47         static void finalize(JSObjectRef object);
48
49         static JSValueRef getProperty(JSContextRef context,
50                 JSObjectRef object,
51                 JSStringRef propertyName,
52                 JSValueRef* exception);
53
54         static bool setProperty(JSContextRef context,
55                 JSObjectRef object,
56                 JSStringRef propertyName,
57                 JSValueRef value,
58                 JSValueRef* exception);
59
60         static bool hasInstance(JSContextRef context,
61                 JSObjectRef constructor,
62                 JSValueRef possibleInstance,
63                 JSValueRef* exception);
64
65         static JSClassDefinition m_classInfo;
66
67         static JSStaticValue m_property[];
68
69         static JSClassRef m_jsClassRef;
70 };
71
72 }
73
74 #endif
75