Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Application / ApplicationAnswerReceiver.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 TIZENAPIS_TIZEN_APPLICATION_ANSWER_RECEIVER_H_
19 #define TIZENAPIS_TIZEN_APPLICATION_ANSWER_RECEIVER_H_
20
21 #include <dpl/log/log.h>
22
23 #include <CommonsJavaScript/JSCallbackManager.h>
24 #include <API/Application/EventListInstalledApplications.h>
25 #include <API/Application/EventLaunchService.h>
26 #include <API/Application/EventManageApplication.h>
27 #include "LaunchServicePrivateData.h"
28
29 namespace TizenApis {
30 namespace Tizen1_0 {
31 namespace Application {
32
33 using namespace WrtDeviceApis::CommonsJavaScript;
34
35 class ApplicationAnswerReceiver :
36         public WrtDeviceApis::Commons::EventAnswerReceiver< Api::Application::EventListInstalledApplications>,
37                 public WrtDeviceApis::Commons::EventAnswerReceiver< Api::Application::EventManageApplication>,
38                 public WrtDeviceApis::Commons::EventAnswerReceiver< Api::Application::EventLaunchService>
39 {
40     public:
41         explicit             ApplicationAnswerReceiver(const JSCallbackManagerPtr &callbackManager);
42         explicit             ApplicationAnswerReceiver(const LaunchServicePrivateDataPtr &ApplicatoinServiceCallback);
43         virtual              ~ApplicationAnswerReceiver();
44
45     protected:
46         void OnAnswerReceived(const Api::Application::EventListInstalledApplicationsPtr &event);
47                 void OnAnswerReceived(const Api::Application::EventManageApplicationPtr &event);
48                 void OnAnswerReceived(const Api::Application::EventLaunchServicePtr &event);
49
50     private:
51         JSCallbackManagerPtr m_callbackManager;
52                 LaunchServicePrivateDataPtr m_privateData;
53 };
54
55 }
56 }
57 }
58 #endif