[Tizen] Implement some new ewk apis in web engine plugin.
[platform/core/uifw/dali-extension.git] / dali-extension / web-engine-chromium / tizen-web-engine-back-forward-list.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #include "tizen-web-engine-back-forward-list-item.h"
19 #include "tizen-web-engine-back-forward-list.h"
20
21 namespace Dali
22 {
23 namespace Plugin
24 {
25
26 TizenWebEngineBackForwardList::TizenWebEngineBackForwardList( Ewk_Back_Forward_List* list )
27   : ewkBackForwardList( list )
28 {
29 }
30
31 TizenWebEngineBackForwardList::~TizenWebEngineBackForwardList()
32 {
33 }
34
35 Dali::WebEngineBackForwardListItem& TizenWebEngineBackForwardList::GetCurrentItem() const
36 {
37   static TizenWebEngineBackForwardListItem itemCache( 0 );
38   Ewk_Back_Forward_List_Item* item = ewk_back_forward_list_current_item_get( ewkBackForwardList );
39   itemCache = TizenWebEngineBackForwardListItem( item );
40   return itemCache;
41 }
42
43 Dali::WebEngineBackForwardListItem& TizenWebEngineBackForwardList::GetItemAtIndex( uint32_t index ) const
44 {
45   static TizenWebEngineBackForwardListItem itemCache( 0 );
46   Ewk_Back_Forward_List_Item* item = ewk_back_forward_list_item_at_index_get( ewkBackForwardList, index );
47   itemCache = TizenWebEngineBackForwardListItem( item );
48   return itemCache;
49 }
50
51 uint32_t TizenWebEngineBackForwardList::GetItemCount() const
52 {
53   return ewk_back_forward_list_count( ewkBackForwardList );
54 }
55
56 } // namespace Plugin
57 } // namespace Dali