Add DRAFT stubs for Vehicle plugin
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Mediacontent / JSFolder.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_TIZEN_FOLDER_H_
19 #define _JS_TIZEN_FOLDER_H_
20
21 #include <JavaScriptCore/JavaScript.h>
22 #include <CommonsJavaScript/PrivateObject.h>
23 #include <API/Mediacontent/MediacontentFolder.h>
24
25 using namespace TizenApis::Api::Mediacontent;
26 using namespace WrtDeviceApis::Commons;
27 using namespace WrtDeviceApis::CommonsJavaScript;
28
29
30 namespace TizenApis {
31 namespace Tizen1_0 {
32 namespace Mediacontent {
33
34
35 typedef PrivateObject<MediacontentFolderPtr, NoOwnership> FolderPrivObject;
36
37 class JSFolder
38 {
39         public:
40
41         static const JSClassDefinition* getClassInfo();
42
43         static const JSClassRef getClassRef();
44
45         static MediacontentFolderPtr getFolderObject(JSObjectRef object);
46
47         private:
48         /**
49         * This member variable contains the values which has to be passed when 
50         * the this class is embedded into JS Engine.
51         */
52         static JSClassDefinition m_classInfo;
53
54         /**
55         * This structure describes a statically declared function property.
56         */
57         static JSStaticFunction m_function[];
58
59         /**
60         * This member variable contains the initialization values for the 
61         * properties of this class. The values are given according to the
62         * data structure JSPropertySpec.
63         */
64         static JSStaticValue m_property[];
65
66         static JSClassRef m_jsClassRef;
67
68         /**
69         * The callback invoked when an object is first created.
70         */
71         static void initialize(JSContextRef context, JSObjectRef object);
72
73         /**
74         * The callback invoked when an object is finalized.
75         */
76         static void finalize(JSObjectRef object);
77
78         /**
79         * Getters and setters for properties
80         */
81         static JSValueRef       getPropertyId(
82                         JSContextRef context,
83                         JSObjectRef object,
84                         JSStringRef propertyName,
85                         JSValueRef* exception);
86         
87         static JSValueRef       getPropertyPath(
88                         JSContextRef context,
89                         JSObjectRef object,
90                         JSStringRef propertyName,
91                         JSValueRef* exception);
92
93         static JSValueRef       getPropertyName(
94                         JSContextRef context,
95                         JSObjectRef object,
96                         JSStringRef propertyName,
97                         JSValueRef* exception);
98
99         static JSValueRef       getPropertyStorageType(
100                         JSContextRef context,
101                         JSObjectRef object,
102                         JSStringRef propertyName,
103                         JSValueRef* exception);
104
105         static JSValueRef       getPropertyModifiedDate(
106                         JSContextRef context,
107                         JSObjectRef object,
108                         JSStringRef propertyName,
109                         JSValueRef* exception);
110
111         static JSValueRef       getPropertyMediaId(
112                         JSContextRef context,
113                         JSObjectRef object,
114                         JSStringRef propertyName,
115                         JSValueRef* exception);
116         
117         static JSValueRef       getPropertyEditableAttr(
118                         JSContextRef context,
119                         JSObjectRef object,
120                         JSStringRef propertyName,
121                         JSValueRef* exception);
122
123 };
124
125 }
126 }
127 }
128
129 #endif /* _JS_TIZEN_FOLDER_H_ */