Add signed-off-by signature for submit request.
[platform/framework/native/telephony.git] / src / FTel_SimManagerEventArg.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 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  * @file        FTel_SimManagerEventArg.h
19  * @brief       This is the header file for _SimManagerEventArg class.
20  *
21  * This header file contains the declarations of _SimManagerEventArg class.
22  */
23
24
25 #ifndef _FTEL_INTERNAL_SIM_MANAGER_EVENT_ARG_H_
26 #define _FTEL_INTERNAL_SIM_MANAGER_EVENT_ARG_H_
27
28 #include <FBaseObject.h>
29 #include <FBaseDataType.h>
30 #include <FBaseRtIEventArg.h>
31 #include <FTelTypes.h>
32
33
34 namespace Tizen { namespace Telephony
35 {
36
37 enum _SimManagerEventType
38 {
39         _SIM_MANAGER_EVENT_NONE,
40         _SIM_MANAGER_EVENT_PIN_LOCK_SETTING_RESULT_RECEIVED
41 };
42
43
44 /**
45  * @class   _SimManagerEventArg
46  * @brief   This class is used as an argument of methods of the ISimStateManagerGetPinLockSettingResultListener class.
47  *
48  * This class is used as an argument of ISimStateManagerGetPinLockSettingResultListener methods.
49  * When a SimStateManager event occurs, the _SimStateManagerEvent object finds a ISimStateManagerGetPinLockSettingResultListener object
50  * which is registered for the Device object and calls an appropriate method of the listener.
51  */
52
53 class _SimManagerEventArg
54     : public Tizen::Base::Object
55     , public Tizen::Base::Runtime::IEventArg
56 {
57 public:
58     _SimManagerEventArg(void);
59     _SimManagerEventArg(_SimManagerEventType type, bool isEnabled, result r);
60     virtual ~_SimManagerEventArg(void) {};
61
62     _SimManagerEventType GetEventType(void) const;
63     result GetResult(void) const;
64         bool IsPinLockEnabled(void) const;
65
66 private:
67     _SimManagerEventArg(const _SimManagerEventArg& rhs);
68     _SimManagerEventArg& operator =(const _SimManagerEventArg& rhs);
69
70 private:
71     _SimManagerEventType __eventType;
72     bool __isPinLockEnabled;
73     result __result;
74
75 }; // _SimManagerEventArg
76
77 } }
78
79 #endif // _FTEL_INTERNAL_SIM_MANAGER_EVENT_ARG_H_