merge with master
[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 //namespace Tizen { namespace Base { namespace Collection
34 //{
35 //class IList;
36 //}}}
37
38 namespace Tizen { namespace Telephony
39 {
40
41 enum _SimManagerEventType
42 {
43         _SIM_MANAGER_EVENT_NONE,
44         _SIM_MANAGER_EVENT_PIN_LOCK_SETTING_RESULT_RECEIVED
45 };
46
47
48 /**
49  * @class   _SimManagerEventArg
50  * @brief   This class is used as an argument of methods of the ITelephonySimManagerListener class.
51  *
52  * This class is used as an argument of ITelephonySimManagerListener methods.
53  * When a SimManager event occurs, the _SimManagerEvent object finds a ITelephonySimManagerListener object
54  * which is registered for the SimManager object and calls an appropriate method of the listener.
55  */
56
57 class _SimManagerEventArg
58     : public Tizen::Base::Object
59     , public Tizen::Base::Runtime::IEventArg
60 {
61 public:
62     _SimManagerEventArg(void);
63     _SimManagerEventArg(_SimManagerEventType type, bool isEnabled, result r);
64     virtual ~_SimManagerEventArg(void) {};
65
66     _SimManagerEventType GetEventType(void) const;
67     result GetResult(void) const;
68         bool IsPinLockEnabled(void) const;
69
70 private:
71     _SimManagerEventArg(const _SimManagerEventArg& rhs);
72     _SimManagerEventArg& operator =(const _SimManagerEventArg& rhs);
73
74 private:
75     _SimManagerEventType __eventType;
76     bool __isPinLockEnabled;
77     result __result;
78
79 }; // _SimManagerEventArg
80
81 } }
82
83 #endif // _FTEL_INTERNAL_SIM_MANAGER_EVENT_ARG_H_