merge wrt-plugins-tizen_0.2.0-2
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Application / IApplication.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 #ifndef TIZENAPIS_API_IAPPLICATION_H_
18 #define TIZENAPIS_API_IAPPLICATION_H_
19
20 #include <dpl/shared_ptr.h>
21 #include <Commons/ThreadPool.h>
22 #include "EventListInstalledApplications.h"
23 #include "EventManageApplication.h"
24 #include "EventGetApplication.h"
25 #include "EventInstalledApplicationChanged.h"
26 #include "EventLaunchService.h"
27  
28 namespace TizenApis {
29 namespace Api {
30 namespace Application {
31
32 class EventListInstalledApplications;
33 class EventManageApplication;
34 class EventGetApplication;
35 class EventLaunchService;
36
37 class IApplication: public WrtDeviceApis::Commons::EventRequestReceiver<EventListInstalledApplications>,
38         public WrtDeviceApis::Commons::EventRequestReceiver<EventManageApplication>,
39         public WrtDeviceApis::Commons::EventRequestReceiver<EventGetApplication>,
40         public WrtDeviceApis::Commons::EventRequestReceiver<EventLaunchService>
41 {
42 public:
43         virtual ~IApplication();
44         virtual void launch(const EventManageApplicationPtr& event) = 0;
45         virtual void kill(const EventManageApplicationPtr& event) = 0;
46         virtual void exit() = 0;
47         virtual void hide() = 0;
48         virtual void listApplications(const EventListInstalledApplicationsPtr& event) = 0;
49         virtual void getApplication(const EventGetApplicationPtr& event) = 0;
50         virtual long addApplicationInformationEventListener(const EventInstalledApplicationChangedEmitterPtr& emitter) = 0;
51         virtual void removeApplicationInformationEventListener(const EventInstalledApplicationChangedEmitter::IdType id) = 0;   
52         virtual void launchService(const EventLaunchServicePtr& event) = 0;
53         virtual void getApplicationService(const EventLaunchServicePtr& event) = 0;
54
55  protected:
56         IApplication();
57
58         virtual void OnRequestReceived(const EventListInstalledApplicationsPtr& event) = 0;
59         virtual void OnRequestReceived(const EventManageApplicationPtr& event) = 0;
60         virtual void OnRequestReceived(const EventGetApplicationPtr& event) = 0;
61         virtual void OnRequestReceived(const EventLaunchServicePtr& event) = 0;
62
63  };
64
65 typedef DPL::SharedPtr<IApplication> IApplicationPtr;
66
67 }
68 }
69 }
70
71 #endif