Add a callback for navigation policy in web view.
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / navigation-view / navigation-view-impl.cpp
1 /*
2  * Copyright (c) 2021 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 // CLASS HEADER
19 #include "navigation-view-impl.h"
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/object/type-registry-helper.h>
23
24 // INTERNAL INCLUDES
25 #include <dali-toolkit/devel-api/controls/control-devel.h>
26
27 namespace Dali
28 {
29 namespace Toolkit
30 {
31 namespace Internal
32 {
33 namespace // to register type
34 {
35 BaseHandle Create()
36 {
37   return Toolkit::NavigationView::New();
38 }
39
40 DALI_TYPE_REGISTRATION_BEGIN(Toolkit::NavigationView, Toolkit::Control, Create)
41 DALI_TYPE_REGISTRATION_END()
42
43 } // namespace
44
45 NavigationView::NavigationView()
46 : Control(ControlBehaviour(CONTROL_BEHAVIOUR_DEFAULT))
47 {
48 }
49
50 NavigationView::~NavigationView()
51 {
52   // Clear all the items in the stack, forces their destruction before NavigationView is destroyed.
53   mContentStack.clear();
54 }
55
56 Toolkit::NavigationView NavigationView::New()
57 {
58   // Create the implementation, temporarily owned by this handle on stack
59   IntrusivePtr<NavigationView> internalNavigationView = new NavigationView();
60
61   // Pass ownership to CustomActor handle
62   Toolkit::NavigationView navigationView(*internalNavigationView);
63
64   // Second-phase init of the implementation
65   // This can only be done after the CustomActor connection has been made...
66   internalNavigationView->Initialize();
67
68   return navigationView;
69 }
70
71 void NavigationView::OnInitialize()
72 {
73   DevelControl::SetAccessibilityConstructor(Self(), [](Dali::Actor actor) {
74     return std::unique_ptr<Dali::Accessibility::Accessible>(
75       new DevelControl::AccessibleImpl(actor, Dali::Accessibility::Role::FILLER));
76   });
77 }
78
79 void NavigationView::OnSceneConnection(int depth)
80 {
81   Self().SetProperty(Actor::Property::SENSITIVE, true);
82
83   Control::OnSceneConnection(depth);
84 }
85
86 void NavigationView::Push(Actor& actor)
87 {
88   // check the uninitialized item
89   // check the duplicated push for the top item
90   if(!actor)
91   {
92     return;
93   }
94
95   if(mContentStack.size() > 0)
96   {
97     Self().Remove(mContentStack.back());
98   }
99
100   //push the new item into the stack and show it
101   mContentStack.push_back(actor);
102   Self().Add(actor);
103 }
104
105 Actor NavigationView::Pop()
106 {
107   // cannot pop out the bottom-most item
108   Actor poppedItem;
109   if(mContentStack.size() > 1)
110   {
111     // pop out the top item of the stack and show the new item right under the old one.
112     Self().Remove(mContentStack.back());
113     poppedItem = mContentStack.back();
114     mContentStack.pop_back();
115     Self().Add(mContentStack.back());
116   }
117
118   return poppedItem;
119 }
120
121 } // namespace Internal
122
123 } // namespace Toolkit
124
125 } // namespace Dali