Changed indicator bg color.
[platform/framework/native/uifw.git] / src / ui / controls / FUiCtrl_FastScrollModel.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_FastScrollModel.cpp
20  * @brief               This is the implementation file for the _FastScrollModel class.
21  */
22
23 #include <FBaseSysLog.h>
24 #include "FUiCtrl_FastScrollModel.h"
25
26 namespace Tizen { namespace Ui { namespace Controls
27 {
28 _FastScrollModel::_FastScrollModel(void)
29         : __visibleIndexNodeCount(0)
30         , __pRootIndex(null)
31 {
32 }
33
34 _FastScrollModel::~_FastScrollModel(void)
35 {
36         delete __pRootIndex;
37         __pRootIndex = null;
38 }
39
40 _FastScrollModel*
41 _FastScrollModel::CreateFastScrollModelN(void)
42 {
43         _FastScrollModel* pModel = new (std::nothrow) _FastScrollModel();
44         SysTryReturn(NID_UI_CTRL, pModel, null, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
45
46         result r = pModel->Construct();
47         SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
48
49         SetLastResult(E_SUCCESS);
50         return pModel;
51
52 CATCH:
53         delete pModel;
54
55         return null;
56 }
57
58 result
59 _FastScrollModel::SetRootIndex(_FastScrollIndex* pIndex)
60 {
61         __pRootIndex = pIndex;
62
63         return E_SUCCESS;
64 }
65
66 _FastScrollIndex*
67 _FastScrollModel::GetRootIndex(void) const
68 {
69         return __pRootIndex;
70 }
71
72 result
73 _FastScrollModel::Construct(void)
74 {
75         return E_SUCCESS;
76 }
77
78 }}} // Tizen::Ui::Controls