Changed indicator bg color.
[platform/framework/native/uifw.git] / src / ui / controls / FUiCtrl_SliderEvent.cpp
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 /**
19  * @file                FUiCtrl_SliderEvent.cpp
20  * @brief               This is the implementation for the _SliderEvent class.
21  *
22  * This file contains the implementation of _SliderEvent class. @n
23  */
24
25 #include <new>
26 #include <FBaseSysLog.h>
27 #include <FBaseErrors.h>
28 #include "FUiCtrl_ISliderEventListener.h"
29 #include "FUiCtrl_SliderEvent.h"
30
31 using namespace Tizen::Base;
32 using namespace Tizen::Base::Runtime;
33
34 namespace Tizen { namespace Ui { namespace Controls
35 {
36
37 class _OSP_EXPORT_ _SliderEventArg
38         : public IEventArg
39         , public Object
40 {
41 // Lifecycle
42 public:
43         _SliderEventArg(int value);
44         virtual ~_SliderEventArg(void);
45
46 // Access
47 public:
48         int GetValue(void) const;
49
50 // Attribute
51 private:
52         int __value;
53
54 }; // _SliderEventArg
55
56 _SliderEventArg::_SliderEventArg(int value)
57         : __value(value)
58 {
59 }
60
61 _SliderEventArg::~_SliderEventArg(void)
62 {
63 }
64
65 int
66 _SliderEventArg::GetValue(void) const
67 {
68         return __value;
69 }
70
71
72 _SliderEvent::_SliderEvent(const _Slider& source)
73         : __pSource(null)
74 {
75         result r = _Event::Initialize();
76
77         // set event source
78         if (r == E_SUCCESS)
79         {
80                 __pSource = const_cast <_Slider*>(&source);
81         }
82 }
83
84 _SliderEvent::~_SliderEvent(void)
85 {
86 }
87
88 _SliderEvent*
89 _SliderEvent::CreateInstanceN(const _Slider& source)
90 {
91         _SliderEvent* pSliderEvent = new (std::nothrow) _SliderEvent(source);
92         SysTryReturn(NID_UI_CTRL, pSliderEvent != null, null, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
93
94         if (IsFailed(GetLastResult()))
95         {
96                 goto CATCH;
97         }
98
99         return pSliderEvent;
100
101 CATCH:
102         delete pSliderEvent;
103         pSliderEvent = null;
104
105         return null;
106 }
107
108 const _Slider*
109 _SliderEvent::GetSource(void) const
110 {
111         return __pSource;
112 }
113
114 void
115 _SliderEvent::FireImpl(IEventListener& listener, const IEventArg& arg)
116 {
117         // cast to ISliderEventListener
118         _ISliderEventListener* pSliderListener = dynamic_cast <_ISliderEventListener*>(&listener);
119         SysTryReturnVoidResult(NID_UI_CTRL, pSliderListener != null, E_INVALID_ARG,
120                                 "[E_INVALID_ARG] Invalid argument(s) is used. The _ISliderEventListener is null");
121
122         // cast to _SliderEventArg
123         const _SliderEventArg* pSliderEventArg = dynamic_cast <const _SliderEventArg*>(&arg);
124         SysTryReturnVoidResult(NID_UI_CTRL, pSliderEventArg != null, E_INVALID_ARG,
125                                 "[E_INVALID_ARG] Invalid argument(s) is used. The _SliderEventArg is null");
126
127         // call cursor change event listener method
128         pSliderListener->OnSliderBarMoved(*__pSource, pSliderEventArg->GetValue());
129         SetLastResult(E_SUCCESS);
130         return ;
131 }
132
133 IEventArg*
134 _SliderEvent::CreateSliderEventArgN(int value)
135 {
136         _SliderEventArg* pEventArg = new (std::nothrow) _SliderEventArg(value);
137         SysTryReturn(NID_UI_CTRL, pEventArg != null, null, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
138
139         return pEventArg;
140 }
141
142 }}} // Tizen::Ui::Controls