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