Add DRAFT stubs for Vehicle plugin
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Mediacontent / MediacontentController.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 _TIZEN_CONTROLLER_H_
19 #define _TIZEN_CONTROLLER_H_
20
21 #include <API/Mediacontent/IEventGetMediacontent.h>
22 #include <API/Mediacontent/IEventFindMedia.h>
23 #include <API/Mediacontent/IEventFindFolder.h>
24 #include <API/Mediacontent/IEventBrowseFolder.h>
25 #include <API/Mediacontent/IEventUpdateMediaItems.h>
26 //#include <API/Mediacontent/IEventFolderFindMedia.h>
27
28 using namespace TizenApis::Api::Mediacontent;
29 using namespace WrtDeviceApis::Commons;
30 using namespace WrtDeviceApis::CommonsJavaScript;
31
32 namespace TizenApis {
33 namespace Tizen1_0 {
34 namespace Mediacontent {
35
36 typedef EventAnswerReceiver<IEventFindFolder> EventFindFolderAnswerReceiver;
37 typedef EventAnswerReceiver<IEventBrowseFolder> EventBrowseFolderAnswerReceiver;
38 typedef EventAnswerReceiver<IEventUpdateMediaItems> EventUpdateMediaItemsAnswerReceiver;
39
40 class MediacontentManagerController :
41         public EventBrowseFolderAnswerReceiver,
42         public EventUpdateMediaItemsAnswerReceiver,
43         public EventFindFolderAnswerReceiver
44 {
45     public:
46     static MediacontentManagerController& getInstance();
47
48     protected:
49         void OnAnswerReceived(const IEventFindFolderPtr &event);
50         void OnAnswerReceived(const IEventBrowseFolderPtr &event);      
51         void OnAnswerReceived(const IEventUpdateMediaItemsPtr &event);          
52
53     private:
54         MediacontentManagerController();
55         virtual ~MediacontentManagerController();       
56
57 };
58
59 }
60 }
61
62
63 #endif //_TIZEN_CONTROLLER_H_