2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 #ifndef TIZENAPIS_API_EVENT_INSTALLED_APPLICATION_CHANGED_H_
18 #define TIZENAPIS_API_EVENT_INSTALLED_APPLICATION_CHANGED_H_
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"
30 namespace Application {
32 class EventInstalledApplicationChanged: public WrtDeviceApis::Commons::ListenerEvent<EventInstalledApplicationChanged>
35 ApplicationInformationPtr m_appinfo;
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;
45 void setApplicationInformation(const ApplicationInformationPtr &appinfo)
50 ApplicationInformationPtr getApplicationInformation() const
55 void setEventCode(int code)
60 int getEventCode() const
65 EventInstalledApplicationChanged() :
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;