Add DRAFT stubs for Vehicle plugin
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Application / EventInstalledApplicationChanged.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_EVENT_INSTALLED_APPLICATION_CHANGED_H_
18 #define TIZENAPIS_API_EVENT_INSTALLED_APPLICATION_CHANGED_H_
19
20 #include <Commons/IEvent.h>
21 #include <dpl/shared_ptr.h>
22 #include <Commons/ListenerEvent.h>
23 #include <Commons/ListenerEventEmitter.h>
24 #include <Commons/Emitters.h>
25 #include "ApplicationInformation.h"
26 #include "ApplicationEvent.h"
27
28 namespace TizenApis {
29 namespace Api {
30 namespace Application {
31
32 class EventInstalledApplicationChanged: public WrtDeviceApis::Commons::ListenerEvent<EventInstalledApplicationChanged>
33 {
34 private:
35         ApplicationInformationPtr m_appinfo;
36         int m_eventCode;
37         
38 public:
39         static const int APPLICATON_CHANGED_EVENT_CODE_INSTALLED = 0;
40         static const int APPLICATON_CHANGED_EVENT_CODE_UNINSTALLED = 1;
41         static const int APPLICATON_CHANGED_EVENT_CODE_UPDATED = 2;
42         
43 public:
44
45         void setApplicationInformation(const ApplicationInformationPtr &appinfo)
46         {
47                 m_appinfo = appinfo;
48         }
49
50         ApplicationInformationPtr getApplicationInformation() const 
51         {
52                 return m_appinfo;
53         }
54
55         void setEventCode(int code)
56         {
57                 m_eventCode = code;
58         }
59
60         int getEventCode() const
61         {
62                 return m_eventCode;
63         }
64
65         EventInstalledApplicationChanged() :
66                 m_appinfo(NULL),
67                 m_eventCode(-1)
68         {
69         }
70 };
71
72 typedef DPL::SharedPtr<EventInstalledApplicationChanged> EventInstalledApplicationChangedPtr;
73 typedef WrtDeviceApis::Commons::ListenerEventEmitter<EventInstalledApplicationChanged> EventInstalledApplicationChangedEmitter;
74 typedef DPL::SharedPtr<EventInstalledApplicationChangedEmitter> EventInstalledApplicationChangedEmitterPtr;
75 typedef WrtDeviceApis::Commons::Emitters<EventInstalledApplicationChangedEmitter> EventInstalledApplicationChangedEmitters;
76
77
78 } // Application
79 } // Api
80 } // TizenApis
81
82 #endif