Changed indicator bg color.
[platform/framework/native/uifw.git] / src / ui / controls / FUiCtrlAnimationFrame.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        FUiCtrlAnimationFrame.cpp
20  * @brief       This is the implementation file for AnimationFrame class.
21  */
22
23 #include <FUiCtrlAnimationFrame.h>
24 #include <FBaseSysLog.h>
25 #include "FUiCtrl_AnimationFrameImpl.h"
26
27 using namespace Tizen::Graphics;
28
29 namespace Tizen { namespace Ui { namespace Controls
30 {
31
32 AnimationFrame::AnimationFrame(void)
33         : __pAnimationFrameImpl(null)
34 {
35         ClearLastResult();
36
37         __pAnimationFrameImpl = new (std::nothrow) _AnimationFrameImpl();
38         SysTryReturnVoidResult(NID_UI_CTRL, __pAnimationFrameImpl != null, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
39 }
40
41 AnimationFrame::AnimationFrame(const Bitmap& frame, long duration)
42         : __pAnimationFrameImpl(null)
43 {
44         ClearLastResult();
45
46         __pAnimationFrameImpl = new (std::nothrow) _AnimationFrameImpl(frame, duration);
47         SysTryReturnVoidResult(NID_UI_CTRL, __pAnimationFrameImpl != null, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
48 }
49
50 AnimationFrame::~AnimationFrame(void)
51 {
52         delete __pAnimationFrameImpl;
53         __pAnimationFrameImpl = null;
54 }
55
56 void
57 AnimationFrame::SetFrame(const Bitmap& frame)
58 {
59         SysAssertf(__pAnimationFrameImpl != null, "Not yet constructed. Construct() should be called before use.");
60
61         result r = __pAnimationFrameImpl->SetFrame(frame);
62         SysTryReturnVoidResult(NID_UI_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
63
64         SetLastResult(E_SUCCESS);
65         return;
66 }
67
68 const Bitmap*
69 AnimationFrame::GetFrame(void) const
70 {
71         ClearLastResult();
72
73         SysAssertf(__pAnimationFrameImpl != null, "Not yet constructed. Construct() should be called before use.");
74
75         return __pAnimationFrameImpl->GetFrame();
76 }
77
78 void
79 AnimationFrame::SetDuration(long duration)
80 {
81         SysAssertf(__pAnimationFrameImpl != null, "Not yet constructed. Construct() should be called before use.");
82
83         result r = __pAnimationFrameImpl->SetDuration(duration);
84         SysTryReturnVoidResult(NID_UI_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
85
86         SetLastResult(E_SUCCESS);
87         return;
88 }
89
90 long
91 AnimationFrame::GetDuration(void) const
92 {
93         ClearLastResult();
94
95         SysAssertf(__pAnimationFrameImpl != null, "Not yet constructed. Construct() should be called before use.");
96
97         return __pAnimationFrameImpl->GetDuration();
98 }
99
100 }}} // Tizen::Ui::Controls