40d213379aedd03c701f69c69da3d810fb0a9fed
[framework/web/wrt-plugins-common.git] / src / modules / API / Radio / EventSourceTypeChange.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 #ifndef WRTDEVICEAPIS_DEVICE_EVENTSOURCETYPECHANGE_H_
17 #define WRTDEVICEAPIS_DEVICE_EVENTSOURCETYPECHANGE_H_
18
19 #include <dpl/shared_ptr.h>
20 #include <Commons/ListenerEvent.h>
21 #include <Commons/ListenerEventEmitter.h>
22 #include "Enums.h"
23
24 namespace WrtDeviceApis {
25 namespace Radio {
26 namespace Api {
27 /**
28  * Event emitted when screen orientation changes.
29  */
30 class EventSourceTypeChange : public Commons::ListenerEvent<
31         EventSourceTypeChange>
32 {
33   public:
34     EventSourceTypeChange();
35
36     /**
37      * Gets signal source's type.
38      * @return Type of the signal source.
39      */
40     SourceType getType() const;
41
42     /**
43      * Sets signal source's type.
44      * @param type Type of the signal source..
45      */
46     void setType(SourceType type);
47
48   protected:
49     SourceType m_type;
50 };
51
52 typedef DPL::SharedPtr<EventSourceTypeChange> EventSourceTypeChangePtr;
53 typedef Commons::ListenerEventEmitter<EventSourceTypeChange>
54 EventSourceTypeChangeEmitter;
55 typedef DPL::SharedPtr<EventSourceTypeChangeEmitter>
56 EventSourceTypeChangeEmitterPtr;
57 } // Api
58 } // Radio
59 } // WrtDeviceApis
60
61 #endif // WRTDEVICEAPIS_DEVICE_EVENTSOURCETYPECHANGE_H_