f62f2cbb5d328a66fbb2f320504a598e1230ff7d
[framework/web/wrt-plugins-tizen.git] / src / Callhistory / EventCallHistoryListener.h
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 #ifndef TIZENAPIS_API_CALL_EVENT_CALLHISTORY_LISTENER_H_
19 #define TIZENAPIS_API_CALL_EVENT_CALLHISTORY_LISTENER_H_
20
21 #include <vector>
22 #include <Commons/IEvent.h>
23 #include <dpl/shared_ptr.h>
24 #include <Commons/ListenerEvent.h>
25 #include <Commons/ListenerEventEmitter.h>
26 #include "CallHistoryEntryProperties.h"
27
28 namespace DeviceAPI {
29 namespace CallHistory {
30
31 class EventCallHistoryListener : public WrtDeviceApis::Commons::ListenerEvent<EventCallHistoryListener>
32 {
33 public:
34         typedef enum {
35                 ADDED,
36                 CHANGED
37         } ResultStates;
38
39 private:
40         ResultStates m_resultState;
41         CallHistoryEntryListPtr m_entryList;
42
43 public:
44         void setResultState(const ResultStates state);
45         void setResult(const CallHistoryEntryListPtr &entryList);
46         ResultStates getResultState() const;
47         CallHistoryEntryListPtr getResult() const;
48
49         EventCallHistoryListener();
50 };
51
52 typedef DPL::SharedPtr<EventCallHistoryListener> EventCallHistoryListenerPtr;
53 typedef WrtDeviceApis::Commons::ListenerEventEmitter<EventCallHistoryListener> EventCallHistoryListenerEmitter;
54 typedef DPL::SharedPtr<EventCallHistoryListenerEmitter> EventCallHistoryListenerEmitterPtr;
55
56 }
57 }
58
59 #endif